
    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_2bc65eb864e65b7346402ff4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_6509f364643bf6da9061c44c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_6a1fe5e4a133707865e70fc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_59c0156ebf44d79b254d8ee6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_a60afd00a4c0a05f7cba0af0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_7c89df6b153badb27ba6d2ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_3e99bd46601f838aff8ab078.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_d04bd1b769b1ee87dde81810.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_20be6837d157b5e62077635b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_aff9f8e76c38e3913a13e803.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_a225268aa7bf718627c3f4ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.934082;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_119ea1d7c29cb40a8c35b3d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941895;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;}
.me{transform:matrix(0.000000,-0.249306,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249306,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249306,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.183643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183643,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.187167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187167,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.188878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188878,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.230434,0.000000,-0.076804,0.237910,0,0);-ms-transform:matrix(0.230434,0.000000,-0.076804,0.237910,0,0);-webkit-transform:matrix(0.230434,0.000000,-0.076804,0.237910,0,0);}
.m1c{transform:matrix(0.233325,0.000000,-0.077767,0.237597,0,0);-ms-transform:matrix(0.233325,0.000000,-0.077767,0.237597,0,0);-webkit-transform:matrix(0.233325,0.000000,-0.077767,0.237597,0,0);}
.m6{transform:matrix(0.233695,0.000000,-0.077891,0.237556,0,0);-ms-transform:matrix(0.233695,0.000000,-0.077891,0.237556,0,0);-webkit-transform:matrix(0.233695,0.000000,-0.077891,0.237556,0,0);}
.m17{transform:matrix(0.233792,0.000000,-0.077923,0.237546,0,0);-ms-transform:matrix(0.233792,0.000000,-0.077923,0.237546,0,0);-webkit-transform:matrix(0.233792,0.000000,-0.077923,0.237546,0,0);}
.m9{transform:matrix(0.235468,0.000000,-0.078482,0.237362,0,0);-ms-transform:matrix(0.235468,0.000000,-0.078482,0.237362,0,0);-webkit-transform:matrix(0.235468,0.000000,-0.078482,0.237362,0,0);}
.mc{transform:matrix(0.239125,0.000000,-0.079700,0.236955,0,0);-ms-transform:matrix(0.239125,0.000000,-0.079700,0.236955,0,0);-webkit-transform:matrix(0.239125,0.000000,-0.079700,0.236955,0,0);}
.m1b{transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246125,0.000000,-0.082034,0.236158,0,0);-ms-transform:matrix(0.246125,0.000000,-0.082034,0.236158,0,0);-webkit-transform:matrix(0.246125,0.000000,-0.082034,0.236158,0,0);}
.m19{transform:matrix(0.246690,0.000000,-0.082222,0.236092,0,0);-ms-transform:matrix(0.246690,0.000000,-0.082222,0.236092,0,0);-webkit-transform:matrix(0.246690,0.000000,-0.082222,0.236092,0,0);}
.m3{transform:matrix(0.246861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246861,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,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);}
.m12{transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250696,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251539,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255222,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.258978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258978,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-68.400000px;}
.va{vertical-align:-57.601833px;}
.v9{vertical-align:-48.195948px;}
.v8{vertical-align:-20.880000px;}
.v5{vertical-align:-18.000000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v6{vertical-align:29.677788px;}
.v7{vertical-align:48.195948px;}
.ls28{letter-spacing:-1.325317px;}
.ls2a{letter-spacing:-1.233122px;}
.ls29{letter-spacing:-1.031443px;}
.ls2b{letter-spacing:-0.822000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.538194px;}
.ls25{letter-spacing:-0.520823px;}
.ls10{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.334423px;}
.ls2d{letter-spacing:-0.305400px;}
.ls31{letter-spacing:-0.252290px;}
.lsd{letter-spacing:-0.252000px;}
.ls16{letter-spacing:-0.206400px;}
.ls24{letter-spacing:-0.187009px;}
.ls20{letter-spacing:-0.108970px;}
.ls2e{letter-spacing:-0.058320px;}
.lse{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.008640px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.075600px;}
.ls5{letter-spacing:0.106560px;}
.ls14{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.204523px;}
.ls6{letter-spacing:0.206640px;}
.ls27{letter-spacing:0.214982px;}
.ls1f{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.291600px;}
.ls1a{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.460200px;}
.ls30{letter-spacing:0.513600px;}
.ls26{letter-spacing:0.663298px;}
.ls34{letter-spacing:0.666000px;}
.ls18{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.828000px;}
.ls23{letter-spacing:1.382771px;}
.ls32{letter-spacing:1.528966px;}
.ls22{letter-spacing:2.262319px;}
.ls13{letter-spacing:11.466720px;}
.ls17{letter-spacing:15.066720px;}
.ls1d{letter-spacing:60.673191px;}
.ls1b{letter-spacing:143.912278px;}
.ls2c{letter-spacing:179.821680px;}
.ls8{letter-spacing:183.936000px;}
.lsa{letter-spacing:195.276000px;}
.ls35{letter-spacing:253.501680px;}
.ls36{letter-spacing:257.101680px;}
.ls2f{letter-spacing:468.006899px;}
.ls0{letter-spacing:679.116000px;}
.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;}
}
.ws20{word-spacing:-74.231023px;}
.ws1d{word-spacing:-41.730386px;}
.ws19{word-spacing:-40.762862px;}
.ws0{word-spacing:-26.748000px;}
.ws22{word-spacing:-26.228007px;}
.ws15{word-spacing:-18.562323px;}
.ws34{word-spacing:-18.526721px;}
.ws25{word-spacing:-18.290822px;}
.ws1b{word-spacing:-18.226350px;}
.ws1c{word-spacing:-18.011368px;}
.ws1{word-spacing:-18.000000px;}
.ws27{word-spacing:-17.259379px;}
.ws24{word-spacing:-16.965505px;}
.wsb{word-spacing:-16.712400px;}
.ws2b{word-spacing:-16.254600px;}
.wsd{word-spacing:-15.768000px;}
.ws39{word-spacing:-15.606000px;}
.ws11{word-spacing:-15.400200px;}
.ws5{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.733600px;}
.ws4{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.400000px;}
.ws2a{word-spacing:-14.118000px;}
.ws2c{word-spacing:-14.084343px;}
.ws9{word-spacing:-13.860000px;}
.ws2d{word-spacing:-13.505760px;}
.ws3e{word-spacing:-13.500000px;}
.ws3f{word-spacing:-13.140000px;}
.ws37{word-spacing:-12.356912px;}
.ws17{word-spacing:-12.210716px;}
.ws38{word-spacing:-10.827946px;}
.ws33{word-spacing:-10.660883px;}
.ws18{word-spacing:-10.307123px;}
.ws7{word-spacing:-9.737280px;}
.ws8{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.711360px;}
.ws29{word-spacing:-9.427761px;}
.ws10{word-spacing:-9.000000px;}
.ws1e{word-spacing:-8.925999px;}
.wsa{word-spacing:0.000000px;}
.ws21{word-spacing:19.386128px;}
.ws32{word-spacing:54.459339px;}
.ws31{word-spacing:63.254215px;}
.ws1f{word-spacing:88.304365px;}
.ws2f{word-spacing:120.241440px;}
.ws2e{word-spacing:136.192560px;}
.ws3b{word-spacing:194.161440px;}
.ws3d{word-spacing:197.761440px;}
.ws3a{word-spacing:209.872560px;}
.ws3c{word-spacing:213.532560px;}
.ws30{word-spacing:251.649879px;}
.ws14{word-spacing:268.519749px;}
.ws35{word-spacing:427.181532px;}
.ws1a{word-spacing:464.741721px;}
.ws28{word-spacing:556.869510px;}
.ws26{word-spacing:591.158729px;}
.ws36{word-spacing:681.361510px;}
.ws16{word-spacing:817.323790px;}
.ws23{word-spacing:1013.398535px;}
._4c{margin-left:-551.694145px;}
._4b{margin-left:-529.124950px;}
._3e{margin-left:-403.995110px;}
._50{margin-left:-317.599462px;}
._41{margin-left:-294.212723px;}
._28{margin-left:-288.281072px;}
._35{margin-left:-284.606012px;}
._40{margin-left:-267.275052px;}
._3d{margin-left:-263.846513px;}
._36{margin-left:-261.410377px;}
._47{margin-left:-244.264357px;}
._2f{margin-left:-216.690097px;}
._29{margin-left:-199.995498px;}
._51{margin-left:-198.299448px;}
._2a{margin-left:-195.938322px;}
._26{margin-left:-191.501403px;}
._4a{margin-left:-186.658518px;}
._27{margin-left:-183.238028px;}
._2b{margin-left:-176.894073px;}
._2c{margin-left:-171.458973px;}
._2d{margin-left:-160.854990px;}
._48{margin-left:-158.162238px;}
._33{margin-left:-156.459787px;}
._45{margin-left:-151.241776px;}
._49{margin-left:-134.871805px;}
._43{margin-left:-123.055730px;}
._32{margin-left:-108.680846px;}
._42{margin-left:-99.949989px;}
._34{margin-left:-97.611961px;}
._44{margin-left:-87.553067px;}
._46{margin-left:-61.529887px;}
._31{margin-left:-59.655576px;}
._3f{margin-left:-54.823487px;}
._30{margin-left:-53.813140px;}
._3a{margin-left:-13.649304px;}
._3{margin-left:-5.724000px;}
._4{margin-left:-3.708000px;}
._2{margin-left:-1.728000px;}
._0{width:1.015920px;}
._5{width:2.509920px;}
._1{width:3.604080px;}
._6{width:4.968720px;}
._8{width:5.976000px;}
._7{width:7.171200px;}
._9{width:8.955840px;}
._1c{width:10.235280px;}
._1e{width:11.381520px;}
._23{width:12.848400px;}
._53{width:15.154080px;}
._15{width:16.927920px;}
._b{width:18.091440px;}
._a{width:19.302480px;}
._22{width:20.378160px;}
._19{width:21.394080px;}
._1a{width:22.689120px;}
._18{width:24.083280px;}
._1b{width:25.403040px;}
._17{width:27.006480px;}
._1d{width:28.292880px;}
._16{width:29.640960px;}
._25{width:31.075200px;}
._24{width:32.509440px;}
._21{width:36.056640px;}
._d{width:37.755360px;}
._20{width:50.297040px;}
._1f{width:51.773040px;}
._4f{width:70.824000px;}
._39{width:103.409984px;}
._38{width:115.737602px;}
._3c{width:137.686184px;}
._14{width:153.490080px;}
._11{width:162.168960px;}
._13{width:178.728960px;}
._12{width:189.516000px;}
._10{width:207.516000px;}
._c{width:210.396000px;}
._e{width:216.156000px;}
._f{width:217.596000px;}
._4d{width:641.880000px;}
._52{width:793.800000px;}
._2e{width:835.560000px;}
._4e{width:849.216000px;}
._37{width:932.040000px;}
._3b{width:1009.543847px;}
.fc2{color:rgb(255,192,0);}
.fc1{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs7{font-size:41.536051px;}
.fs14{font-size:41.966413px;}
.fs9{font-size:42.643531px;}
.fsd{font-size:43.311783px;}
.fs1b{font-size:48.240000px;}
.fs15{font-size:48.769178px;}
.fs21{font-size:54.000000px;}
.fs17{font-size:54.618880px;}
.fs16{font-size:54.770905px;}
.fs6{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1a{font-size:62.320103px;}
.fs4{font-size:66.240000px;}
.fs8{font-size:71.186046px;}
.fsf{font-size:71.964389px;}
.fs2{font-size:72.000000px;}
.fs12{font-size:72.045472px;}
.fsa{font-size:73.163288px;}
.fs1e{font-size:74.106886px;}
.fsc{font-size:74.249293px;}
.fs11{font-size:75.621429px;}
.fs13{font-size:76.011631px;}
.fs1d{font-size:76.036263px;}
.fs10{font-size:77.058818px;}
.fs19{font-size:77.451705px;}
.fs20{font-size:78.125292px;}
.fse{font-size:78.138588px;}
.fs1f{font-size:78.472377px;}
.fs1c{font-size:93.957290px;}
.fsb{font-size:97.969594px;}
.fs18{font-size:100.338059px;}
.fs1{font-size:108.000000px;}
.y17e{bottom:-10.980000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.240000px;}
.y164{bottom:4.180858px;}
.yc0{bottom:4.204714px;}
.ycf{bottom:4.226149px;}
.y132{bottom:4.680000px;}
.ybd{bottom:4.785663px;}
.y77{bottom:5.040000px;}
.y145{bottom:5.325000px;}
.yb2{bottom:5.625000px;}
.yc8{bottom:5.693877px;}
.y12d{bottom:6.300000px;}
.yb6{bottom:6.660000px;}
.y113{bottom:6.840000px;}
.yd6{bottom:7.107272px;}
.y167{bottom:7.363590px;}
.yf1{bottom:7.433641px;}
.yb9{bottom:8.280000px;}
.yc1{bottom:8.756747px;}
.yf6{bottom:8.826326px;}
.ybe{bottom:9.250040px;}
.y161{bottom:9.321404px;}
.y18a{bottom:10.440000px;}
.y73{bottom:12.240000px;}
.y18e{bottom:14.220000px;}
.ycb{bottom:15.464796px;}
.yd9{bottom:16.572235px;}
.y143{bottom:18.180000px;}
.yca{bottom:20.094336px;}
.yc7{bottom:20.167434px;}
.ye4{bottom:20.340000px;}
.yd8{bottom:21.071746px;}
.y197{bottom:21.270000px;}
.y1a3{bottom:21.750000px;}
.y131{bottom:21.960000px;}
.y76{bottom:22.314000px;}
.yb8{bottom:22.320000px;}
.yb1{bottom:22.905000px;}
.y17d{bottom:23.400000px;}
.y12c{bottom:23.580000px;}
.y136{bottom:23.934000px;}
.yb5{bottom:23.940000px;}
.y110{bottom:24.120000px;}
.y189{bottom:24.660000px;}
.ye6{bottom:25.967445px;}
.y72{bottom:29.520000px;}
.y18d{bottom:31.500000px;}
.yc9{bottom:32.143323px;}
.yd7{bottom:32.250195px;}
.y75{bottom:36.174000px;}
.yb0{bottom:36.945000px;}
.y17c{bottom:37.440000px;}
.y12b{bottom:37.470000px;}
.ye3{bottom:37.620000px;}
.y13d{bottom:37.695000px;}
.yb4{bottom:37.800000px;}
.y112{bottom:37.980000px;}
.ye7{bottom:38.973282px;}
.y130{bottom:39.240000px;}
.y135{bottom:41.214000px;}
.y10f{bottom:41.400000px;}
.y195{bottom:43.920000px;}
.y1a1{bottom:44.355000px;}
.y18c{bottom:45.540000px;}
.y3{bottom:46.260000px;}
.y71{bottom:46.800000px;}
.ye2{bottom:51.660000px;}
.y12f{bottom:53.310000px;}
.y134{bottom:55.254000px;}
.y10e{bottom:55.440000px;}
.y70{bottom:60.885000px;}
.y190{bottom:63.390000px;}
.y2{bottom:63.576000px;}
.y19c{bottom:63.870000px;}
.ye8{bottom:65.799580px;}
.y13e{bottom:79.410000px;}
.yf0{bottom:89.371710px;}
.ye9{bottom:92.784036px;}
.y4{bottom:94.716000px;}
.y1{bottom:97.956000px;}
.y139{bottom:103.709203px;}
.y144{bottom:104.070000px;}
.ydf{bottom:113.160000px;}
.y39{bottom:115.056000px;}
.y196{bottom:115.485000px;}
.y19d{bottom:115.590000px;}
.yae{bottom:116.496000px;}
.y191{bottom:116.535000px;}
.y6e{bottom:116.676000px;}
.yea{bottom:119.612501px;}
.y38{bottom:120.276000px;}
.y13f{bottom:121.170000px;}
.ye0{bottom:122.076000px;}
.y129{bottom:124.956000px;}
.y1a2{bottom:125.820000px;}
.y133{bottom:129.096000px;}
.y37{bottom:131.436000px;}
.yad{bottom:133.596000px;}
.y6d{bottom:133.956000px;}
.y74{bottom:135.936000px;}
.y36{bottom:136.656000px;}
.y128{bottom:142.236000px;}
.yde{bottom:143.316000px;}
.yeb{bottom:146.438799px;}
.y35{bottom:147.816000px;}
.yac{bottom:150.870000px;}
.y6c{bottom:151.230000px;}
.yb7{bottom:151.770000px;}
.y34{bottom:153.030000px;}
.y13b{bottom:158.203664px;}
.y127{bottom:159.510000px;}
.ydd{bottom:160.590000px;}
.y140{bottom:162.900000px;}
.y33{bottom:164.190000px;}
.y10d{bottom:165.990000px;}
.y19e{bottom:167.325000px;}
.yab{bottom:168.150000px;}
.y6b{bottom:168.510000px;}
.y32{bottom:169.410000px;}
.y192{bottom:169.665000px;}
.yec{bottom:173.423255px;}
.y126{bottom:176.790000px;}
.ydc{bottom:177.870000px;}
.y31{bottom:180.570000px;}
.y13c{bottom:184.500000px;}
.y111{bottom:184.710000px;}
.yaa{bottom:185.430000px;}
.y30{bottom:185.790000px;}
.y17b{bottom:189.030000px;}
.y187{bottom:190.830000px;}
.y125{bottom:194.070000px;}
.ydb{bottom:195.150000px;}
.y2f{bottom:197.130000px;}
.y148{bottom:199.515000px;}
.yed{bottom:200.251720px;}
.y13a{bottom:200.331276px;}
.ya9{bottom:202.710000px;}
.y6a{bottom:202.890000px;}
.y141{bottom:204.630000px;}
.y17a{bottom:206.310000px;}
.y186{bottom:208.110000px;}
.y124{bottom:211.170000px;}
.y138{bottom:212.121566px;}
.yda{bottom:212.430000px;}
.y2e{bottom:214.950000px;}
.y147{bottom:218.445000px;}
.y19f{bottom:219.090000px;}
.ya8{bottom:219.990000px;}
.y69{bottom:220.170000px;}
.y193{bottom:222.810000px;}
.y179{bottom:223.590000px;}
.y185{bottom:225.390000px;}
.yee{bottom:227.240510px;}
.y123{bottom:228.450000px;}
.y2d{bottom:232.050000px;}
.ya7{bottom:237.090000px;}
.y146{bottom:237.420000px;}
.y68{bottom:237.450000px;}
.y178{bottom:237.660000px;}
.y184{bottom:242.490000px;}
.yd5{bottom:244.335000px;}
.y122{bottom:245.730000px;}
.y142{bottom:246.390000px;}
.y177{bottom:246.630000px;}
.y2c{bottom:249.330000px;}
.y19a{bottom:250.920000px;}
.yef{bottom:254.062474px;}
.ya6{bottom:254.370000px;}
.y67{bottom:254.730000px;}
.y183{bottom:259.770000px;}
.y121{bottom:263.010000px;}
.y176{bottom:264.660000px;}
.yd4{bottom:265.350000px;}
.y2b{bottom:266.610000px;}
.yf2{bottom:268.697561px;}
.y199{bottom:269.310000px;}
.y1a0{bottom:270.825000px;}
.ya5{bottom:271.650000px;}
.y66{bottom:272.010000px;}
.y175{bottom:273.630000px;}
.y194{bottom:275.940000px;}
.y182{bottom:277.050000px;}
.y120{bottom:280.290000px;}
.y2a{bottom:283.890000px;}
.yf3{bottom:286.090674px;}
.y198{bottom:287.670000px;}
.ya4{bottom:288.930000px;}
.y65{bottom:289.290000px;}
.y181{bottom:294.330000px;}
.y174{bottom:294.870000px;}
.y11f{bottom:297.570000px;}
.y29{bottom:301.170000px;}
.ya3{bottom:306.210000px;}
.y64{bottom:306.390000px;}
.y173{bottom:312.195000px;}
.y11e{bottom:314.715000px;}
.yd3{bottom:315.075000px;}
.y180{bottom:316.335000px;}
.y28{bottom:318.315000px;}
.ya2{bottom:323.535000px;}
.y63{bottom:323.715000px;}
.yd1{bottom:329.160000px;}
.y172{bottom:329.475000px;}
.y11d{bottom:331.995000px;}
.yd2{bottom:333.660000px;}
.y27{bottom:335.595000px;}
.yd0{bottom:338.115000px;}
.ya1{bottom:340.635000px;}
.y62{bottom:340.995000px;}
.y171{bottom:346.575000px;}
.y11c{bottom:349.275000px;}
.y26{bottom:352.875000px;}
.y17f{bottom:353.055000px;}
.ycd{bottom:356.160000px;}
.ya0{bottom:357.915000px;}
.y61{bottom:358.275000px;}
.yce{bottom:360.660000px;}
.y170{bottom:363.855000px;}
.ycc{bottom:365.115000px;}
.y11b{bottom:366.555000px;}
.y18b{bottom:367.095000px;}
.y25{bottom:370.875000px;}
.y9f{bottom:375.195000px;}
.y60{bottom:375.555000px;}
.y16f{bottom:381.135000px;}
.y11a{bottom:383.835000px;}
.y9e{bottom:392.475000px;}
.y5f{bottom:392.655000px;}
.y24{bottom:393.195000px;}
.y16e{bottom:399.135000px;}
.y119{bottom:400.935000px;}
.yc6{bottom:401.160000px;}
.y5e{bottom:409.935000px;}
.y19b{bottom:412.920000px;}
.y16d{bottom:416.775000px;}
.y118{bottom:418.215000px;}
.yc5{bottom:420.555000px;}
.y9d{bottom:427.755000px;}
.y16c{bottom:433.875000px;}
.y117{bottom:435.495000px;}
.y5d{bottom:436.575000px;}
.y23{bottom:438.915000px;}
.y9c{bottom:444.855000px;}
.y1bc{bottom:453.675000px;}
.y22{bottom:456.195000px;}
.y116{bottom:457.455000px;}
.y9b{bottom:462.135000px;}
.y16b{bottom:465.960000px;}
.y21{bottom:473.475000px;}
.yc4{bottom:476.355000px;}
.y5c{bottom:478.515000px;}
.y9a{bottom:479.415000px;}
.y16a{bottom:485.355000px;}
.y1bb{bottom:490.035000px;}
.y5b{bottom:490.395000px;}
.yc3{bottom:490.410000px;}
.y20{bottom:490.755000px;}
.y115{bottom:494.175000px;}
.yb3{bottom:495.795000px;}
.y99{bottom:496.695000px;}
.yc2{bottom:499.395000px;}
.y1ba{bottom:505.515000px;}
.y5a{bottom:507.675000px;}
.y1f{bottom:507.855000px;}
.y12e{bottom:508.755000px;}
.y114{bottom:511.455000px;}
.y98{bottom:513.975000px;}
.ybc{bottom:517.410000px;}
.y59{bottom:524.955000px;}
.y1e{bottom:525.135000px;}
.y12a{bottom:525.495000px;}
.y1b9{bottom:525.675000px;}
.ybf{bottom:526.395000px;}
.y97{bottom:531.255000px;}
.y1b8{bottom:536.655000px;}
.y169{bottom:541.155000px;}
.y58{bottom:542.235000px;}
.y1d{bottom:542.415000px;}
.ybb{bottom:547.635000px;}
.y96{bottom:548.355000px;}
.y168{bottom:555.210000px;}
.y166{bottom:556.635000px;}
.y57{bottom:559.515000px;}
.y1c{bottom:559.695000px;}
.y137{bottom:563.100000px;}
.y165{bottom:564.225000px;}
.yba{bottom:564.945000px;}
.y95{bottom:565.665000px;}
.y1b7{bottom:567.645000px;}
.y56{bottom:576.645000px;}
.y1b{bottom:577.005000px;}
.y10c{bottom:582.045000px;}
.y163{bottom:582.210000px;}
.y94{bottom:582.945000px;}
.y162{bottom:586.725000px;}
.y1b6{bottom:587.805000px;}
.y55{bottom:593.925000px;}
.y1a{bottom:594.825000px;}
.y1b5{bottom:598.785000px;}
.y10b{bottom:599.145000px;}
.y93{bottom:600.225000px;}
.y160{bottom:602.910000px;}
.y54{bottom:611.205000px;}
.y15f{bottom:611.925000px;}
.y1b4{bottom:614.265000px;}
.y10a{bottom:616.425000px;}
.y92{bottom:617.505000px;}
.y53{bottom:628.485000px;}
.y15e{bottom:633.165000px;}
.y109{bottom:633.705000px;}
.y1b3{bottom:634.245000px;}
.y91{bottom:634.785000px;}
.y1b2{bottom:645.405000px;}
.y52{bottom:645.765000px;}
.y15d{bottom:650.445000px;}
.y19{bottom:650.805000px;}
.y108{bottom:650.985000px;}
.y90{bottom:651.885000px;}
.y51{bottom:663.045000px;}
.y1b1{bottom:665.385000px;}
.y15c{bottom:667.725000px;}
.y18{bottom:668.085000px;}
.y107{bottom:668.265000px;}
.y8f{bottom:669.165000px;}
.y1b0{bottom:676.365000px;}
.y50{bottom:680.145000px;}
.y16{bottom:685.365000px;}
.y106{bottom:685.545000px;}
.y8e{bottom:686.445000px;}
.y17{bottom:690.585000px;}
.y1af{bottom:696.345000px;}
.y4f{bottom:697.425000px;}
.y105{bottom:702.645000px;}
.y15b{bottom:703.005000px;}
.y8d{bottom:703.725000px;}
.y1ae{bottom:707.505000px;}
.y4e{bottom:714.705000px;}
.y104{bottom:719.925000px;}
.y15a{bottom:720.105000px;}
.y15{bottom:720.645000px;}
.y8c{bottom:721.005000px;}
.ye1{bottom:721.725000px;}
.y1ad{bottom:727.485000px;}
.y4d{bottom:731.985000px;}
.y188{bottom:736.485000px;}
.y103{bottom:737.205000px;}
.y159{bottom:737.385000px;}
.y8b{bottom:738.105000px;}
.y1ac{bottom:738.465000px;}
.y4c{bottom:749.265000px;}
.y6f{bottom:752.325000px;}
.y102{bottom:754.485000px;}
.y158{bottom:754.665000px;}
.y8a{bottom:755.385000px;}
.y14{bottom:755.925000px;}
.y1ab{bottom:758.445000px;}
.y18f{bottom:761.220000px;}
.y4b{bottom:766.545000px;}
.y1aa{bottom:769.605000px;}
.y101{bottom:771.765000px;}
.y157{bottom:771.945000px;}
.y89{bottom:772.665000px;}
.y13{bottom:773.205000px;}
.ye5{bottom:773.475000px;}
.y4a{bottom:783.645000px;}
.y1a9{bottom:785.085000px;}
.y100{bottom:789.045000px;}
.y156{bottom:789.225000px;}
.y88{bottom:789.945000px;}
.y11{bottom:790.305000px;}
.y12{bottom:795.525000px;}
.y1a8{bottom:800.565000px;}
.y49{bottom:800.925000px;}
.yff{bottom:806.145000px;}
.y155{bottom:806.505000px;}
.y87{bottom:807.225000px;}
.yaf{bottom:808.125000px;}
.y48{bottom:818.250000px;}
.y1a7{bottom:820.590000px;}
.yfe{bottom:823.470000px;}
.y154{bottom:823.650000px;}
.y86{bottom:824.550000px;}
.y10{bottom:825.630000px;}
.y1a6{bottom:831.750000px;}
.y47{bottom:835.530000px;}
.yfd{bottom:840.750000px;}
.y153{bottom:840.930000px;}
.y85{bottom:841.650000px;}
.yf{bottom:842.910000px;}
.y1a5{bottom:851.730000px;}
.y46{bottom:852.810000px;}
.yfc{bottom:858.030000px;}
.y152{bottom:858.210000px;}
.y84{bottom:858.930000px;}
.yd{bottom:860.190000px;}
.ye{bottom:865.410000px;}
.y1a4{bottom:867.750000px;}
.y45{bottom:870.090000px;}
.yfb{bottom:875.310000px;}
.y151{bottom:875.490000px;}
.y83{bottom:876.210000px;}
.yc{bottom:877.470000px;}
.y44{bottom:887.190000px;}
.y150{bottom:892.770000px;}
.y82{bottom:893.490000px;}
.yb{bottom:894.750000px;}
.yfa{bottom:897.270000px;}
.y43{bottom:904.470000px;}
.y14f{bottom:910.050000px;}
.y81{bottom:910.770000px;}
.ya{bottom:911.850000px;}
.y42{bottom:921.750000px;}
.y14e{bottom:927.150000px;}
.y80{bottom:928.050000px;}
.y9{bottom:929.130000px;}
.yf9{bottom:933.990000px;}
.y41{bottom:939.030000px;}
.y14d{bottom:944.430000px;}
.y7f{bottom:945.150000px;}
.yf8{bottom:951.270000px;}
.y40{bottom:956.310000px;}
.y14c{bottom:961.710000px;}
.y7e{bottom:962.430000px;}
.y8{bottom:965.130000px;}
.yf7{bottom:968.550000px;}
.y3f{bottom:973.410000px;}
.y14b{bottom:978.990000px;}
.y7d{bottom:979.710000px;}
.y3e{bottom:990.690000px;}
.y14a{bottom:996.270000px;}
.y7c{bottom:996.990000px;}
.yf5{bottom:1000.335000px;}
.y3d{bottom:1007.970000px;}
.yf4{bottom:1009.410000px;}
.y149{bottom:1013.550000px;}
.y7b{bottom:1014.270000px;}
.y7{bottom:1023.810000px;}
.y3c{bottom:1025.250000px;}
.y7a{bottom:1031.550000px;}
.y3b{bottom:1042.530000px;}
.y79{bottom:1048.650000px;}
.y6{bottom:1054.770000px;}
.y3a{bottom:1064.520000px;}
.y78{bottom:1065.960000px;}
.h21{height:16.200191px;}
.h3{height:17.280000px;}
.h40{height:20.699966px;}
.h42{height:24.300604px;}
.h14{height:26.999766px;}
.h17{height:27.000463px;}
.h9{height:35.332031px;}
.h3c{height:36.839531px;}
.h6{height:38.158594px;}
.h15{height:40.745081px;}
.h2a{height:41.167248px;}
.hb{height:41.726953px;}
.h18{height:41.831472px;}
.h1d{height:42.486998px;}
.h3b{height:45.637031px;}
.h39{height:47.105234px;}
.h25{height:49.500540px;}
.h28{height:50.023760px;}
.h2d{height:50.864729px;}
.h1e{height:51.553953px;}
.h24{height:52.506676px;}
.h27{height:52.777607px;}
.h41{height:52.794710px;}
.h4d{height:52.971680px;}
.h4c{height:52.998047px;}
.h23{height:53.504707px;}
.h32{height:53.777502px;}
.h1a{height:53.999625px;}
.h46{height:54.245198px;}
.h20{height:54.254430px;}
.h4e{height:54.421875px;}
.h44{height:54.486192px;}
.ha{height:55.824609px;}
.h2f{height:56.965785px;}
.h2e{height:57.124342px;}
.h1{height:58.621992px;}
.h2{height:58.651172px;}
.hc{height:59.038594px;}
.hd{height:59.158594px;}
.h3d{height:59.218594px;}
.h7{height:60.226875px;}
.he{height:62.327813px;}
.h3e{height:65.237923px;}
.h8{height:66.757500px;}
.h1b{height:68.023810px;}
.h30{height:69.668320px;}
.h16{height:69.830452px;}
.h22{height:70.593973px;}
.h29{height:70.673512px;}
.h26{height:70.708691px;}
.h19{height:71.770042px;}
.h31{height:71.805766px;}
.h5{height:72.562500px;}
.h43{height:72.731856px;}
.h1c{height:72.835367px;}
.h45{height:72.871621px;}
.h3f{height:87.687964px;}
.h4{height:108.843750px;}
.h1f{height:121.067569px;}
.h12{height:213.330000px;}
.h13{height:227.190000px;}
.h11{height:241.590000px;}
.h38{height:255.000000px;}
.h3a{height:259.920000px;}
.h10{height:263.910000px;}
.h47{height:292.530000px;}
.h35{height:292.575000px;}
.hf{height:298.290000px;}
.h2c{height:303.975595px;}
.h36{height:308.415000px;}
.h4a{height:310.680000px;}
.h4b{height:312.480000px;}
.h37{height:315.210000px;}
.h48{height:335.415000px;}
.h34{height:348.510000px;}
.h2b{height:355.755000px;}
.h49{height:358.230000px;}
.h33{height:368.130000px;}
.h0{height:1188.000000px;}
.w2{width:7.560000px;}
.we{width:13.499911px;}
.w1d{width:16.199853px;}
.wf{width:17.099848px;}
.wa{width:22.499292px;}
.w9{width:26.100597px;}
.w1c{width:26.999420px;}
.w1f{width:28.799872px;}
.wb{width:29.700174px;}
.wd{width:31.500648px;}
.w1e{width:53.998414px;}
.w1b{width:73.798959px;}
.w10{width:193.506515px;}
.wc{width:241.946738px;}
.w20{width:262.788208px;}
.w12{width:308.127077px;}
.w7{width:325.830000px;}
.w8{width:337.530000px;}
.w11{width:337.575000px;}
.w13{width:338.557709px;}
.w14{width:340.815000px;}
.w6{width:344.595000px;}
.w4{width:346.575000px;}
.w21{width:352.155000px;}
.w5{width:358.815000px;}
.w17{width:362.955000px;}
.w19{width:366.588133px;}
.w1a{width:367.380000px;}
.w18{width:395.535000px;}
.w16{width:396.615000px;}
.w15{width:397.695000px;}
.w24{width:460.260000px;}
.w25{width:475.740000px;}
.w22{width:724.605000px;}
.w23{width:727.665000px;}
.w3{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x33{left:1.025361px;}
.x2d{left:3.326511px;}
.x2c{left:10.527755px;}
.x32{left:11.773930px;}
.x6d{left:12.812130px;}
.x25{left:14.070000px;}
.x3d{left:15.178081px;}
.x4e{left:20.215917px;}
.x82{left:25.590000px;}
.x4d{left:27.063910px;}
.x63{left:28.830000px;}
.x3a{left:32.209628px;}
.x81{left:33.300000px;}
.x62{left:36.465000px;}
.x80{left:40.935000px;}
.x61{left:44.070000px;}
.x84{left:48.240000px;}
.x65{left:53.473686px;}
.x47{left:57.056855px;}
.x4c{left:58.203592px;}
.x35{left:61.918889px;}
.x85{left:65.955000px;}
.x45{left:70.571382px;}
.x71{left:75.193439px;}
.x49{left:80.978091px;}
.x72{left:82.570711px;}
.x64{left:85.320000px;}
.x5c{left:90.180000px;}
.x55{left:95.940000px;}
.x7b{left:97.236000px;}
.x7d{left:98.316000px;}
.x70{left:100.148748px;}
.x4f{left:106.945569px;}
.x1{left:108.035986px;}
.x1f{left:112.535986px;}
.x38{left:114.600357px;}
.x48{left:121.233303px;}
.x21{left:129.635986px;}
.x2e{left:134.135986px;}
.x6{left:136.475986px;}
.x50{left:140.533756px;}
.x5{left:153.029986px;}
.x1c{left:162.029986px;}
.x46{left:163.399525px;}
.x6f{left:169.633886px;}
.x86{left:171.720000px;}
.x3c{left:174.540000px;}
.x2{left:176.429986px;}
.x1b{left:183.629986px;}
.xe{left:185.249986px;}
.x36{left:191.340169px;}
.x39{left:203.400053px;}
.x3e{left:205.949986px;}
.x37{left:208.688424px;}
.x76{left:217.515000px;}
.x5f{left:219.689693px;}
.x83{left:224.100000px;}
.x7f{left:228.780000px;}
.x77{left:239.969986px;}
.x6e{left:254.398487px;}
.x8{left:256.349986px;}
.x15{left:262.469986px;}
.x9{left:285.689986px;}
.x51{left:289.890000px;}
.x31{left:294.240000px;}
.x6a{left:298.515000px;}
.x56{left:302.115000px;}
.x2a{left:311.625000px;}
.x27{left:314.895000px;}
.x29{left:317.415000px;}
.x24{left:322.815000px;}
.x1e{left:324.074986px;}
.x52{left:328.063171px;}
.x79{left:334.335000px;}
.x34{left:338.115000px;}
.x5d{left:348.015000px;}
.x7a{left:350.714986px;}
.x6b{left:352.514986px;}
.x22{left:363.314986px;}
.x5a{left:364.934986px;}
.xf{left:381.314986px;}
.x58{left:385.275000px;}
.x10{left:390.854973px;}
.x54{left:392.294986px;}
.x16{left:394.274986px;}
.x3{left:395.534986px;}
.x7{left:400.034986px;}
.x20{left:403.454986px;}
.x1d{left:409.034986px;}
.x18{left:412.634986px;}
.xb{left:418.934986px;}
.x87{left:420.554986px;}
.x57{left:422.715000px;}
.x5b{left:431.535000px;}
.x60{left:435.960000px;}
.x5e{left:446.325000px;}
.x17{left:447.734986px;}
.x59{left:453.134986px;}
.x4{left:455.295000px;}
.x2f{left:456.915000px;}
.xa{left:459.074986px;}
.x42{left:468.465000px;}
.x26{left:469.875000px;}
.x28{left:474.735000px;}
.x23{left:477.435000px;}
.x30{left:479.414986px;}
.x78{left:481.575000px;}
.x4b{left:487.875031px;}
.x2b{left:490.605000px;}
.xc{left:494.384973px;}
.xd{left:499.244986px;}
.x19{left:500.504973px;}
.x68{left:504.240000px;}
.x1a{left:505.364986px;}
.x69{left:520.484986px;}
.x74{left:521.940000px;}
.x11{left:526.244973px;}
.x12{left:531.104986px;}
.x3f{left:540.644986px;}
.x4a{left:555.944986px;}
.x3b{left:580.064986px;}
.x73{left:590.504986px;}
.x7c{left:593.034000px;}
.x75{left:595.724986px;}
.x7e{left:601.854000px;}
.x53{left:628.484986px;}
.x13{left:652.244973px;}
.x14{left:657.104986px;}
.x6c{left:697.215000px;}
.x43{left:699.015000px;}
.x66{left:711.615000px;}
.x44{left:716.189986px;}
.x40{left:725.865000px;}
.x67{left:738.689986px;}
.x41{left:748.409986px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.va{vertical-align:-51.201629pt;}
.v9{vertical-align:-42.840843pt;}
.v8{vertical-align:-18.560000pt;}
.v5{vertical-align:-16.000000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v6{vertical-align:26.380256pt;}
.v7{vertical-align:42.840843pt;}
.ls28{letter-spacing:-1.178060pt;}
.ls2a{letter-spacing:-1.096108pt;}
.ls29{letter-spacing:-0.916838pt;}
.ls2b{letter-spacing:-0.730667pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.478395pt;}
.ls25{letter-spacing:-0.462954pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.297265pt;}
.ls2d{letter-spacing:-0.271467pt;}
.ls31{letter-spacing:-0.224258pt;}
.lsd{letter-spacing:-0.224000pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls24{letter-spacing:-0.166230pt;}
.ls20{letter-spacing:-0.096863pt;}
.ls2e{letter-spacing:-0.051840pt;}
.lse{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.007680pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.067200pt;}
.ls5{letter-spacing:0.094720pt;}
.ls14{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.181798pt;}
.ls6{letter-spacing:0.183680pt;}
.ls27{letter-spacing:0.191095pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.259200pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.409067pt;}
.ls30{letter-spacing:0.456533pt;}
.ls26{letter-spacing:0.589598pt;}
.ls34{letter-spacing:0.592000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.736000pt;}
.ls23{letter-spacing:1.229129pt;}
.ls32{letter-spacing:1.359081pt;}
.ls22{letter-spacing:2.010950pt;}
.ls13{letter-spacing:10.192640pt;}
.ls17{letter-spacing:13.392640pt;}
.ls1d{letter-spacing:53.931725pt;}
.ls1b{letter-spacing:127.922024pt;}
.ls2c{letter-spacing:159.841493pt;}
.ls8{letter-spacing:163.498667pt;}
.lsa{letter-spacing:173.578667pt;}
.ls35{letter-spacing:225.334827pt;}
.ls36{letter-spacing:228.534827pt;}
.ls2f{letter-spacing:416.006133pt;}
.ls0{letter-spacing:603.658667pt;}
.ws20{word-spacing:-65.983131pt;}
.ws1d{word-spacing:-37.093676pt;}
.ws19{word-spacing:-36.233655pt;}
.ws0{word-spacing:-23.776000pt;}
.ws22{word-spacing:-23.313784pt;}
.ws15{word-spacing:-16.499843pt;}
.ws34{word-spacing:-16.468197pt;}
.ws25{word-spacing:-16.258508pt;}
.ws1b{word-spacing:-16.201200pt;}
.ws1c{word-spacing:-16.010105pt;}
.ws1{word-spacing:-16.000000pt;}
.ws27{word-spacing:-15.341670pt;}
.ws24{word-spacing:-15.080448pt;}
.wsb{word-spacing:-14.855467pt;}
.ws2b{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.016000pt;}
.ws39{word-spacing:-13.872000pt;}
.ws11{word-spacing:-13.689067pt;}
.ws5{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.096533pt;}
.ws4{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.800000pt;}
.ws2a{word-spacing:-12.549333pt;}
.ws2c{word-spacing:-12.519416pt;}
.ws9{word-spacing:-12.320000pt;}
.ws2d{word-spacing:-12.005120pt;}
.ws3e{word-spacing:-12.000000pt;}
.ws3f{word-spacing:-11.680000pt;}
.ws37{word-spacing:-10.983922pt;}
.ws17{word-spacing:-10.853970pt;}
.ws38{word-spacing:-9.624841pt;}
.ws33{word-spacing:-9.476340pt;}
.ws18{word-spacing:-9.161887pt;}
.ws7{word-spacing:-8.655360pt;}
.ws8{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.632320pt;}
.ws29{word-spacing:-8.380232pt;}
.ws10{word-spacing:-8.000000pt;}
.ws1e{word-spacing:-7.934221pt;}
.wsa{word-spacing:0.000000pt;}
.ws21{word-spacing:17.232113pt;}
.ws32{word-spacing:48.408301pt;}
.ws31{word-spacing:56.225969pt;}
.ws1f{word-spacing:78.492769pt;}
.ws2f{word-spacing:106.881280pt;}
.ws2e{word-spacing:121.060053pt;}
.ws3b{word-spacing:172.587947pt;}
.ws3d{word-spacing:175.787947pt;}
.ws3a{word-spacing:186.553387pt;}
.ws3c{word-spacing:189.806720pt;}
.ws30{word-spacing:223.688782pt;}
.ws14{word-spacing:238.684221pt;}
.ws35{word-spacing:379.716918pt;}
.ws1a{word-spacing:413.103752pt;}
.ws28{word-spacing:494.995120pt;}
.ws26{word-spacing:525.474426pt;}
.ws36{word-spacing:605.654676pt;}
.ws16{word-spacing:726.510036pt;}
.ws23{word-spacing:900.798698pt;}
._4c{margin-left:-490.394796pt;}
._4b{margin-left:-470.333289pt;}
._3e{margin-left:-359.106765pt;}
._50{margin-left:-282.310632pt;}
._41{margin-left:-261.522421pt;}
._28{margin-left:-256.249842pt;}
._35{margin-left:-252.983122pt;}
._40{margin-left:-237.577824pt;}
._3d{margin-left:-234.530234pt;}
._36{margin-left:-232.364780pt;}
._47{margin-left:-217.123873pt;}
._2f{margin-left:-192.613420pt;}
._29{margin-left:-177.773776pt;}
._51{margin-left:-176.266176pt;}
._2a{margin-left:-174.167397pt;}
._26{margin-left:-170.223470pt;}
._4a{margin-left:-165.918682pt;}
._27{margin-left:-162.878247pt;}
._2b{margin-left:-157.239176pt;}
._2c{margin-left:-152.407976pt;}
._2d{margin-left:-142.982213pt;}
._48{margin-left:-140.588656pt;}
._33{margin-left:-139.075366pt;}
._45{margin-left:-134.437134pt;}
._49{margin-left:-119.886049pt;}
._43{margin-left:-109.382871pt;}
._32{margin-left:-96.605197pt;}
._42{margin-left:-88.844435pt;}
._34{margin-left:-86.766188pt;}
._44{margin-left:-77.824948pt;}
._46{margin-left:-54.693233pt;}
._31{margin-left:-53.027178pt;}
._3f{margin-left:-48.731988pt;}
._30{margin-left:-47.833902pt;}
._3a{margin-left:-12.132714pt;}
._3{margin-left:-5.088000pt;}
._4{margin-left:-3.296000pt;}
._2{margin-left:-1.536000pt;}
._0{width:0.903040pt;}
._5{width:2.231040pt;}
._1{width:3.203627pt;}
._6{width:4.416640pt;}
._8{width:5.312000pt;}
._7{width:6.374400pt;}
._9{width:7.960747pt;}
._1c{width:9.098027pt;}
._1e{width:10.116907pt;}
._23{width:11.420800pt;}
._53{width:13.470293pt;}
._15{width:15.047040pt;}
._b{width:16.081280pt;}
._a{width:17.157760pt;}
._22{width:18.113920pt;}
._19{width:19.016960pt;}
._1a{width:20.168107pt;}
._18{width:21.407360pt;}
._1b{width:22.580480pt;}
._17{width:24.005760pt;}
._1d{width:25.149227pt;}
._16{width:26.347520pt;}
._25{width:27.622400pt;}
._24{width:28.897280pt;}
._21{width:32.050347pt;}
._d{width:33.560320pt;}
._20{width:44.708480pt;}
._1f{width:46.020480pt;}
._4f{width:62.954667pt;}
._39{width:91.919986pt;}
._38{width:102.877868pt;}
._3c{width:122.387719pt;}
._14{width:136.435627pt;}
._11{width:144.150187pt;}
._13{width:158.870187pt;}
._12{width:168.458667pt;}
._10{width:184.458667pt;}
._c{width:187.018667pt;}
._e{width:192.138667pt;}
._f{width:193.418667pt;}
._4d{width:570.560000pt;}
._52{width:705.600000pt;}
._2e{width:742.720000pt;}
._4e{width:754.858667pt;}
._37{width:828.480000pt;}
._3b{width:897.372309pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs7{font-size:36.920934pt;}
.fs14{font-size:37.303479pt;}
.fs9{font-size:37.905361pt;}
.fsd{font-size:38.499363pt;}
.fs1b{font-size:42.880000pt;}
.fs15{font-size:43.350381pt;}
.fs21{font-size:48.000000pt;}
.fs17{font-size:48.550116pt;}
.fs16{font-size:48.685249pt;}
.fs6{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1a{font-size:55.395647pt;}
.fs4{font-size:58.880000pt;}
.fs8{font-size:63.276485pt;}
.fsf{font-size:63.968346pt;}
.fs2{font-size:64.000000pt;}
.fs12{font-size:64.040420pt;}
.fsa{font-size:65.034034pt;}
.fs1e{font-size:65.872787pt;}
.fsc{font-size:65.999372pt;}
.fs11{font-size:67.219048pt;}
.fs13{font-size:67.565895pt;}
.fs1d{font-size:67.587789pt;}
.fs10{font-size:68.496727pt;}
.fs19{font-size:68.845960pt;}
.fs20{font-size:69.444704pt;}
.fse{font-size:69.456523pt;}
.fs1f{font-size:69.753224pt;}
.fs1c{font-size:83.517591pt;}
.fsb{font-size:87.084084pt;}
.fs18{font-size:89.189386pt;}
.fs1{font-size:96.000000pt;}
.y17e{bottom:-9.760000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.880000pt;}
.y164{bottom:3.716318pt;}
.yc0{bottom:3.737523pt;}
.ycf{bottom:3.756577pt;}
.y132{bottom:4.160000pt;}
.ybd{bottom:4.253922pt;}
.y77{bottom:4.480000pt;}
.y145{bottom:4.733333pt;}
.yb2{bottom:5.000000pt;}
.yc8{bottom:5.061224pt;}
.y12d{bottom:5.600000pt;}
.yb6{bottom:5.920000pt;}
.y113{bottom:6.080000pt;}
.yd6{bottom:6.317576pt;}
.y167{bottom:6.545414pt;}
.yf1{bottom:6.607681pt;}
.yb9{bottom:7.360000pt;}
.yc1{bottom:7.783775pt;}
.yf6{bottom:7.845624pt;}
.ybe{bottom:8.222258pt;}
.y161{bottom:8.285693pt;}
.y18a{bottom:9.280000pt;}
.y73{bottom:10.880000pt;}
.y18e{bottom:12.640000pt;}
.ycb{bottom:13.746485pt;}
.yd9{bottom:14.730876pt;}
.y143{bottom:16.160000pt;}
.yca{bottom:17.861632pt;}
.yc7{bottom:17.926608pt;}
.ye4{bottom:18.080000pt;}
.yd8{bottom:18.730441pt;}
.y197{bottom:18.906667pt;}
.y1a3{bottom:19.333333pt;}
.y131{bottom:19.520000pt;}
.y76{bottom:19.834667pt;}
.yb8{bottom:19.840000pt;}
.yb1{bottom:20.360000pt;}
.y17d{bottom:20.800000pt;}
.y12c{bottom:20.960000pt;}
.y136{bottom:21.274667pt;}
.yb5{bottom:21.280000pt;}
.y110{bottom:21.440000pt;}
.y189{bottom:21.920000pt;}
.ye6{bottom:23.082174pt;}
.y72{bottom:26.240000pt;}
.y18d{bottom:28.000000pt;}
.yc9{bottom:28.571842pt;}
.yd7{bottom:28.666840pt;}
.y75{bottom:32.154667pt;}
.yb0{bottom:32.840000pt;}
.y17c{bottom:33.280000pt;}
.y12b{bottom:33.306667pt;}
.ye3{bottom:33.440000pt;}
.y13d{bottom:33.506667pt;}
.yb4{bottom:33.600000pt;}
.y112{bottom:33.760000pt;}
.ye7{bottom:34.642917pt;}
.y130{bottom:34.880000pt;}
.y135{bottom:36.634667pt;}
.y10f{bottom:36.800000pt;}
.y195{bottom:39.040000pt;}
.y1a1{bottom:39.426667pt;}
.y18c{bottom:40.480000pt;}
.y3{bottom:41.120000pt;}
.y71{bottom:41.600000pt;}
.ye2{bottom:45.920000pt;}
.y12f{bottom:47.386667pt;}
.y134{bottom:49.114667pt;}
.y10e{bottom:49.280000pt;}
.y70{bottom:54.120000pt;}
.y190{bottom:56.346667pt;}
.y2{bottom:56.512000pt;}
.y19c{bottom:56.773333pt;}
.ye8{bottom:58.488515pt;}
.y13e{bottom:70.586667pt;}
.yf0{bottom:79.441520pt;}
.ye9{bottom:82.474699pt;}
.y4{bottom:84.192000pt;}
.y1{bottom:87.072000pt;}
.y139{bottom:92.185958pt;}
.y144{bottom:92.506667pt;}
.ydf{bottom:100.586667pt;}
.y39{bottom:102.272000pt;}
.y196{bottom:102.653333pt;}
.y19d{bottom:102.746667pt;}
.yae{bottom:103.552000pt;}
.y191{bottom:103.586667pt;}
.y6e{bottom:103.712000pt;}
.yea{bottom:106.322223pt;}
.y38{bottom:106.912000pt;}
.y13f{bottom:107.706667pt;}
.ye0{bottom:108.512000pt;}
.y129{bottom:111.072000pt;}
.y1a2{bottom:111.840000pt;}
.y133{bottom:114.752000pt;}
.y37{bottom:116.832000pt;}
.yad{bottom:118.752000pt;}
.y6d{bottom:119.072000pt;}
.y74{bottom:120.832000pt;}
.y36{bottom:121.472000pt;}
.y128{bottom:126.432000pt;}
.yde{bottom:127.392000pt;}
.yeb{bottom:130.167821pt;}
.y35{bottom:131.392000pt;}
.yac{bottom:134.106667pt;}
.y6c{bottom:134.426667pt;}
.yb7{bottom:134.906667pt;}
.y34{bottom:136.026667pt;}
.y13b{bottom:140.625479pt;}
.y127{bottom:141.786667pt;}
.ydd{bottom:142.746667pt;}
.y140{bottom:144.800000pt;}
.y33{bottom:145.946667pt;}
.y10d{bottom:147.546667pt;}
.y19e{bottom:148.733333pt;}
.yab{bottom:149.466667pt;}
.y6b{bottom:149.786667pt;}
.y32{bottom:150.586667pt;}
.y192{bottom:150.813333pt;}
.yec{bottom:154.154005pt;}
.y126{bottom:157.146667pt;}
.ydc{bottom:158.106667pt;}
.y31{bottom:160.506667pt;}
.y13c{bottom:164.000000pt;}
.y111{bottom:164.186667pt;}
.yaa{bottom:164.826667pt;}
.y30{bottom:165.146667pt;}
.y17b{bottom:168.026667pt;}
.y187{bottom:169.626667pt;}
.y125{bottom:172.506667pt;}
.ydb{bottom:173.466667pt;}
.y2f{bottom:175.226667pt;}
.y148{bottom:177.346667pt;}
.yed{bottom:178.001529pt;}
.y13a{bottom:178.072245pt;}
.ya9{bottom:180.186667pt;}
.y6a{bottom:180.346667pt;}
.y141{bottom:181.893333pt;}
.y17a{bottom:183.386667pt;}
.y186{bottom:184.986667pt;}
.y124{bottom:187.706667pt;}
.y138{bottom:188.552503pt;}
.yda{bottom:188.826667pt;}
.y2e{bottom:191.066667pt;}
.y147{bottom:194.173333pt;}
.y19f{bottom:194.746667pt;}
.ya8{bottom:195.546667pt;}
.y69{bottom:195.706667pt;}
.y193{bottom:198.053333pt;}
.y179{bottom:198.746667pt;}
.y185{bottom:200.346667pt;}
.yee{bottom:201.991564pt;}
.y123{bottom:203.066667pt;}
.y2d{bottom:206.266667pt;}
.ya7{bottom:210.746667pt;}
.y146{bottom:211.040000pt;}
.y68{bottom:211.066667pt;}
.y178{bottom:211.253333pt;}
.y184{bottom:215.546667pt;}
.yd5{bottom:217.186667pt;}
.y122{bottom:218.426667pt;}
.y142{bottom:219.013333pt;}
.y177{bottom:219.226667pt;}
.y2c{bottom:221.626667pt;}
.y19a{bottom:223.040000pt;}
.yef{bottom:225.833311pt;}
.ya6{bottom:226.106667pt;}
.y67{bottom:226.426667pt;}
.y183{bottom:230.906667pt;}
.y121{bottom:233.786667pt;}
.y176{bottom:235.253333pt;}
.yd4{bottom:235.866667pt;}
.y2b{bottom:236.986667pt;}
.yf2{bottom:238.842277pt;}
.y199{bottom:239.386667pt;}
.y1a0{bottom:240.733333pt;}
.ya5{bottom:241.466667pt;}
.y66{bottom:241.786667pt;}
.y175{bottom:243.226667pt;}
.y194{bottom:245.280000pt;}
.y182{bottom:246.266667pt;}
.y120{bottom:249.146667pt;}
.y2a{bottom:252.346667pt;}
.yf3{bottom:254.302821pt;}
.y198{bottom:255.706667pt;}
.ya4{bottom:256.826667pt;}
.y65{bottom:257.146667pt;}
.y181{bottom:261.626667pt;}
.y174{bottom:262.106667pt;}
.y11f{bottom:264.506667pt;}
.y29{bottom:267.706667pt;}
.ya3{bottom:272.186667pt;}
.y64{bottom:272.346667pt;}
.y173{bottom:277.506667pt;}
.y11e{bottom:279.746667pt;}
.yd3{bottom:280.066667pt;}
.y180{bottom:281.186667pt;}
.y28{bottom:282.946667pt;}
.ya2{bottom:287.586667pt;}
.y63{bottom:287.746667pt;}
.yd1{bottom:292.586667pt;}
.y172{bottom:292.866667pt;}
.y11d{bottom:295.106667pt;}
.yd2{bottom:296.586667pt;}
.y27{bottom:298.306667pt;}
.yd0{bottom:300.546667pt;}
.ya1{bottom:302.786667pt;}
.y62{bottom:303.106667pt;}
.y171{bottom:308.066667pt;}
.y11c{bottom:310.466667pt;}
.y26{bottom:313.666667pt;}
.y17f{bottom:313.826667pt;}
.ycd{bottom:316.586667pt;}
.ya0{bottom:318.146667pt;}
.y61{bottom:318.466667pt;}
.yce{bottom:320.586667pt;}
.y170{bottom:323.426667pt;}
.ycc{bottom:324.546667pt;}
.y11b{bottom:325.826667pt;}
.y18b{bottom:326.306667pt;}
.y25{bottom:329.666667pt;}
.y9f{bottom:333.506667pt;}
.y60{bottom:333.826667pt;}
.y16f{bottom:338.786667pt;}
.y11a{bottom:341.186667pt;}
.y9e{bottom:348.866667pt;}
.y5f{bottom:349.026667pt;}
.y24{bottom:349.506667pt;}
.y16e{bottom:354.786667pt;}
.y119{bottom:356.386667pt;}
.yc6{bottom:356.586667pt;}
.y5e{bottom:364.386667pt;}
.y19b{bottom:367.040000pt;}
.y16d{bottom:370.466667pt;}
.y118{bottom:371.746667pt;}
.yc5{bottom:373.826667pt;}
.y9d{bottom:380.226667pt;}
.y16c{bottom:385.666667pt;}
.y117{bottom:387.106667pt;}
.y5d{bottom:388.066667pt;}
.y23{bottom:390.146667pt;}
.y9c{bottom:395.426667pt;}
.y1bc{bottom:403.266667pt;}
.y22{bottom:405.506667pt;}
.y116{bottom:406.626667pt;}
.y9b{bottom:410.786667pt;}
.y16b{bottom:414.186667pt;}
.y21{bottom:420.866667pt;}
.yc4{bottom:423.426667pt;}
.y5c{bottom:425.346667pt;}
.y9a{bottom:426.146667pt;}
.y16a{bottom:431.426667pt;}
.y1bb{bottom:435.586667pt;}
.y5b{bottom:435.906667pt;}
.yc3{bottom:435.920000pt;}
.y20{bottom:436.226667pt;}
.y115{bottom:439.266667pt;}
.yb3{bottom:440.706667pt;}
.y99{bottom:441.506667pt;}
.yc2{bottom:443.906667pt;}
.y1ba{bottom:449.346667pt;}
.y5a{bottom:451.266667pt;}
.y1f{bottom:451.426667pt;}
.y12e{bottom:452.226667pt;}
.y114{bottom:454.626667pt;}
.y98{bottom:456.866667pt;}
.ybc{bottom:459.920000pt;}
.y59{bottom:466.626667pt;}
.y1e{bottom:466.786667pt;}
.y12a{bottom:467.106667pt;}
.y1b9{bottom:467.266667pt;}
.ybf{bottom:467.906667pt;}
.y97{bottom:472.226667pt;}
.y1b8{bottom:477.026667pt;}
.y169{bottom:481.026667pt;}
.y58{bottom:481.986667pt;}
.y1d{bottom:482.146667pt;}
.ybb{bottom:486.786667pt;}
.y96{bottom:487.426667pt;}
.y168{bottom:493.520000pt;}
.y166{bottom:494.786667pt;}
.y57{bottom:497.346667pt;}
.y1c{bottom:497.506667pt;}
.y137{bottom:500.533333pt;}
.y165{bottom:501.533333pt;}
.yba{bottom:502.173333pt;}
.y95{bottom:502.813333pt;}
.y1b7{bottom:504.573333pt;}
.y56{bottom:512.573333pt;}
.y1b{bottom:512.893333pt;}
.y10c{bottom:517.373333pt;}
.y163{bottom:517.520000pt;}
.y94{bottom:518.173333pt;}
.y162{bottom:521.533333pt;}
.y1b6{bottom:522.493333pt;}
.y55{bottom:527.933333pt;}
.y1a{bottom:528.733333pt;}
.y1b5{bottom:532.253333pt;}
.y10b{bottom:532.573333pt;}
.y93{bottom:533.533333pt;}
.y160{bottom:535.920000pt;}
.y54{bottom:543.293333pt;}
.y15f{bottom:543.933333pt;}
.y1b4{bottom:546.013333pt;}
.y10a{bottom:547.933333pt;}
.y92{bottom:548.893333pt;}
.y53{bottom:558.653333pt;}
.y15e{bottom:562.813333pt;}
.y109{bottom:563.293333pt;}
.y1b3{bottom:563.773333pt;}
.y91{bottom:564.253333pt;}
.y1b2{bottom:573.693333pt;}
.y52{bottom:574.013333pt;}
.y15d{bottom:578.173333pt;}
.y19{bottom:578.493333pt;}
.y108{bottom:578.653333pt;}
.y90{bottom:579.453333pt;}
.y51{bottom:589.373333pt;}
.y1b1{bottom:591.453333pt;}
.y15c{bottom:593.533333pt;}
.y18{bottom:593.853333pt;}
.y107{bottom:594.013333pt;}
.y8f{bottom:594.813333pt;}
.y1b0{bottom:601.213333pt;}
.y50{bottom:604.573333pt;}
.y16{bottom:609.213333pt;}
.y106{bottom:609.373333pt;}
.y8e{bottom:610.173333pt;}
.y17{bottom:613.853333pt;}
.y1af{bottom:618.973333pt;}
.y4f{bottom:619.933333pt;}
.y105{bottom:624.573333pt;}
.y15b{bottom:624.893333pt;}
.y8d{bottom:625.533333pt;}
.y1ae{bottom:628.893333pt;}
.y4e{bottom:635.293333pt;}
.y104{bottom:639.933333pt;}
.y15a{bottom:640.093333pt;}
.y15{bottom:640.573333pt;}
.y8c{bottom:640.893333pt;}
.ye1{bottom:641.533333pt;}
.y1ad{bottom:646.653333pt;}
.y4d{bottom:650.653333pt;}
.y188{bottom:654.653333pt;}
.y103{bottom:655.293333pt;}
.y159{bottom:655.453333pt;}
.y8b{bottom:656.093333pt;}
.y1ac{bottom:656.413333pt;}
.y4c{bottom:666.013333pt;}
.y6f{bottom:668.733333pt;}
.y102{bottom:670.653333pt;}
.y158{bottom:670.813333pt;}
.y8a{bottom:671.453333pt;}
.y14{bottom:671.933333pt;}
.y1ab{bottom:674.173333pt;}
.y18f{bottom:676.640000pt;}
.y4b{bottom:681.373333pt;}
.y1aa{bottom:684.093333pt;}
.y101{bottom:686.013333pt;}
.y157{bottom:686.173333pt;}
.y89{bottom:686.813333pt;}
.y13{bottom:687.293333pt;}
.ye5{bottom:687.533333pt;}
.y4a{bottom:696.573333pt;}
.y1a9{bottom:697.853333pt;}
.y100{bottom:701.373333pt;}
.y156{bottom:701.533333pt;}
.y88{bottom:702.173333pt;}
.y11{bottom:702.493333pt;}
.y12{bottom:707.133333pt;}
.y1a8{bottom:711.613333pt;}
.y49{bottom:711.933333pt;}
.yff{bottom:716.573333pt;}
.y155{bottom:716.893333pt;}
.y87{bottom:717.533333pt;}
.yaf{bottom:718.333333pt;}
.y48{bottom:727.333333pt;}
.y1a7{bottom:729.413333pt;}
.yfe{bottom:731.973333pt;}
.y154{bottom:732.133333pt;}
.y86{bottom:732.933333pt;}
.y10{bottom:733.893333pt;}
.y1a6{bottom:739.333333pt;}
.y47{bottom:742.693333pt;}
.yfd{bottom:747.333333pt;}
.y153{bottom:747.493333pt;}
.y85{bottom:748.133333pt;}
.yf{bottom:749.253333pt;}
.y1a5{bottom:757.093333pt;}
.y46{bottom:758.053333pt;}
.yfc{bottom:762.693333pt;}
.y152{bottom:762.853333pt;}
.y84{bottom:763.493333pt;}
.yd{bottom:764.613333pt;}
.ye{bottom:769.253333pt;}
.y1a4{bottom:771.333333pt;}
.y45{bottom:773.413333pt;}
.yfb{bottom:778.053333pt;}
.y151{bottom:778.213333pt;}
.y83{bottom:778.853333pt;}
.yc{bottom:779.973333pt;}
.y44{bottom:788.613333pt;}
.y150{bottom:793.573333pt;}
.y82{bottom:794.213333pt;}
.yb{bottom:795.333333pt;}
.yfa{bottom:797.573333pt;}
.y43{bottom:803.973333pt;}
.y14f{bottom:808.933333pt;}
.y81{bottom:809.573333pt;}
.ya{bottom:810.533333pt;}
.y42{bottom:819.333333pt;}
.y14e{bottom:824.133333pt;}
.y80{bottom:824.933333pt;}
.y9{bottom:825.893333pt;}
.yf9{bottom:830.213333pt;}
.y41{bottom:834.693333pt;}
.y14d{bottom:839.493333pt;}
.y7f{bottom:840.133333pt;}
.yf8{bottom:845.573333pt;}
.y40{bottom:850.053333pt;}
.y14c{bottom:854.853333pt;}
.y7e{bottom:855.493333pt;}
.y8{bottom:857.893333pt;}
.yf7{bottom:860.933333pt;}
.y3f{bottom:865.253333pt;}
.y14b{bottom:870.213333pt;}
.y7d{bottom:870.853333pt;}
.y3e{bottom:880.613333pt;}
.y14a{bottom:885.573333pt;}
.y7c{bottom:886.213333pt;}
.yf5{bottom:889.186667pt;}
.y3d{bottom:895.973333pt;}
.yf4{bottom:897.253333pt;}
.y149{bottom:900.933333pt;}
.y7b{bottom:901.573333pt;}
.y7{bottom:910.053333pt;}
.y3c{bottom:911.333333pt;}
.y7a{bottom:916.933333pt;}
.y3b{bottom:926.693333pt;}
.y79{bottom:932.133333pt;}
.y6{bottom:937.573333pt;}
.y3a{bottom:946.240000pt;}
.y78{bottom:947.520000pt;}
.h21{height:14.400170pt;}
.h3{height:15.360000pt;}
.h40{height:18.399969pt;}
.h42{height:21.600537pt;}
.h14{height:23.999792pt;}
.h17{height:24.000411pt;}
.h9{height:31.406250pt;}
.h3c{height:32.746250pt;}
.h6{height:33.918750pt;}
.h15{height:36.217850pt;}
.h2a{height:36.593110pt;}
.hb{height:37.090625pt;}
.h18{height:37.183530pt;}
.h1d{height:37.766221pt;}
.h3b{height:40.566250pt;}
.h39{height:41.871319pt;}
.h25{height:44.000480pt;}
.h28{height:44.465565pt;}
.h2d{height:45.213093pt;}
.h1e{height:45.825736pt;}
.h24{height:46.672601pt;}
.h27{height:46.913429pt;}
.h41{height:46.928631pt;}
.h4d{height:47.085938pt;}
.h4c{height:47.109375pt;}
.h23{height:47.559739pt;}
.h32{height:47.802224pt;}
.h1a{height:47.999666pt;}
.h46{height:48.217954pt;}
.h20{height:48.226160pt;}
.h4e{height:48.375000pt;}
.h44{height:48.432170pt;}
.ha{height:49.621875pt;}
.h2f{height:50.636253pt;}
.h2e{height:50.777193pt;}
.h1{height:52.108438pt;}
.h2{height:52.134375pt;}
.hc{height:52.478750pt;}
.hd{height:52.585417pt;}
.h3d{height:52.638750pt;}
.h7{height:53.535000pt;}
.he{height:55.402500pt;}
.h3e{height:57.989265pt;}
.h8{height:59.340000pt;}
.h1b{height:60.465609pt;}
.h30{height:61.927396pt;}
.h16{height:62.071513pt;}
.h22{height:62.750199pt;}
.h29{height:62.820900pt;}
.h26{height:62.852170pt;}
.h19{height:63.795593pt;}
.h31{height:63.827348pt;}
.h5{height:64.500000pt;}
.h43{height:64.650538pt;}
.h1c{height:64.742548pt;}
.h45{height:64.774774pt;}
.h3f{height:77.944856pt;}
.h4{height:96.750000pt;}
.h1f{height:107.615617pt;}
.h12{height:189.626667pt;}
.h13{height:201.946667pt;}
.h11{height:214.746667pt;}
.h38{height:226.666667pt;}
.h3a{height:231.040000pt;}
.h10{height:234.586667pt;}
.h47{height:260.026667pt;}
.h35{height:260.066667pt;}
.hf{height:265.146667pt;}
.h2c{height:270.200529pt;}
.h36{height:274.146667pt;}
.h4a{height:276.160000pt;}
.h4b{height:277.760000pt;}
.h37{height:280.186667pt;}
.h48{height:298.146667pt;}
.h34{height:309.786667pt;}
.h2b{height:316.226667pt;}
.h49{height:318.426667pt;}
.h33{height:327.226667pt;}
.h0{height:1056.000000pt;}
.w2{width:6.720000pt;}
.we{width:11.999921pt;}
.w1d{width:14.399870pt;}
.wf{width:15.199865pt;}
.wa{width:19.999371pt;}
.w9{width:23.200530pt;}
.w1c{width:23.999485pt;}
.w1f{width:25.599886pt;}
.wb{width:26.400155pt;}
.wd{width:28.000576pt;}
.w1e{width:47.998590pt;}
.w1b{width:65.599075pt;}
.w10{width:172.005791pt;}
.wc{width:215.063767pt;}
.w20{width:233.589518pt;}
.w12{width:273.890735pt;}
.w7{width:289.626667pt;}
.w8{width:300.026667pt;}
.w11{width:300.066667pt;}
.w13{width:300.940186pt;}
.w14{width:302.946667pt;}
.w6{width:306.306667pt;}
.w4{width:308.066667pt;}
.w21{width:313.026667pt;}
.w5{width:318.946667pt;}
.w17{width:322.626667pt;}
.w19{width:325.856118pt;}
.w1a{width:326.560000pt;}
.w18{width:351.586667pt;}
.w16{width:352.546667pt;}
.w15{width:353.506667pt;}
.w24{width:409.120000pt;}
.w25{width:422.880000pt;}
.w22{width:644.093333pt;}
.w23{width:646.813333pt;}
.w3{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x33{left:0.911432pt;}
.x2d{left:2.956899pt;}
.x2c{left:9.358004pt;}
.x32{left:10.465715pt;}
.x6d{left:11.388560pt;}
.x25{left:12.506667pt;}
.x3d{left:13.491628pt;}
.x4e{left:17.969704pt;}
.x82{left:22.746667pt;}
.x4d{left:24.056809pt;}
.x63{left:25.626667pt;}
.x3a{left:28.630780pt;}
.x81{left:29.600000pt;}
.x62{left:32.413333pt;}
.x80{left:36.386667pt;}
.x61{left:39.173333pt;}
.x84{left:42.880000pt;}
.x65{left:47.532165pt;}
.x47{left:50.717204pt;}
.x4c{left:51.736526pt;}
.x35{left:55.039013pt;}
.x85{left:58.626667pt;}
.x45{left:62.730117pt;}
.x71{left:66.838612pt;}
.x49{left:71.980525pt;}
.x72{left:73.396188pt;}
.x64{left:75.840000pt;}
.x5c{left:80.160000pt;}
.x55{left:85.280000pt;}
.x7b{left:86.432000pt;}
.x7d{left:87.392000pt;}
.x70{left:89.021109pt;}
.x4f{left:95.062728pt;}
.x1{left:96.031988pt;}
.x1f{left:100.031988pt;}
.x38{left:101.866984pt;}
.x48{left:107.762936pt;}
.x21{left:115.231988pt;}
.x2e{left:119.231988pt;}
.x6{left:121.311988pt;}
.x50{left:124.918894pt;}
.x5{left:136.026655pt;}
.x1c{left:144.026655pt;}
.x46{left:145.244022pt;}
.x6f{left:150.785676pt;}
.x86{left:152.640000pt;}
.x3c{left:155.146667pt;}
.x2{left:156.826655pt;}
.x1b{left:163.226655pt;}
.xe{left:164.666655pt;}
.x36{left:170.080150pt;}
.x39{left:180.800047pt;}
.x3e{left:183.066655pt;}
.x37{left:185.500822pt;}
.x76{left:193.346667pt;}
.x5f{left:195.279727pt;}
.x83{left:199.200000pt;}
.x7f{left:203.360000pt;}
.x77{left:213.306655pt;}
.x6e{left:226.131988pt;}
.x8{left:227.866655pt;}
.x15{left:233.306655pt;}
.x9{left:253.946655pt;}
.x51{left:257.680000pt;}
.x31{left:261.546667pt;}
.x6a{left:265.346667pt;}
.x56{left:268.546667pt;}
.x2a{left:277.000000pt;}
.x27{left:279.906667pt;}
.x29{left:282.146667pt;}
.x24{left:286.946667pt;}
.x1e{left:288.066655pt;}
.x52{left:291.611708pt;}
.x79{left:297.186667pt;}
.x34{left:300.546667pt;}
.x5d{left:309.346667pt;}
.x7a{left:311.746655pt;}
.x6b{left:313.346655pt;}
.x22{left:322.946655pt;}
.x5a{left:324.386655pt;}
.xf{left:338.946655pt;}
.x58{left:342.466667pt;}
.x10{left:347.426642pt;}
.x54{left:348.706655pt;}
.x16{left:350.466655pt;}
.x3{left:351.586655pt;}
.x7{left:355.586655pt;}
.x20{left:358.626655pt;}
.x1d{left:363.586655pt;}
.x18{left:366.786655pt;}
.xb{left:372.386655pt;}
.x87{left:373.826655pt;}
.x57{left:375.746667pt;}
.x5b{left:383.586667pt;}
.x60{left:387.520000pt;}
.x5e{left:396.733333pt;}
.x17{left:397.986655pt;}
.x59{left:402.786655pt;}
.x4{left:404.706667pt;}
.x2f{left:406.146667pt;}
.xa{left:408.066655pt;}
.x42{left:416.413333pt;}
.x26{left:417.666667pt;}
.x28{left:421.986667pt;}
.x23{left:424.386667pt;}
.x30{left:426.146655pt;}
.x78{left:428.066667pt;}
.x4b{left:433.666694pt;}
.x2b{left:436.093333pt;}
.xc{left:439.453309pt;}
.xd{left:443.773321pt;}
.x19{left:444.893309pt;}
.x68{left:448.213333pt;}
.x1a{left:449.213321pt;}
.x69{left:462.653321pt;}
.x74{left:463.946667pt;}
.x11{left:467.773309pt;}
.x12{left:472.093321pt;}
.x3f{left:480.573321pt;}
.x4a{left:494.173321pt;}
.x3b{left:515.613321pt;}
.x73{left:524.893321pt;}
.x7c{left:527.141333pt;}
.x75{left:529.533321pt;}
.x7e{left:534.981333pt;}
.x53{left:558.653321pt;}
.x13{left:579.773309pt;}
.x14{left:584.093321pt;}
.x6c{left:619.746667pt;}
.x43{left:621.346667pt;}
.x66{left:632.546667pt;}
.x44{left:636.613321pt;}
.x40{left:645.213333pt;}
.x67{left:656.613321pt;}
.x41{left:665.253321pt;}
}




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