
    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_b494682c06af03e4743a3dfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_518ee640852abf0749aa6097.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_66879551d21d71cb7f8fd073.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_e032ad0f4e0e8d50cab1e074.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_1ff1a12a21a6952c22867ec1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_acc28a29be960508fe980238.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_33aa40d007a71084bd3ce7fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_060a0a3792a6c4646e7b32c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.667000;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_48483a5bceaf84fb829b86fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_6071b74b461486de888b0bfc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740000;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_d7045df5fc181399f0ba4463.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.667000;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_24a8f1038d7dcb86fcb86ec7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.106000;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.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);}
.m28{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);}
.md{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);}
.m9{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);}
.m25{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);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m5{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);}
.m1d{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{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);}
.m1a{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);}
.m1e{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);}
.m16{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);}
.m1b{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);}
.m13{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);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m2{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);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m20{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);}
.m26{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);}
.m29{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);}
.m3{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);}
.m19{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);}
.m23{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);}
.m10{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);}
.m1f{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);}
.m27{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);}
.m17{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);}
.m18{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);}
.ma{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);}
.mb{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);}
.m1{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);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.874000px;}
.v5{vertical-align:51.624000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000455px;}
.ls27{letter-spacing:0.000566px;}
.ls23{letter-spacing:0.001036px;}
.ls10{letter-spacing:0.001133px;}
.ls2e{letter-spacing:0.002544px;}
.ls29{letter-spacing:0.002872px;}
.ls19{letter-spacing:0.002963px;}
.lsd{letter-spacing:0.003389px;}
.ls12{letter-spacing:0.004026px;}
.ls2b{letter-spacing:0.004800px;}
.ls17{letter-spacing:0.005516px;}
.ls15{letter-spacing:0.005686px;}
.ls8{letter-spacing:0.005843px;}
.ls21{letter-spacing:0.642088px;}
.ls1b{letter-spacing:0.648088px;}
.ls26{letter-spacing:0.651088px;}
.lse{letter-spacing:2.988600px;}
.ls1{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.954850px;}
.ls1c{letter-spacing:11.957700px;}
.ls25{letter-spacing:13.140196px;}
.ls2a{letter-spacing:13.277133px;}
.ls28{letter-spacing:13.370563px;}
.ls13{letter-spacing:13.444090px;}
.ls16{letter-spacing:13.448400px;}
.lsf{letter-spacing:13.450090px;}
.ls24{letter-spacing:13.454400px;}
.ls7{letter-spacing:13.533654px;}
.ls1e{letter-spacing:13.539897px;}
.ls1d{letter-spacing:13.545921px;}
.ls2d{letter-spacing:14.595153px;}
.lsb{letter-spacing:14.937767px;}
.lsa{letter-spacing:14.992766px;}
.lsc{letter-spacing:15.123227px;}
.ls22{letter-spacing:15.221956px;}
.ls2c{letter-spacing:15.344518px;}
.ls1f{letter-spacing:17.723384px;}
.ls3{letter-spacing:17.929200px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls11{letter-spacing:145.903133px;}
.ls14{letter-spacing:167.503133px;}
.ls18{letter-spacing:197.074090px;}
.ls1a{letter-spacing:199.654090px;}
.ls20{letter-spacing:218.416090px;}
.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;}
}
.ws72{word-spacing:-30.067127px;}
.ws0{word-spacing:-18.984000px;}
.ws4a{word-spacing:-14.943900px;}
.ws7a{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws49{word-spacing:-3.407209px;}
.ws6d{word-spacing:-3.168107px;}
.ws5a{word-spacing:-2.630126px;}
.wsb1{word-spacing:-2.450800px;}
.ws4b{word-spacing:-2.331248px;}
.ws9d{word-spacing:-2.271473px;}
.ws4f{word-spacing:-2.151922px;}
.wsbe{word-spacing:-1.990541px;}
.ws48{word-spacing:-1.972595px;}
.ws4c{word-spacing:-1.853044px;}
.wsb4{word-spacing:-1.793268px;}
.wsbf{word-spacing:-1.775347px;}
.ws4d{word-spacing:-1.733492px;}
.ws4e{word-spacing:-1.673717px;}
.wsc0{word-spacing:-1.667750px;}
.wsb6{word-spacing:-1.613941px;}
.wsde{word-spacing:-1.585792px;}
.wse0{word-spacing:-1.560154px;}
.wsa9{word-spacing:-1.494390px;}
.wsc1{word-spacing:-1.452557px;}
.ws8b{word-spacing:-1.315063px;}
.wsb2{word-spacing:-1.255288px;}
.ws8{word-spacing:-1.171598px;}
.ws55{word-spacing:-1.135736px;}
.wsa{word-spacing:-1.046070px;}
.ws8d{word-spacing:-1.022170px;}
.wsa0{word-spacing:-1.016185px;}
.wscf{word-spacing:-1.010064px;}
.wsd3{word-spacing:-0.914573px;}
.ws56{word-spacing:-0.896634px;}
.ws5f{word-spacing:-0.777083px;}
.ws93{word-spacing:-0.753178px;}
.ws57{word-spacing:-0.717307px;}
.wsaa{word-spacing:-0.657532px;}
.wsa2{word-spacing:-0.597756px;}
.ws94{word-spacing:-0.484186px;}
.ws20{word-spacing:-0.478205px;}
.ws74{word-spacing:-0.418429px;}
.ws75{word-spacing:-0.358654px;}
.wsc4{word-spacing:-0.322790px;}
.ws32{word-spacing:-0.298878px;}
.ws3{word-spacing:-0.292900px;}
.wsbd{word-spacing:-0.268992px;}
.ws26{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.wsd5{word-spacing:-0.161395px;}
.ws42{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.107597px;}
.ws23{word-spacing:-0.059776px;}
.ws78{word-spacing:-0.053798px;}
.ws30{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.wsf8{word-spacing:-0.028550px;}
.wsd2{word-spacing:-0.027418px;}
.wsf0{word-spacing:-0.025987px;}
.wsd1{word-spacing:-0.025440px;}
.wscb{word-spacing:-0.024576px;}
.wsdc{word-spacing:-0.024518px;}
.wsf1{word-spacing:-0.024000px;}
.wse4{word-spacing:-0.023222px;}
.wseb{word-spacing:-0.021571px;}
.wsdb{word-spacing:-0.007248px;}
.wsf6{word-spacing:-0.004330px;}
.ws79{word-spacing:-0.002966px;}
.ws6a{word-spacing:-0.001714px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.053798px;}
.ws31{word-spacing:0.059776px;}
.ws9a{word-spacing:0.095641px;}
.ws1a{word-spacing:0.107597px;}
.ws2d{word-spacing:0.119551px;}
.ws18{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.ws6b{word-spacing:0.180737px;}
.ws1b{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.wsb8{word-spacing:0.268992px;}
.ws37{word-spacing:0.298878px;}
.wsb9{word-spacing:0.322790px;}
.ws33{word-spacing:0.358654px;}
.wsb7{word-spacing:0.376589px;}
.ws61{word-spacing:0.418429px;}
.wsa6{word-spacing:0.478205px;}
.ws87{word-spacing:0.537980px;}
.wsca{word-spacing:0.591782px;}
.ws54{word-spacing:0.597756px;}
.ws3a{word-spacing:0.657532px;}
.ws5d{word-spacing:0.717307px;}
.wsa1{word-spacing:0.836858px;}
.wsf2{word-spacing:0.863810px;}
.ws58{word-spacing:0.896634px;}
.ws9{word-spacing:1.004227px;}
.ws3d{word-spacing:1.016185px;}
.ws1c{word-spacing:1.022170px;}
.wsa8{word-spacing:1.075961px;}
.ws62{word-spacing:1.135736px;}
.ws63{word-spacing:1.195512px;}
.ws68{word-spacing:1.255288px;}
.wsb0{word-spacing:1.315063px;}
.wsa7{word-spacing:1.374839px;}
.wse9{word-spacing:1.398758px;}
.wsab{word-spacing:1.434614px;}
.wsfe{word-spacing:1.452557px;}
.ws22{word-spacing:1.494390px;}
.wsff{word-spacing:1.506355px;}
.ws41{word-spacing:1.554166px;}
.ws6e{word-spacing:1.613941px;}
.ws9f{word-spacing:1.673717px;}
.ws86{word-spacing:1.793268px;}
.wsee{word-spacing:1.829146px;}
.ws80{word-spacing:1.912819px;}
.wsac{word-spacing:2.032370px;}
.wsc9{word-spacing:2.044339px;}
.wsc7{word-spacing:2.062471px;}
.ws67{word-spacing:2.151922px;}
.ws21{word-spacing:2.211697px;}
.ws9b{word-spacing:2.391024px;}
.ws3f{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws2c{word-spacing:2.570351px;}
.ws36{word-spacing:2.630126px;}
.ws29{word-spacing:2.689902px;}
.ws81{word-spacing:2.809453px;}
.ws3b{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws84{word-spacing:2.988780px;}
.ws8c{word-spacing:3.108331px;}
.wsb5{word-spacing:3.168107px;}
.ws1d{word-spacing:3.219667px;}
.wsf9{word-spacing:3.223642px;}
.ws77{word-spacing:3.227882px;}
.wsbc{word-spacing:3.227904px;}
.ws47{word-spacing:3.287658px;}
.wsb3{word-spacing:3.407209px;}
.wsbb{word-spacing:3.550694px;}
.ws1e{word-spacing:3.586536px;}
.ws16{word-spacing:3.658291px;}
.ws46{word-spacing:3.765863px;}
.wsa4{word-spacing:3.885414px;}
.ws3e{word-spacing:4.004965px;}
.ws24{word-spacing:4.064741px;}
.wsa5{word-spacing:4.124516px;}
.ws39{word-spacing:4.184292px;}
.ws38{word-spacing:4.244068px;}
.ws95{word-spacing:4.250074px;}
.ws34{word-spacing:4.303843px;}
.ws51{word-spacing:4.363619px;}
.wsd9{word-spacing:4.411469px;}
.ws9e{word-spacing:4.423394px;}
.ws5e{word-spacing:4.483170px;}
.wsfc{word-spacing:4.626662px;}
.ws60{word-spacing:4.722272px;}
.ws10{word-spacing:4.770079px;}
.ws35{word-spacing:4.841824px;}
.ws11{word-spacing:4.853765px;}
.ws76{word-spacing:4.961375px;}
.wse7{word-spacing:5.003251px;}
.wsaf{word-spacing:5.200477px;}
.ws85{word-spacing:5.260253px;}
.ws45{word-spacing:5.439580px;}
.wsae{word-spacing:5.977560px;}
.ws8a{word-spacing:6.156887px;}
.ws9c{word-spacing:6.216662px;}
.ws88{word-spacing:6.276438px;}
.ws5c{word-spacing:6.336214px;}
.ws14{word-spacing:6.402010px;}
.ws52{word-spacing:6.515540px;}
.ws3c{word-spacing:6.635092px;}
.ws1f{word-spacing:6.993745px;}
.ws40{word-spacing:7.053521px;}
.wsba{word-spacing:7.101389px;}
.ws53{word-spacing:7.113296px;}
.ws28{word-spacing:7.352399px;}
.ws27{word-spacing:7.412174px;}
.wsa3{word-spacing:7.531726px;}
.wse{word-spacing:7.782761px;}
.ws5b{word-spacing:7.890379px;}
.ws43{word-spacing:8.009930px;}
.ws44{word-spacing:8.069706px;}
.ws64{word-spacing:8.129482px;}
.ws6f{word-spacing:9.026116px;}
.ws59{word-spacing:9.324994px;}
.wsad{word-spacing:10.161852px;}
.ws4{word-spacing:10.418857px;}
.wsdf{word-spacing:11.835648px;}
.wsc{word-spacing:12.176255px;}
.wscc{word-spacing:12.373632px;}
.wsc3{word-spacing:12.911616px;}
.wsfa{word-spacing:13.180608px;}
.wsf7{word-spacing:13.288205px;}
.wsd7{word-spacing:13.342003px;}
.wsc6{word-spacing:13.386000px;}
.wsef{word-spacing:13.386202px;}
.wse6{word-spacing:13.387469px;}
.wse2{word-spacing:13.388986px;}
.wsc5{word-spacing:13.392336px;}
.wse5{word-spacing:13.392566px;}
.wsd8{word-spacing:13.392749px;}
.wse3{word-spacing:13.393114px;}
.wsd4{word-spacing:13.393498px;}
.wsc2{word-spacing:13.395802px;}
.wsfd{word-spacing:13.610995px;}
.wsf5{word-spacing:13.664794px;}
.wsf4{word-spacing:13.772390px;}
.wsf3{word-spacing:14.256576px;}
.ws100{word-spacing:14.525568px;}
.wsea{word-spacing:14.580134px;}
.ws73{word-spacing:14.645022px;}
.ws70{word-spacing:14.704798px;}
.ws2e{word-spacing:14.776565px;}
.ws89{word-spacing:14.884124px;}
.ws71{word-spacing:15.003676px;}
.ws6c{word-spacing:15.063451px;}
.wsc8{word-spacing:15.440141px;}
.ws7{word-spacing:15.481836px;}
.wsd{word-spacing:16.109478px;}
.ws69{word-spacing:16.139412px;}
.wsfb{word-spacing:16.462310px;}
.wse1{word-spacing:16.616467px;}
.wsed{word-spacing:16.619837px;}
.wsd6{word-spacing:16.619846px;}
.wsdd{word-spacing:16.619914px;}
.wsd0{word-spacing:16.623706px;}
.wsec{word-spacing:16.785101px;}
.ws66{word-spacing:17.036046px;}
.wse8{word-spacing:18.399053px;}
.ws50{word-spacing:18.470660px;}
.wsce{word-spacing:20.335795px;}
.ws65{word-spacing:23.013606px;}
.wscd{word-spacing:24.476290px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.wsda{word-spacing:48.418560px;}
.ws7c{word-spacing:86.023642px;}
.ws92{word-spacing:90.704102px;}
.ws97{word-spacing:112.062067px;}
.ws7b{word-spacing:118.141286px;}
.ws8e{word-spacing:118.948262px;}
.ws8f{word-spacing:133.904218px;}
.ws90{word-spacing:147.353818px;}
.ws91{word-spacing:160.803418px;}
.ws96{word-spacing:219.512573px;}
.ws99{word-spacing:219.871738px;}
.ws7d{word-spacing:338.069146px;}
.ws98{word-spacing:347.614291px;}
.ws7f{word-spacing:351.518746px;}
.ws82{word-spacing:604.237325px;}
.ws7e{word-spacing:614.730586px;}
.ws83{word-spacing:622.228454px;}
._9{margin-left:-8.570726px;}
._2{margin-left:-7.353600px;}
._4{margin-left:-5.397721px;}
._3{margin-left:-4.284000px;}
._f{margin-left:-3.066509px;}
._1{margin-left:-1.996800px;}
._6{width:2.301354px;}
._a{width:3.677130px;}
._0{width:5.587200px;}
._8{width:10.165172px;}
._14{width:11.387079px;}
._5{width:12.803897px;}
._1d{width:14.029277px;}
._e{width:15.506458px;}
._c{width:16.677504px;}
._7e{width:17.689133px;}
._12{width:18.709763px;}
._1c{width:19.732603px;}
._17{width:20.777704px;}
._1b{width:22.548241px;}
._10{width:23.748830px;}
._11{width:25.882835px;}
._13{width:27.102552px;}
._d{width:29.057395px;}
._7{width:30.587087px;}
._1e{width:31.962293px;}
._18{width:33.396907px;}
._21{width:36.248219px;}
._5f{width:37.862160px;}
._19{width:39.697286px;}
._1f{width:40.928369px;}
._1a{width:44.019047px;}
._20{width:47.881457px;}
._b{width:54.423634px;}
._7d{width:61.437773px;}
._7c{width:88.767360px;}
._26{width:99.473242px;}
._69{width:104.153702px;}
._25{width:108.618970px;}
._31{width:112.869043px;}
._61{width:117.459788px;}
._30{width:122.122368px;}
._29{width:124.919885px;}
._63{width:127.932595px;}
._4f{width:130.192128px;}
._79{width:132.774451px;}
._68{width:134.011814px;}
._60{width:136.325146px;}
._2d{width:138.369485px;}
._75{width:139.553050px;}
._4c{width:146.493043px;}
._62{width:150.420326px;}
._6e{width:155.262182px;}
._64{width:156.338150px;}
._67{width:160.803418px;}
._66{width:174.253018px;}
._65{width:210.725405px;}
._5a{width:212.025754px;}
._5c{width:216.968947px;}
._6a{width:224.613178px;}
._77{width:228.374208px;}
._40{width:231.010330px;}
._78{width:233.397110px;}
._24{width:236.766758px;}
._57{width:238.440768px;}
._27{width:243.868147px;}
._48{width:250.216358px;}
._28{width:253.121472px;}
._6d{width:255.165811px;}
._4e{width:258.393715px;}
._35{width:261.998208px;}
._2c{width:266.571072px;}
._72{width:267.916032px;}
._58{width:271.897114px;}
._4b{width:274.694630px;}
._7a{width:284.485939px;}
._53{width:287.767642px;}
._5e{width:288.897408px;}
._2f{width:290.941747px;}
._54{width:295.084224px;}
._55{width:296.321587px;}
._73{width:303.261581px;}
._3e{width:304.678220px;}
._74{width:321.248128px;}
._76{width:324.189158px;}
._4a{width:327.632256px;}
._41{width:349.904794px;}
._23{width:351.518746px;}
._42{width:355.607424px;}
._6f{width:360.180288px;}
._2a{width:362.170829px;}
._47{width:364.968346px;}
._70{width:372.392525px;}
._5d{width:377.664768px;}
._52{width:378.794534px;}
._71{width:383.528794px;}
._39{width:386.971891px;}
._2b{width:399.022733px;}
._5b{width:407.361485px;}
._33{width:409.244429px;}
._6b{width:414.785664px;}
._56{width:417.959770px;}
._37{width:421.994650px;}
._15{width:432.899843px;}
._50{width:439.586726px;}
._6c{width:449.485632px;}
._59{width:476.384832px;}
._3b{width:478.751962px;}
._4d{width:484.508390px;}
._51{width:489.081254px;}
._38{width:490.264819px;}
._2e{width:496.720627px;}
._36{width:499.063945px;}
._3f{width:504.091008px;}
._43{width:527.439514px;}
._3c{width:542.825978px;}
._22{width:548.205696px;}
._45{width:583.551367px;}
._32{width:595.494490px;}
._46{width:604.317427px;}
._34{width:605.500992px;}
._3d{width:608.782694px;}
._49{width:614.808115px;}
._44{width:620.080481px;}
._3a{width:707.018573px;}
._7b{width:2009.333536px;}
._16{width:2033.243536px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(40,82,46);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs8{font-size:45.429600px;}
.fsa{font-size:47.820600px;}
.fsb{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs4{font-size:56.694600px;}
.fs6{font-size:59.775600px;}
.fs5{font-size:60.474240px;}
.fsc{font-size:62.286600px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs7{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y35{bottom:6.350457px;}
.yc{bottom:8.040000px;}
.y34{bottom:20.308195px;}
.y62{bottom:31.890000px;}
.y33{bottom:37.114269px;}
.y13a{bottom:91.953000px;}
.y192{bottom:96.970500px;}
.y13{bottom:99.795000px;}
.y109{bottom:103.909500px;}
.y31{bottom:104.646000px;}
.yc8{bottom:104.952000px;}
.yd3{bottom:107.193000px;}
.y99{bottom:107.641500px;}
.y139{bottom:110.782500px;}
.y61{bottom:111.480000px;}
.y17{bottom:113.670000px;}
.y1c4{bottom:114.411000px;}
.y191{bottom:115.800000px;}
.y163{bottom:119.653500px;}
.y1fa{bottom:121.762500px;}
.y30{bottom:122.535000px;}
.y108{bottom:122.739000px;}
.yc7{bottom:123.781500px;}
.yd2{bottom:126.022500px;}
.y98{bottom:126.471000px;}
.y138{bottom:129.612000px;}
.y60{bottom:130.309500px;}
.y1c3{bottom:131.671500px;}
.y190{bottom:134.629500px;}
.y16{bottom:135.750000px;}
.y162{bottom:138.483000px;}
.y1f9{bottom:139.023000px;}
.y2f{bottom:140.422500px;}
.y107{bottom:141.568500px;}
.yc6{bottom:142.611000px;}
.yd1{bottom:144.852000px;}
.y97{bottom:145.300500px;}
.y137{bottom:148.441500px;}
.y1c2{bottom:148.932000px;}
.y5f{bottom:149.139000px;}
.y18f{bottom:153.459000px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y1f8{bottom:156.283500px;}
.y161{bottom:157.312500px;}
.y15{bottom:157.830000px;}
.y2e{bottom:158.310000px;}
.y106{bottom:160.398000px;}
.yc5{bottom:161.440500px;}
.yd0{bottom:163.681500px;}
.y96{bottom:164.130000px;}
.y1c1{bottom:166.192500px;}
.y136{bottom:167.271000px;}
.y5e{bottom:167.968500px;}
.y18e{bottom:172.288500px;}
.y1f7{bottom:173.544000px;}
.y160{bottom:176.142000px;}
.y2d{bottom:176.199000px;}
.y105{bottom:179.227500px;}
.yc4{bottom:180.268500px;}
.ycf{bottom:182.511000px;}
.y95{bottom:182.959500px;}
.y1c0{bottom:183.453000px;}
.y135{bottom:186.100500px;}
.y5d{bottom:186.798000px;}
.y1f6{bottom:190.804500px;}
.y18d{bottom:191.118000px;}
.y2c{bottom:194.086500px;}
.y15f{bottom:194.971500px;}
.y104{bottom:198.057000px;}
.yc3{bottom:199.098000px;}
.y1bf{bottom:200.713500px;}
.yce{bottom:201.340500px;}
.y94{bottom:201.789000px;}
.y134{bottom:204.930000px;}
.y5c{bottom:205.627500px;}
.y1f5{bottom:208.065000px;}
.y18c{bottom:209.947500px;}
.y2b{bottom:211.974000px;}
.y103{bottom:216.886500px;}
.yc2{bottom:217.927500px;}
.y1be{bottom:217.972500px;}
.ycd{bottom:220.170000px;}
.y93{bottom:220.618500px;}
.y133{bottom:223.759500px;}
.y5b{bottom:224.457000px;}
.y193{bottom:224.652000px;}
.y1f4{bottom:225.325500px;}
.y18b{bottom:228.777000px;}
.y2a{bottom:229.863000px;}
.y15e{bottom:235.104000px;}
.y1bd{bottom:235.233000px;}
.yc1{bottom:236.757000px;}
.ycc{bottom:238.999500px;}
.y92{bottom:239.446500px;}
.y1f3{bottom:242.586000px;}
.y132{bottom:242.589000px;}
.y5a{bottom:243.286500px;}
.y18a{bottom:247.606500px;}
.y1bc{bottom:252.493500px;}
.yc0{bottom:255.586500px;}
.y15d{bottom:256.936500px;}
.ycb{bottom:257.829000px;}
.y91{bottom:258.276000px;}
.y1f2{bottom:259.846500px;}
.y59{bottom:262.116000px;}
.y102{bottom:265.336500px;}
.y131{bottom:265.902000px;}
.y189{bottom:266.436000px;}
.y1bb{bottom:269.754000px;}
.y15c{bottom:273.375000px;}
.ybf{bottom:274.416000px;}
.yca{bottom:276.658500px;}
.y90{bottom:277.105500px;}
.y58{bottom:280.945500px;}
.y101{bottom:281.775000px;}
.y188{bottom:285.265500px;}
.y130{bottom:286.075500px;}
.y1ba{bottom:287.014500px;}
.y15b{bottom:289.813500px;}
.ybe{bottom:293.245500px;}
.y1f1{bottom:294.366000px;}
.y8f{bottom:295.935000px;}
.y100{bottom:298.213500px;}
.y57{bottom:299.775000px;}
.yc9{bottom:299.970000px;}
.y29{bottom:300.154500px;}
.y187{bottom:304.095000px;}
.y1b9{bottom:304.275000px;}
.y15a{bottom:306.252000px;}
.y1f0{bottom:311.626500px;}
.ybd{bottom:312.075000px;}
.yff{bottom:314.652000px;}
.y8e{bottom:314.764500px;}
.y28{bottom:318.043500px;}
.y56{bottom:318.604500px;}
.y12f{bottom:319.699500px;}
.y1b8{bottom:321.535500px;}
.y186{bottom:322.924500px;}
.y1ef{bottom:328.887000px;}
.y159{bottom:330.087000px;}
.ybc{bottom:330.904500px;}
.yfe{bottom:331.090500px;}
.y8d{bottom:333.594000px;}
.y27{bottom:335.931000px;}
.y55{bottom:337.434000px;}
.y12e{bottom:338.529000px;}
.y1b7{bottom:338.796000px;}
.y185{bottom:341.754000px;}
.ya{bottom:344.680500px;}
.y1ee{bottom:346.147500px;}
.yfd{bottom:347.529000px;}
.ybb{bottom:349.734000px;}
.y8c{bottom:352.423500px;}
.y26{bottom:353.818500px;}
.y158{bottom:353.922000px;}
.y1b6{bottom:356.056500px;}
.y54{bottom:356.263500px;}
.y12d{bottom:357.358500px;}
.y184{bottom:360.582000px;}
.y1ed{bottom:363.408000px;}
.yfc{bottom:363.967500px;}
.yba{bottom:368.563500px;}
.y8b{bottom:371.253000px;}
.y1b5{bottom:373.315500px;}
.y53{bottom:375.093000px;}
.y12c{bottom:376.188000px;}
.yfb{bottom:380.406000px;}
.y1ec{bottom:380.668500px;}
.y25{bottom:380.673000px;}
.y183{bottom:383.895000px;}
.yd{bottom:386.490000px;}
.yb9{bottom:387.393000px;}
.y157{bottom:388.531500px;}
.y8a{bottom:390.082500px;}
.y1b4{bottom:390.576000px;}
.y52{bottom:393.922500px;}
.y12b{bottom:395.017500px;}
.y9{bottom:395.689500px;}
.yfa{bottom:396.844500px;}
.y1eb{bottom:397.929000px;}
.y24{bottom:398.562000px;}
.yb8{bottom:406.222500px;}
.y156{bottom:407.763000px;}
.y1b3{bottom:407.836500px;}
.y89{bottom:408.912000px;}
.yf9{bottom:413.281500px;}
.y12a{bottom:413.847000px;}
.y1ea{bottom:415.188000px;}
.y23{bottom:416.449500px;}
.y51{bottom:417.235500px;}
.y182{bottom:417.519000px;}
.yb7{bottom:425.052000px;}
.y1b2{bottom:425.097000px;}
.y155{bottom:426.996000px;}
.y88{bottom:427.741500px;}
.yf8{bottom:429.720000px;}
.y1e9{bottom:432.448500px;}
.y129{bottom:432.676500px;}
.yb{bottom:434.850000px;}
.y181{bottom:436.348500px;}
.y1b1{bottom:442.357500px;}
.yb6{bottom:443.881500px;}
.y22{bottom:444.798000px;}
.yf7{bottom:446.158500px;}
.y154{bottom:446.229000px;}
.y87{bottom:446.571000px;}
.y8{bottom:446.698500px;}
.y1e8{bottom:449.709000px;}
.y128{bottom:451.506000px;}
.y180{bottom:455.178000px;}
.y1b0{bottom:459.618000px;}
.yf6{bottom:462.597000px;}
.y21{bottom:462.685500px;}
.yb5{bottom:462.711000px;}
.y86{bottom:465.400500px;}
.y1e7{bottom:466.969500px;}
.y127{bottom:470.335500px;}
.y17f{bottom:474.007500px;}
.y1af{bottom:476.878500px;}
.yf5{bottom:479.035500px;}
.y20{bottom:480.574500px;}
.yb4{bottom:481.540500px;}
.y153{bottom:483.333000px;}
.y85{bottom:484.230000px;}
.y10{bottom:488.055000px;}
.y126{bottom:489.165000px;}
.y50{bottom:492.385500px;}
.y17e{bottom:492.837000px;}
.y1ae{bottom:494.139000px;}
.yf4{bottom:495.474000px;}
.y7{bottom:497.707500px;}
.yb3{bottom:500.370000px;}
.y1e6{bottom:501.490500px;}
.y152{bottom:502.162500px;}
.y84{bottom:503.059500px;}
.y1f{bottom:507.429000px;}
.y125{bottom:507.994500px;}
.y1ad{bottom:511.398000px;}
.y17d{bottom:511.666500px;}
.yf3{bottom:511.912500px;}
.y1e5{bottom:518.751000px;}
.yb2{bottom:519.199500px;}
.y151{bottom:520.992000px;}
.y83{bottom:521.889000px;}
.y1e{bottom:525.316500px;}
.yf2{bottom:528.351000px;}
.y1ac{bottom:528.658500px;}
.y4f{bottom:529.774500px;}
.y17c{bottom:530.496000px;}
.y1e4{bottom:536.011500px;}
.y11{bottom:538.230000px;}
.y150{bottom:539.821500px;}
.y82{bottom:540.718500px;}
.yb1{bottom:542.512500px;}
.y1d{bottom:543.204000px;}
.yf1{bottom:544.789500px;}
.y1ab{bottom:545.919000px;}
.y6{bottom:548.716500px;}
.y4e{bottom:549.232500px;}
.y17b{bottom:549.325500px;}
.y1e3{bottom:553.272000px;}
.y124{bottom:556.444500px;}
.y14f{bottom:558.651000px;}
.y81{bottom:559.548000px;}
.y1c{bottom:561.093000px;}
.yf0{bottom:561.228000px;}
.y1aa{bottom:563.179500px;}
.y17a{bottom:568.155000px;}
.y4d{bottom:568.689000px;}
.y1e2{bottom:570.531000px;}
.y123{bottom:572.883000px;}
.yb0{bottom:576.136500px;}
.y14e{bottom:577.480500px;}
.yef{bottom:577.665000px;}
.y80{bottom:578.377500px;}
.y1b{bottom:578.980500px;}
.y1a9{bottom:580.440000px;}
.y179{bottom:586.984500px;}
.y1e1{bottom:587.791500px;}
.y4c{bottom:588.145500px;}
.y122{bottom:589.321500px;}
.y18{bottom:589.605000px;}
.yee{bottom:594.103500px;}
.yaf{bottom:594.964500px;}
.y14d{bottom:596.310000px;}
.y1a{bottom:596.868000px;}
.y7f{bottom:597.207000px;}
.y1a8{bottom:597.700500px;}
.y5{bottom:599.725500px;}
.y1e0{bottom:605.052000px;}
.y121{bottom:605.760000px;}
.y178{bottom:605.814000px;}
.y4b{bottom:607.603500px;}
.yed{bottom:610.542000px;}
.yae{bottom:613.794000px;}
.y19{bottom:614.757000px;}
.y1a7{bottom:614.961000px;}
.y14c{bottom:615.139500px;}
.y7e{bottom:616.036500px;}
.y120{bottom:622.198500px;}
.y1df{bottom:622.312500px;}
.yec{bottom:626.980500px;}
.y4a{bottom:627.060000px;}
.ye{bottom:631.920000px;}
.y1a6{bottom:632.221500px;}
.yad{bottom:632.623500px;}
.y14b{bottom:633.969000px;}
.y7d{bottom:634.866000px;}
.y11f{bottom:638.637000px;}
.y1de{bottom:639.573000px;}
.yeb{bottom:643.419000px;}
.y177{bottom:645.946500px;}
.y49{bottom:646.516500px;}
.yac{bottom:651.453000px;}
.y14a{bottom:652.798500px;}
.y7c{bottom:653.695500px;}
.y1a5{bottom:653.964000px;}
.y11e{bottom:655.075500px;}
.y1dd{bottom:656.833500px;}
.yea{bottom:659.857500px;}
.y176{bottom:660.144000px;}
.y48{bottom:665.974500px;}
.yab{bottom:670.282500px;}
.y11d{bottom:671.514000px;}
.y149{bottom:671.628000px;}
.y7b{bottom:672.525000px;}
.y1dc{bottom:674.094000px;}
.ye9{bottom:676.296000px;}
.y175{bottom:681.976500px;}
.y47{bottom:685.431000px;}
.y1a4{bottom:687.588000px;}
.y11c{bottom:687.952500px;}
.yaa{bottom:689.112000px;}
.y148{bottom:690.457500px;}
.y7a{bottom:691.354500px;}
.ye8{bottom:692.734500px;}
.y174{bottom:698.415000px;}
.y11b{bottom:704.391000px;}
.y46{bottom:704.889000px;}
.y1a3{bottom:705.162000px;}
.ya9{bottom:707.941500px;}
.y1db{bottom:708.613500px;}
.ye7{bottom:709.173000px;}
.y79{bottom:710.184000px;}
.y147{bottom:713.770500px;}
.y173{bottom:714.853500px;}
.y11a{bottom:720.828000px;}
.y1a2{bottom:722.736000px;}
.y45{bottom:724.345500px;}
.ye6{bottom:725.611500px;}
.y1da{bottom:725.874000px;}
.y78{bottom:729.013500px;}
.ya8{bottom:731.254500px;}
.y172{bottom:731.292000px;}
.y119{bottom:737.266500px;}
.ye5{bottom:742.048500px;}
.y1d9{bottom:743.134500px;}
.y44{bottom:743.802000px;}
.y146{bottom:747.394500px;}
.y77{bottom:747.843000px;}
.y1a1{bottom:749.277000px;}
.y118{bottom:753.705000px;}
.y171{bottom:754.932000px;}
.ye4{bottom:758.487000px;}
.y1d8{bottom:760.395000px;}
.y43{bottom:763.260000px;}
.ya7{bottom:764.878500px;}
.y145{bottom:766.224000px;}
.y76{bottom:766.671000px;}
.y1a0{bottom:766.851000px;}
.y117{bottom:770.143500px;}
.ye3{bottom:774.925500px;}
.y1d7{bottom:777.655500px;}
.y4{bottom:778.225500px;}
.y170{bottom:778.573500px;}
.y42{bottom:782.716500px;}
.ya6{bottom:783.708000px;}
.y19f{bottom:784.425000px;}
.y144{bottom:785.053500px;}
.y75{bottom:785.500500px;}
.y116{bottom:786.582000px;}
.ye2{bottom:791.364000px;}
.y1d6{bottom:794.916000px;}
.y16f{bottom:795.012000px;}
.y41{bottom:802.173000px;}
.ya5{bottom:802.537500px;}
.y115{bottom:803.020500px;}
.y143{bottom:803.883000px;}
.y74{bottom:804.330000px;}
.ye1{bottom:807.802500px;}
.y19e{bottom:810.966000px;}
.y16e{bottom:811.449000px;}
.y1d5{bottom:812.176500px;}
.y12{bottom:815.670000px;}
.y114{bottom:819.459000px;}
.ya4{bottom:821.367000px;}
.y40{bottom:821.631000px;}
.y142{bottom:822.712500px;}
.y73{bottom:823.159500px;}
.ye0{bottom:824.241000px;}
.y16d{bottom:827.887500px;}
.y1d4{bottom:829.437000px;}
.y113{bottom:835.897500px;}
.y19d{bottom:837.507000px;}
.ya3{bottom:840.196500px;}
.ydf{bottom:840.679500px;}
.y3f{bottom:841.087500px;}
.y141{bottom:841.540500px;}
.y72{bottom:841.989000px;}
.y16c{bottom:844.326000px;}
.y1d3{bottom:846.697500px;}
.y112{bottom:852.336000px;}
.y19c{bottom:855.081000px;}
.yde{bottom:857.118000px;}
.ya2{bottom:859.026000px;}
.y140{bottom:860.370000px;}
.y3e{bottom:860.545500px;}
.y16b{bottom:860.764500px;}
.y71{bottom:860.818500px;}
.y1d2{bottom:863.956500px;}
.y111{bottom:868.774500px;}
.y19b{bottom:872.655000px;}
.ydd{bottom:873.556500px;}
.y16a{bottom:877.203000px;}
.ya1{bottom:877.855500px;}
.y13f{bottom:879.199500px;}
.y70{bottom:879.648000px;}
.y1d1{bottom:881.217000px;}
.y110{bottom:885.211500px;}
.ydc{bottom:889.995000px;}
.y169{bottom:893.641500px;}
.ya0{bottom:896.685000px;}
.y13e{bottom:898.029000px;}
.y6f{bottom:898.477500px;}
.y3d{bottom:899.130000px;}
.y19a{bottom:899.196000px;}
.y10f{bottom:901.650000px;}
.y3{bottom:905.716500px;}
.ydb{bottom:906.433500px;}
.y3c{bottom:915.270000px;}
.y9f{bottom:915.514500px;}
.y1d0{bottom:915.738000px;}
.y199{bottom:916.770000px;}
.y13d{bottom:916.858500px;}
.y168{bottom:917.281500px;}
.y6e{bottom:917.307000px;}
.y10e{bottom:918.088500px;}
.yda{bottom:922.870500px;}
.y1cf{bottom:932.998500px;}
.y9e{bottom:934.344000px;}
.y13c{bottom:935.688000px;}
.y3b{bottom:935.749500px;}
.y6d{bottom:936.136500px;}
.yd9{bottom:939.309000px;}
.y167{bottom:940.923000px;}
.y10d{bottom:941.730000px;}
.y198{bottom:943.309500px;}
.y1ce{bottom:950.259000px;}
.y3a{bottom:951.888000px;}
.y9d{bottom:953.173500px;}
.y6c{bottom:954.966000px;}
.yd8{bottom:955.747500px;}
.y166{bottom:957.361500px;}
.y10c{bottom:958.168500px;}
.y13b{bottom:959.001000px;}
.y197{bottom:960.883500px;}
.y2{bottom:964.228500px;}
.y1cd{bottom:967.519500px;}
.y9c{bottom:972.003000px;}
.y6b{bottom:973.795500px;}
.y196{bottom:978.457500px;}
.yd7{bottom:979.389000px;}
.y1cc{bottom:984.780000px;}
.y1{bottom:989.716500px;}
.y165{bottom:991.969500px;}
.y6a{bottom:992.625000px;}
.y10b{bottom:992.776500px;}
.y9b{bottom:995.314500px;}
.yd6{bottom:995.827500px;}
.y195{bottom:996.033000px;}
.y39{bottom:996.565500px;}
.y1ca{bottom:1002.039000px;}
.y1cb{bottom:1002.040500px;}
.y164{bottom:1011.202500px;}
.y69{bottom:1011.454500px;}
.y10a{bottom:1012.009500px;}
.y194{bottom:1013.607000px;}
.y9a{bottom:1015.489500px;}
.y1c9{bottom:1019.299500px;}
.y68{bottom:1030.284000px;}
.yd5{bottom:1030.435500px;}
.y38{bottom:1036.485000px;}
.y1c8{bottom:1036.560000px;}
.y67{bottom:1049.113500px;}
.yd4{bottom:1049.668500px;}
.y1c7{bottom:1053.820500px;}
.y37{bottom:1064.728500px;}
.y66{bottom:1067.943000px;}
.y1c6{bottom:1071.081000px;}
.y65{bottom:1086.772500px;}
.y1c5{bottom:1088.341500px;}
.y36{bottom:1092.972000px;}
.y64{bottom:1105.602000px;}
.y32{bottom:1136.460000px;}
.y63{bottom:1168.366500px;}
.h20{height:18.872840px;}
.h11{height:26.110157px;}
.h1a{height:27.974981px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h4{height:33.000000px;}
.h12{height:34.813397px;}
.h19{height:35.052500px;}
.h13{height:38.896243px;}
.h14{height:39.165235px;}
.hc{height:39.402747px;}
.h15{height:39.434227px;}
.hd{height:41.001535px;}
.h17{height:43.217759px;}
.h18{height:43.516637px;}
.he{height:43.815515px;}
.h22{height:49.002344px;}
.h21{height:49.985558px;}
.h16{height:49.991558px;}
.hb{height:50.931027px;}
.h10{height:54.541601px;}
.h1b{height:54.768749px;}
.h1f{height:54.774749px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h1c{height:71.770243px;}
.h1d{height:72.039235px;}
.h1e{height:72.045235px;}
.hf{height:77.792486px;}
.h23{height:81.876344px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:215.864690px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:53.574000px;}
.xb{left:59.014071px;}
.x92{left:62.541000px;}
.xa6{left:64.122000px;}
.xa4{left:65.877000px;}
.x91{left:67.389000px;}
.x7d{left:70.605000px;}
.xa3{left:71.914500px;}
.x85{left:75.379500px;}
.x95{left:77.631000px;}
.x98{left:80.221500px;}
.x81{left:82.372500px;}
.x8e{left:85.687500px;}
.xb0{left:86.707500px;}
.x7b{left:91.827000px;}
.x93{left:97.356000px;}
.x94{left:98.773500px;}
.x7e{left:100.422000px;}
.xaf{left:103.990500px;}
.x89{left:106.621500px;}
.x7f{left:109.392000px;}
.xa7{left:110.817000px;}
.x83{left:111.948000px;}
.x86{left:115.384500px;}
.xa2{left:119.526000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x8b{left:129.318000px;}
.xa1{left:130.998000px;}
.x88{left:132.210000px;}
.x80{left:133.809000px;}
.x8f{left:135.658500px;}
.x87{left:139.458000px;}
.x96{left:141.745500px;}
.x8c{left:145.182000px;}
.x7c{left:146.680500px;}
.x90{left:151.219500px;}
.x8d{left:153.654000px;}
.x9a{left:155.362500px;}
.x82{left:158.517000px;}
.x84{left:161.004000px;}
.x9b{left:163.330500px;}
.x97{left:164.494500px;}
.x99{left:166.680000px;}
.xa5{left:168.556500px;}
.x5{left:174.105000px;}
.x8a{left:186.390000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.xaa{left:207.699000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xab{left:227.866500px;}
.xe{left:248.526000px;}
.xc{left:249.591000px;}
.xd{left:269.914500px;}
.x10{left:278.805000px;}
.x12{left:281.479500px;}
.x11{left:292.539000px;}
.x25{left:299.322000px;}
.x75{left:300.537000px;}
.xa9{left:302.094000px;}
.xf{left:311.529000px;}
.x67{left:312.903000px;}
.x26{left:314.265000px;}
.xac{left:318.322500px;}
.x27{left:321.588000px;}
.x6a{left:324.583500px;}
.x64{left:326.202000px;}
.x59{left:328.015500px;}
.x49{left:332.854500px;}
.x28{left:336.532500px;}
.x5e{left:339.469500px;}
.x40{left:340.678500px;}
.x5a{left:342.960000px;}
.x60{left:346.615500px;}
.x4a{left:347.799000px;}
.x72{left:351.471000px;}
.x5f{left:354.414000px;}
.x41{left:355.623000px;}
.x42{left:359.418000px;}
.x61{left:361.560000px;}
.x3a{left:363.124500px;}
.x62{left:365.370000px;}
.x76{left:372.399000px;}
.x43{left:374.362500px;}
.x3b{left:378.069000px;}
.x63{left:380.314500px;}
.x34{left:390.544500px;}
.xb1{left:392.421000px;}
.x73{left:394.036500px;}
.x4c{left:400.677000px;}
.x35{left:405.487500px;}
.x74{left:408.981000px;}
.x53{left:414.081000px;}
.x4d{left:415.621500px;}
.xbe{left:423.457500px;}
.xc1{left:426.160500px;}
.xc8{left:427.993500px;}
.x54{left:429.024000px;}
.xc7{left:433.692000px;}
.x1d{left:437.928000px;}
.xc2{left:441.103500px;}
.x1e{left:445.401000px;}
.x2b{left:447.184500px;}
.x3c{left:449.056500px;}
.x13{left:454.486500px;}
.x9c{left:457.689000px;}
.x5b{left:459.832500px;}
.x14{left:461.958000px;}
.x3d{left:464.001000px;}
.x77{left:468.490500px;}
.x5c{left:474.775500px;}
.xad{left:484.747500px;}
.xae{left:492.138000px;}
.xc6{left:493.546500px;}
.x36{left:495.169500px;}
.x23{left:501.382500px;}
.xba{left:507.891000px;}
.x37{left:510.114000px;}
.x55{left:512.620500px;}
.x38{left:513.820500px;}
.x24{left:516.327000px;}
.xbb{left:522.835500px;}
.x56{left:527.565000px;}
.x39{left:528.763500px;}
.x1b{left:534.454500px;}
.x30{left:535.668000px;}
.x9e{left:539.592000px;}
.x1c{left:541.926000px;}
.x3e{left:548.953500px;}
.x31{left:550.612500px;}
.x9d{left:558.286500px;}
.x3f{left:563.896500px;}
.xbf{left:567.243000px;}
.x78{left:569.086500px;}
.x70{left:579.156000px;}
.xa8{left:581.167500px;}
.xc0{left:582.187500px;}
.xc4{left:585.514500px;}
.x71{left:592.732500px;}
.x6e{left:597.586500px;}
.x68{left:598.930500px;}
.xc5{left:600.457500px;}
.x15{left:605.263500px;}
.x6f{left:611.320500px;}
.x16{left:612.735000px;}
.x69{left:613.785000px;}
.x17{left:616.396500px;}
.xb7{left:617.659500px;}
.x57{left:619.474500px;}
.x18{left:623.868000px;}
.x45{left:628.051500px;}
.x5d{left:631.966500px;}
.x4b{left:637.819500px;}
.x46{left:642.249000px;}
.xbd{left:646.117500px;}
.x9f{left:648.022500px;}
.x47{left:649.489500px;}
.x79{left:653.424000px;}
.xa0{left:659.917500px;}
.x29{left:661.815000px;}
.x48{left:663.685500px;}
.x7a{left:665.319000px;}
.x65{left:666.703500px;}
.x2c{left:669.726000px;}
.xb2{left:674.200500px;}
.x1f{left:675.210000px;}
.x2a{left:676.758000px;}
.x66{left:680.010000px;}
.x20{left:682.681500px;}
.x2d{left:684.670500px;}
.x2e{left:688.480500px;}
.x21{left:690.042000px;}
.x2f{left:703.425000px;}
.x22{left:704.986500px;}
.xc9{left:711.381000px;}
.x4e{left:714.967500px;}
.xbc{left:719.512500px;}
.xb3{left:723.646500px;}
.x4f{left:729.910500px;}
.xb4{left:738.589500px;}
.xb5{left:742.251000px;}
.x50{left:744.432000px;}
.x51{left:748.242000px;}
.xb6{left:757.195500px;}
.x6b{left:758.740500px;}
.x52{left:763.186500px;}
.xb8{left:775.177500px;}
.x6c{left:783.459000px;}
.xb9{left:790.120500px;}
.x6d{left:798.403500px;}
.x32{left:813.006000px;}
.x58{left:816.951000px;}
.x44{left:818.397000px;}
.x19{left:825.300000px;}
.x33{left:827.949000px;}
.x1a{left:832.773000px;}
.xc3{left:833.862000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.221333pt;}
.v5{vertical-align:45.888000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000405pt;}
.ls27{letter-spacing:0.000503pt;}
.ls23{letter-spacing:0.000921pt;}
.ls10{letter-spacing:0.001007pt;}
.ls2e{letter-spacing:0.002262pt;}
.ls29{letter-spacing:0.002553pt;}
.ls19{letter-spacing:0.002633pt;}
.lsd{letter-spacing:0.003012pt;}
.ls12{letter-spacing:0.003578pt;}
.ls2b{letter-spacing:0.004267pt;}
.ls17{letter-spacing:0.004903pt;}
.ls15{letter-spacing:0.005055pt;}
.ls8{letter-spacing:0.005193pt;}
.ls21{letter-spacing:0.570745pt;}
.ls1b{letter-spacing:0.576078pt;}
.ls26{letter-spacing:0.578745pt;}
.lse{letter-spacing:2.656533pt;}
.ls1{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:10.629067pt;}
.ls25{letter-spacing:11.680174pt;}
.ls2a{letter-spacing:11.801896pt;}
.ls28{letter-spacing:11.884945pt;}
.ls13{letter-spacing:11.950302pt;}
.ls16{letter-spacing:11.954133pt;}
.lsf{letter-spacing:11.955635pt;}
.ls24{letter-spacing:11.959467pt;}
.ls7{letter-spacing:12.029915pt;}
.ls1e{letter-spacing:12.035464pt;}
.ls1d{letter-spacing:12.040819pt;}
.ls2d{letter-spacing:12.973470pt;}
.lsb{letter-spacing:13.278015pt;}
.lsa{letter-spacing:13.326903pt;}
.lsc{letter-spacing:13.442868pt;}
.ls22{letter-spacing:13.530628pt;}
.ls2c{letter-spacing:13.639571pt;}
.ls1f{letter-spacing:15.754119pt;}
.ls3{letter-spacing:15.937067pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls11{letter-spacing:129.691674pt;}
.ls14{letter-spacing:148.891674pt;}
.ls18{letter-spacing:175.176969pt;}
.ls1a{letter-spacing:177.470302pt;}
.ls20{letter-spacing:194.147635pt;}
.ws72{word-spacing:-26.726335pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4a{word-spacing:-13.283467pt;}
.ws7a{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws49{word-spacing:-3.028630pt;}
.ws6d{word-spacing:-2.816095pt;}
.ws5a{word-spacing:-2.337890pt;}
.wsb1{word-spacing:-2.178489pt;}
.ws4b{word-spacing:-2.072221pt;}
.ws9d{word-spacing:-2.019087pt;}
.ws4f{word-spacing:-1.912819pt;}
.wsbe{word-spacing:-1.769370pt;}
.ws48{word-spacing:-1.753418pt;}
.ws4c{word-spacing:-1.647150pt;}
.wsb4{word-spacing:-1.594016pt;}
.wsbf{word-spacing:-1.578086pt;}
.ws4d{word-spacing:-1.540882pt;}
.ws4e{word-spacing:-1.487748pt;}
.wsc0{word-spacing:-1.482445pt;}
.wsb6{word-spacing:-1.434614pt;}
.wsde{word-spacing:-1.409593pt;}
.wse0{word-spacing:-1.386803pt;}
.wsa9{word-spacing:-1.328347pt;}
.wsc1{word-spacing:-1.291162pt;}
.ws8b{word-spacing:-1.168945pt;}
.wsb2{word-spacing:-1.115811pt;}
.ws8{word-spacing:-1.041421pt;}
.ws55{word-spacing:-1.009543pt;}
.wsa{word-spacing:-0.929840pt;}
.ws8d{word-spacing:-0.908595pt;}
.wsa0{word-spacing:-0.903276pt;}
.wscf{word-spacing:-0.897835pt;}
.wsd3{word-spacing:-0.812954pt;}
.ws56{word-spacing:-0.797008pt;}
.ws5f{word-spacing:-0.690740pt;}
.ws93{word-spacing:-0.669491pt;}
.ws57{word-spacing:-0.637606pt;}
.wsaa{word-spacing:-0.584473pt;}
.wsa2{word-spacing:-0.531339pt;}
.ws94{word-spacing:-0.430387pt;}
.ws20{word-spacing:-0.425071pt;}
.ws74{word-spacing:-0.371937pt;}
.ws75{word-spacing:-0.318803pt;}
.wsc4{word-spacing:-0.286925pt;}
.ws32{word-spacing:-0.265669pt;}
.ws3{word-spacing:-0.260355pt;}
.wsbd{word-spacing:-0.239104pt;}
.ws26{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.wsd5{word-spacing:-0.143462pt;}
.ws42{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.095642pt;}
.ws23{word-spacing:-0.053134pt;}
.ws78{word-spacing:-0.047821pt;}
.ws30{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.wsf8{word-spacing:-0.025378pt;}
.wsd2{word-spacing:-0.024371pt;}
.wsf0{word-spacing:-0.023100pt;}
.wsd1{word-spacing:-0.022613pt;}
.wscb{word-spacing:-0.021845pt;}
.wsdc{word-spacing:-0.021794pt;}
.wsf1{word-spacing:-0.021333pt;}
.wse4{word-spacing:-0.020642pt;}
.wseb{word-spacing:-0.019174pt;}
.wsdb{word-spacing:-0.006443pt;}
.wsf6{word-spacing:-0.003849pt;}
.ws79{word-spacing:-0.002637pt;}
.ws6a{word-spacing:-0.001523pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.047821pt;}
.ws31{word-spacing:0.053134pt;}
.ws9a{word-spacing:0.085014pt;}
.ws1a{word-spacing:0.095642pt;}
.ws2d{word-spacing:0.106268pt;}
.ws18{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.ws6b{word-spacing:0.160655pt;}
.ws1b{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.wsb8{word-spacing:0.239104pt;}
.ws37{word-spacing:0.265669pt;}
.wsb9{word-spacing:0.286925pt;}
.ws33{word-spacing:0.318803pt;}
.wsb7{word-spacing:0.334746pt;}
.ws61{word-spacing:0.371937pt;}
.wsa6{word-spacing:0.425071pt;}
.ws87{word-spacing:0.478205pt;}
.wsca{word-spacing:0.526029pt;}
.ws54{word-spacing:0.531339pt;}
.ws3a{word-spacing:0.584473pt;}
.ws5d{word-spacing:0.637606pt;}
.wsa1{word-spacing:0.743874pt;}
.wsf2{word-spacing:0.767831pt;}
.ws58{word-spacing:0.797008pt;}
.ws9{word-spacing:0.892646pt;}
.ws3d{word-spacing:0.903276pt;}
.ws1c{word-spacing:0.908595pt;}
.wsa8{word-spacing:0.956410pt;}
.ws62{word-spacing:1.009543pt;}
.ws63{word-spacing:1.062677pt;}
.ws68{word-spacing:1.115811pt;}
.wsb0{word-spacing:1.168945pt;}
.wsa7{word-spacing:1.222079pt;}
.wse9{word-spacing:1.243341pt;}
.wsab{word-spacing:1.275213pt;}
.wsfe{word-spacing:1.291162pt;}
.ws22{word-spacing:1.328347pt;}
.wsff{word-spacing:1.338982pt;}
.ws41{word-spacing:1.381481pt;}
.ws6e{word-spacing:1.434614pt;}
.ws9f{word-spacing:1.487748pt;}
.ws86{word-spacing:1.594016pt;}
.wsee{word-spacing:1.625907pt;}
.ws80{word-spacing:1.700284pt;}
.wsac{word-spacing:1.806551pt;}
.wsc9{word-spacing:1.817190pt;}
.wsc7{word-spacing:1.833308pt;}
.ws67{word-spacing:1.912819pt;}
.ws21{word-spacing:1.965953pt;}
.ws9b{word-spacing:2.125355pt;}
.ws3f{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws2c{word-spacing:2.284756pt;}
.ws36{word-spacing:2.337890pt;}
.ws29{word-spacing:2.391024pt;}
.ws81{word-spacing:2.497292pt;}
.ws3b{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws84{word-spacing:2.656693pt;}
.ws8c{word-spacing:2.762961pt;}
.wsb5{word-spacing:2.816095pt;}
.ws1d{word-spacing:2.861926pt;}
.wsf9{word-spacing:2.865459pt;}
.ws77{word-spacing:2.869229pt;}
.wsbc{word-spacing:2.869248pt;}
.ws47{word-spacing:2.922363pt;}
.wsb3{word-spacing:3.028630pt;}
.wsbb{word-spacing:3.156173pt;}
.ws1e{word-spacing:3.188032pt;}
.ws16{word-spacing:3.251814pt;}
.ws46{word-spacing:3.347434pt;}
.wsa4{word-spacing:3.453701pt;}
.ws3e{word-spacing:3.559969pt;}
.ws24{word-spacing:3.613103pt;}
.wsa5{word-spacing:3.666237pt;}
.ws39{word-spacing:3.719371pt;}
.ws38{word-spacing:3.772505pt;}
.ws95{word-spacing:3.777843pt;}
.ws34{word-spacing:3.825638pt;}
.ws51{word-spacing:3.878772pt;}
.wsd9{word-spacing:3.921306pt;}
.ws9e{word-spacing:3.931906pt;}
.ws5e{word-spacing:3.985040pt;}
.wsfc{word-spacing:4.112589pt;}
.ws60{word-spacing:4.197575pt;}
.ws10{word-spacing:4.240070pt;}
.ws35{word-spacing:4.303843pt;}
.ws11{word-spacing:4.314458pt;}
.ws76{word-spacing:4.410111pt;}
.wse7{word-spacing:4.447334pt;}
.wsaf{word-spacing:4.622646pt;}
.ws85{word-spacing:4.675780pt;}
.ws45{word-spacing:4.835182pt;}
.wsae{word-spacing:5.313387pt;}
.ws8a{word-spacing:5.472788pt;}
.ws9c{word-spacing:5.525922pt;}
.ws88{word-spacing:5.579056pt;}
.ws5c{word-spacing:5.632190pt;}
.ws14{word-spacing:5.690675pt;}
.ws52{word-spacing:5.791591pt;}
.ws3c{word-spacing:5.897859pt;}
.ws1f{word-spacing:6.216662pt;}
.ws40{word-spacing:6.269796pt;}
.wsba{word-spacing:6.312346pt;}
.ws53{word-spacing:6.322930pt;}
.ws28{word-spacing:6.535466pt;}
.ws27{word-spacing:6.588599pt;}
.wsa3{word-spacing:6.694867pt;}
.wse{word-spacing:6.918010pt;}
.ws5b{word-spacing:7.013670pt;}
.ws43{word-spacing:7.119938pt;}
.ws44{word-spacing:7.173072pt;}
.ws64{word-spacing:7.226206pt;}
.ws6f{word-spacing:8.023214pt;}
.ws59{word-spacing:8.288883pt;}
.wsad{word-spacing:9.032757pt;}
.ws4{word-spacing:9.261206pt;}
.wsdf{word-spacing:10.520576pt;}
.wsc{word-spacing:10.823338pt;}
.wscc{word-spacing:10.998784pt;}
.wsc3{word-spacing:11.476992pt;}
.wsfa{word-spacing:11.716096pt;}
.wsf7{word-spacing:11.811738pt;}
.wsd7{word-spacing:11.859558pt;}
.wsc6{word-spacing:11.898667pt;}
.wsef{word-spacing:11.898846pt;}
.wse6{word-spacing:11.899972pt;}
.wse2{word-spacing:11.901321pt;}
.wsc5{word-spacing:11.904299pt;}
.wse5{word-spacing:11.904503pt;}
.wsd8{word-spacing:11.904666pt;}
.wse3{word-spacing:11.904990pt;}
.wsd4{word-spacing:11.905331pt;}
.wsc2{word-spacing:11.907379pt;}
.wsfd{word-spacing:12.098662pt;}
.wsf5{word-spacing:12.146483pt;}
.wsf4{word-spacing:12.242125pt;}
.wsf3{word-spacing:12.672512pt;}
.ws100{word-spacing:12.911616pt;}
.wsea{word-spacing:12.960119pt;}
.ws73{word-spacing:13.017797pt;}
.ws70{word-spacing:13.070931pt;}
.ws2e{word-spacing:13.134725pt;}
.ws89{word-spacing:13.230333pt;}
.ws71{word-spacing:13.336601pt;}
.ws6c{word-spacing:13.389734pt;}
.wsc8{word-spacing:13.724570pt;}
.ws7{word-spacing:13.761632pt;}
.wsd{word-spacing:14.319536pt;}
.ws69{word-spacing:14.346144pt;}
.wsfb{word-spacing:14.633165pt;}
.wse1{word-spacing:14.770193pt;}
.wsed{word-spacing:14.773188pt;}
.wsd6{word-spacing:14.773197pt;}
.wsdd{word-spacing:14.773257pt;}
.wsd0{word-spacing:14.776627pt;}
.wsec{word-spacing:14.920090pt;}
.ws66{word-spacing:15.143152pt;}
.wse8{word-spacing:16.354714pt;}
.ws50{word-spacing:16.418365pt;}
.wsce{word-spacing:18.076262pt;}
.ws65{word-spacing:20.456539pt;}
.wscd{word-spacing:21.756702pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.wsda{word-spacing:43.038720pt;}
.ws7c{word-spacing:76.465459pt;}
.ws92{word-spacing:80.625869pt;}
.ws97{word-spacing:99.610726pt;}
.ws7b{word-spacing:105.014477pt;}
.ws8e{word-spacing:105.731789pt;}
.ws8f{word-spacing:119.025971pt;}
.ws90{word-spacing:130.981171pt;}
.ws91{word-spacing:142.936371pt;}
.ws96{word-spacing:195.122287pt;}
.ws99{word-spacing:195.441545pt;}
.ws7d{word-spacing:300.505907pt;}
.ws98{word-spacing:308.990481pt;}
.ws7f{word-spacing:312.461107pt;}
.ws82{word-spacing:537.099844pt;}
.ws7e{word-spacing:546.427187pt;}
.ws83{word-spacing:553.091959pt;}
._9{margin-left:-7.618423pt;}
._2{margin-left:-6.536533pt;}
._4{margin-left:-4.797974pt;}
._3{margin-left:-3.808000pt;}
._f{margin-left:-2.725786pt;}
._1{margin-left:-1.774933pt;}
._6{width:2.045648pt;}
._a{width:3.268560pt;}
._0{width:4.966400pt;}
._8{width:9.035708pt;}
._14{width:10.121848pt;}
._5{width:11.381242pt;}
._1d{width:12.470468pt;}
._e{width:13.783518pt;}
._c{width:14.824448pt;}
._7e{width:15.723674pt;}
._12{width:16.630900pt;}
._1c{width:17.540092pt;}
._17{width:18.469070pt;}
._1b{width:20.042881pt;}
._10{width:21.110071pt;}
._11{width:23.006964pt;}
._13{width:24.091157pt;}
._d{width:25.828796pt;}
._7{width:27.188522pt;}
._1e{width:28.410927pt;}
._18{width:29.686140pt;}
._21{width:32.220639pt;}
._5f{width:33.655253pt;}
._19{width:35.286477pt;}
._1f{width:36.380772pt;}
._1a{width:39.128042pt;}
._20{width:42.561295pt;}
._b{width:48.376563pt;}
._7d{width:54.611354pt;}
._7c{width:78.904320pt;}
._26{width:88.420659pt;}
._69{width:92.581069pt;}
._25{width:96.550195pt;}
._31{width:100.328038pt;}
._61{width:104.408701pt;}
._30{width:108.553216pt;}
._29{width:111.039898pt;}
._63{width:113.717862pt;}
._4f{width:115.726336pt;}
._79{width:118.021734pt;}
._68{width:119.121613pt;}
._60{width:121.177907pt;}
._2d{width:122.995098pt;}
._75{width:124.047155pt;}
._4c{width:130.216038pt;}
._62{width:133.706957pt;}
._6e{width:138.010829pt;}
._64{width:138.967245pt;}
._67{width:142.936371pt;}
._66{width:154.891571pt;}
._65{width:187.311471pt;}
._5a{width:188.467337pt;}
._5c{width:192.861286pt;}
._6a{width:199.656158pt;}
._77{width:202.999296pt;}
._40{width:205.342515pt;}
._78{width:207.464098pt;}
._24{width:210.459341pt;}
._57{width:211.947349pt;}
._27{width:216.771686pt;}
._48{width:222.414541pt;}
._28{width:224.996864pt;}
._6d{width:226.814054pt;}
._4e{width:229.683302pt;}
._35{width:232.887296pt;}
._2c{width:236.952064pt;}
._72{width:238.147584pt;}
._58{width:241.686323pt;}
._4b{width:244.173005pt;}
._7a{width:252.876390pt;}
._53{width:255.793459pt;}
._5e{width:256.797696pt;}
._2f{width:258.614886pt;}
._54{width:262.297088pt;}
._55{width:263.396966pt;}
._73{width:269.565850pt;}
._3e{width:270.825085pt;}
._74{width:285.553891pt;}
._76{width:288.168141pt;}
._4a{width:291.228672pt;}
._41{width:311.026483pt;}
._23{width:312.461107pt;}
._42{width:316.095488pt;}
._6f{width:320.160256pt;}
._2a{width:321.929626pt;}
._47{width:324.416307pt;}
._70{width:331.015578pt;}
._5d{width:335.702016pt;}
._52{width:336.706253pt;}
._71{width:340.914483pt;}
._39{width:343.975014pt;}
._2b{width:354.686874pt;}
._5b{width:362.099098pt;}
._33{width:363.772826pt;}
._6b{width:368.698368pt;}
._56{width:371.519795pt;}
._37{width:375.106355pt;}
._15{width:384.799861pt;}
._50{width:390.743757pt;}
._6c{width:399.542784pt;}
._59{width:423.453184pt;}
._3b{width:425.557299pt;}
._4d{width:430.674125pt;}
._51{width:434.738893pt;}
._38{width:435.790950pt;}
._2e{width:441.529446pt;}
._36{width:443.612396pt;}
._3f{width:448.080896pt;}
._43{width:468.835123pt;}
._3c{width:482.511981pt;}
._22{width:487.293952pt;}
._45{width:518.712326pt;}
._32{width:529.328435pt;}
._46{width:537.171046pt;}
._34{width:538.223104pt;}
._3d{width:541.140173pt;}
._49{width:546.496102pt;}
._44{width:551.182650pt;}
._3a{width:628.460954pt;}
._7b{width:1786.074254pt;}
._16{width:1807.327587pt;}
.fs9{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs8{font-size:40.381867pt;}
.fsa{font-size:42.507200pt;}
.fsb{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs4{font-size:50.395200pt;}
.fs6{font-size:53.133867pt;}
.fs5{font-size:53.754880pt;}
.fsc{font-size:55.365867pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs7{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:5.644850pt;}
.yc{bottom:7.146667pt;}
.y34{bottom:18.051729pt;}
.y62{bottom:28.346667pt;}
.y33{bottom:32.990462pt;}
.y13a{bottom:81.736000pt;}
.y192{bottom:86.196000pt;}
.y13{bottom:88.706667pt;}
.y109{bottom:92.364000pt;}
.y31{bottom:93.018667pt;}
.yc8{bottom:93.290667pt;}
.yd3{bottom:95.282667pt;}
.y99{bottom:95.681333pt;}
.y139{bottom:98.473333pt;}
.y61{bottom:99.093333pt;}
.y17{bottom:101.040000pt;}
.y1c4{bottom:101.698667pt;}
.y191{bottom:102.933333pt;}
.y163{bottom:106.358667pt;}
.y1fa{bottom:108.233333pt;}
.y30{bottom:108.920000pt;}
.y108{bottom:109.101333pt;}
.yc7{bottom:110.028000pt;}
.yd2{bottom:112.020000pt;}
.y98{bottom:112.418667pt;}
.y138{bottom:115.210667pt;}
.y60{bottom:115.830667pt;}
.y1c3{bottom:117.041333pt;}
.y190{bottom:119.670667pt;}
.y16{bottom:120.666667pt;}
.y162{bottom:123.096000pt;}
.y1f9{bottom:123.576000pt;}
.y2f{bottom:124.820000pt;}
.y107{bottom:125.838667pt;}
.yc6{bottom:126.765333pt;}
.yd1{bottom:128.757333pt;}
.y97{bottom:129.156000pt;}
.y137{bottom:131.948000pt;}
.y1c2{bottom:132.384000pt;}
.y5f{bottom:132.568000pt;}
.y18f{bottom:136.408000pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y1f8{bottom:138.918667pt;}
.y161{bottom:139.833333pt;}
.y15{bottom:140.293333pt;}
.y2e{bottom:140.720000pt;}
.y106{bottom:142.576000pt;}
.yc5{bottom:143.502667pt;}
.yd0{bottom:145.494667pt;}
.y96{bottom:145.893333pt;}
.y1c1{bottom:147.726667pt;}
.y136{bottom:148.685333pt;}
.y5e{bottom:149.305333pt;}
.y18e{bottom:153.145333pt;}
.y1f7{bottom:154.261333pt;}
.y160{bottom:156.570667pt;}
.y2d{bottom:156.621333pt;}
.y105{bottom:159.313333pt;}
.yc4{bottom:160.238667pt;}
.ycf{bottom:162.232000pt;}
.y95{bottom:162.630667pt;}
.y1c0{bottom:163.069333pt;}
.y135{bottom:165.422667pt;}
.y5d{bottom:166.042667pt;}
.y1f6{bottom:169.604000pt;}
.y18d{bottom:169.882667pt;}
.y2c{bottom:172.521333pt;}
.y15f{bottom:173.308000pt;}
.y104{bottom:176.050667pt;}
.yc3{bottom:176.976000pt;}
.y1bf{bottom:178.412000pt;}
.yce{bottom:178.969333pt;}
.y94{bottom:179.368000pt;}
.y134{bottom:182.160000pt;}
.y5c{bottom:182.780000pt;}
.y1f5{bottom:184.946667pt;}
.y18c{bottom:186.620000pt;}
.y2b{bottom:188.421333pt;}
.y103{bottom:192.788000pt;}
.yc2{bottom:193.713333pt;}
.y1be{bottom:193.753333pt;}
.ycd{bottom:195.706667pt;}
.y93{bottom:196.105333pt;}
.y133{bottom:198.897333pt;}
.y5b{bottom:199.517333pt;}
.y193{bottom:199.690667pt;}
.y1f4{bottom:200.289333pt;}
.y18b{bottom:203.357333pt;}
.y2a{bottom:204.322667pt;}
.y15e{bottom:208.981333pt;}
.y1bd{bottom:209.096000pt;}
.yc1{bottom:210.450667pt;}
.ycc{bottom:212.444000pt;}
.y92{bottom:212.841333pt;}
.y1f3{bottom:215.632000pt;}
.y132{bottom:215.634667pt;}
.y5a{bottom:216.254667pt;}
.y18a{bottom:220.094667pt;}
.y1bc{bottom:224.438667pt;}
.yc0{bottom:227.188000pt;}
.y15d{bottom:228.388000pt;}
.ycb{bottom:229.181333pt;}
.y91{bottom:229.578667pt;}
.y1f2{bottom:230.974667pt;}
.y59{bottom:232.992000pt;}
.y102{bottom:235.854667pt;}
.y131{bottom:236.357333pt;}
.y189{bottom:236.832000pt;}
.y1bb{bottom:239.781333pt;}
.y15c{bottom:243.000000pt;}
.ybf{bottom:243.925333pt;}
.yca{bottom:245.918667pt;}
.y90{bottom:246.316000pt;}
.y58{bottom:249.729333pt;}
.y101{bottom:250.466667pt;}
.y188{bottom:253.569333pt;}
.y130{bottom:254.289333pt;}
.y1ba{bottom:255.124000pt;}
.y15b{bottom:257.612000pt;}
.ybe{bottom:260.662667pt;}
.y1f1{bottom:261.658667pt;}
.y8f{bottom:263.053333pt;}
.y100{bottom:265.078667pt;}
.y57{bottom:266.466667pt;}
.yc9{bottom:266.640000pt;}
.y29{bottom:266.804000pt;}
.y187{bottom:270.306667pt;}
.y1b9{bottom:270.466667pt;}
.y15a{bottom:272.224000pt;}
.y1f0{bottom:277.001333pt;}
.ybd{bottom:277.400000pt;}
.yff{bottom:279.690667pt;}
.y8e{bottom:279.790667pt;}
.y28{bottom:282.705333pt;}
.y56{bottom:283.204000pt;}
.y12f{bottom:284.177333pt;}
.y1b8{bottom:285.809333pt;}
.y186{bottom:287.044000pt;}
.y1ef{bottom:292.344000pt;}
.y159{bottom:293.410667pt;}
.ybc{bottom:294.137333pt;}
.yfe{bottom:294.302667pt;}
.y8d{bottom:296.528000pt;}
.y27{bottom:298.605333pt;}
.y55{bottom:299.941333pt;}
.y12e{bottom:300.914667pt;}
.y1b7{bottom:301.152000pt;}
.y185{bottom:303.781333pt;}
.ya{bottom:306.382667pt;}
.y1ee{bottom:307.686667pt;}
.yfd{bottom:308.914667pt;}
.ybb{bottom:310.874667pt;}
.y8c{bottom:313.265333pt;}
.y26{bottom:314.505333pt;}
.y158{bottom:314.597333pt;}
.y1b6{bottom:316.494667pt;}
.y54{bottom:316.678667pt;}
.y12d{bottom:317.652000pt;}
.y184{bottom:320.517333pt;}
.y1ed{bottom:323.029333pt;}
.yfc{bottom:323.526667pt;}
.yba{bottom:327.612000pt;}
.y8b{bottom:330.002667pt;}
.y1b5{bottom:331.836000pt;}
.y53{bottom:333.416000pt;}
.y12c{bottom:334.389333pt;}
.yfb{bottom:338.138667pt;}
.y1ec{bottom:338.372000pt;}
.y25{bottom:338.376000pt;}
.y183{bottom:341.240000pt;}
.yd{bottom:343.546667pt;}
.yb9{bottom:344.349333pt;}
.y157{bottom:345.361333pt;}
.y8a{bottom:346.740000pt;}
.y1b4{bottom:347.178667pt;}
.y52{bottom:350.153333pt;}
.y12b{bottom:351.126667pt;}
.y9{bottom:351.724000pt;}
.yfa{bottom:352.750667pt;}
.y1eb{bottom:353.714667pt;}
.y24{bottom:354.277333pt;}
.yb8{bottom:361.086667pt;}
.y156{bottom:362.456000pt;}
.y1b3{bottom:362.521333pt;}
.y89{bottom:363.477333pt;}
.yf9{bottom:367.361333pt;}
.y12a{bottom:367.864000pt;}
.y1ea{bottom:369.056000pt;}
.y23{bottom:370.177333pt;}
.y51{bottom:370.876000pt;}
.y182{bottom:371.128000pt;}
.yb7{bottom:377.824000pt;}
.y1b2{bottom:377.864000pt;}
.y155{bottom:379.552000pt;}
.y88{bottom:380.214667pt;}
.yf8{bottom:381.973333pt;}
.y1e9{bottom:384.398667pt;}
.y129{bottom:384.601333pt;}
.yb{bottom:386.533333pt;}
.y181{bottom:387.865333pt;}
.y1b1{bottom:393.206667pt;}
.yb6{bottom:394.561333pt;}
.y22{bottom:395.376000pt;}
.yf7{bottom:396.585333pt;}
.y154{bottom:396.648000pt;}
.y87{bottom:396.952000pt;}
.y8{bottom:397.065333pt;}
.y1e8{bottom:399.741333pt;}
.y128{bottom:401.338667pt;}
.y180{bottom:404.602667pt;}
.y1b0{bottom:408.549333pt;}
.yf6{bottom:411.197333pt;}
.y21{bottom:411.276000pt;}
.yb5{bottom:411.298667pt;}
.y86{bottom:413.689333pt;}
.y1e7{bottom:415.084000pt;}
.y127{bottom:418.076000pt;}
.y17f{bottom:421.340000pt;}
.y1af{bottom:423.892000pt;}
.yf5{bottom:425.809333pt;}
.y20{bottom:427.177333pt;}
.yb4{bottom:428.036000pt;}
.y153{bottom:429.629333pt;}
.y85{bottom:430.426667pt;}
.y10{bottom:433.826667pt;}
.y126{bottom:434.813333pt;}
.y50{bottom:437.676000pt;}
.y17e{bottom:438.077333pt;}
.y1ae{bottom:439.234667pt;}
.yf4{bottom:440.421333pt;}
.y7{bottom:442.406667pt;}
.yb3{bottom:444.773333pt;}
.y1e6{bottom:445.769333pt;}
.y152{bottom:446.366667pt;}
.y84{bottom:447.164000pt;}
.y1f{bottom:451.048000pt;}
.y125{bottom:451.550667pt;}
.y1ad{bottom:454.576000pt;}
.y17d{bottom:454.814667pt;}
.yf3{bottom:455.033333pt;}
.y1e5{bottom:461.112000pt;}
.yb2{bottom:461.510667pt;}
.y151{bottom:463.104000pt;}
.y83{bottom:463.901333pt;}
.y1e{bottom:466.948000pt;}
.yf2{bottom:469.645333pt;}
.y1ac{bottom:469.918667pt;}
.y4f{bottom:470.910667pt;}
.y17c{bottom:471.552000pt;}
.y1e4{bottom:476.454667pt;}
.y11{bottom:478.426667pt;}
.y150{bottom:479.841333pt;}
.y82{bottom:480.638667pt;}
.yb1{bottom:482.233333pt;}
.y1d{bottom:482.848000pt;}
.yf1{bottom:484.257333pt;}
.y1ab{bottom:485.261333pt;}
.y6{bottom:487.748000pt;}
.y4e{bottom:488.206667pt;}
.y17b{bottom:488.289333pt;}
.y1e3{bottom:491.797333pt;}
.y124{bottom:494.617333pt;}
.y14f{bottom:496.578667pt;}
.y81{bottom:497.376000pt;}
.y1c{bottom:498.749333pt;}
.yf0{bottom:498.869333pt;}
.y1aa{bottom:500.604000pt;}
.y17a{bottom:505.026667pt;}
.y4d{bottom:505.501333pt;}
.y1e2{bottom:507.138667pt;}
.y123{bottom:509.229333pt;}
.yb0{bottom:512.121333pt;}
.y14e{bottom:513.316000pt;}
.yef{bottom:513.480000pt;}
.y80{bottom:514.113333pt;}
.y1b{bottom:514.649333pt;}
.y1a9{bottom:515.946667pt;}
.y179{bottom:521.764000pt;}
.y1e1{bottom:522.481333pt;}
.y4c{bottom:522.796000pt;}
.y122{bottom:523.841333pt;}
.y18{bottom:524.093333pt;}
.yee{bottom:528.092000pt;}
.yaf{bottom:528.857333pt;}
.y14d{bottom:530.053333pt;}
.y1a{bottom:530.549333pt;}
.y7f{bottom:530.850667pt;}
.y1a8{bottom:531.289333pt;}
.y5{bottom:533.089333pt;}
.y1e0{bottom:537.824000pt;}
.y121{bottom:538.453333pt;}
.y178{bottom:538.501333pt;}
.y4b{bottom:540.092000pt;}
.yed{bottom:542.704000pt;}
.yae{bottom:545.594667pt;}
.y19{bottom:546.450667pt;}
.y1a7{bottom:546.632000pt;}
.y14c{bottom:546.790667pt;}
.y7e{bottom:547.588000pt;}
.y120{bottom:553.065333pt;}
.y1df{bottom:553.166667pt;}
.yec{bottom:557.316000pt;}
.y4a{bottom:557.386667pt;}
.ye{bottom:561.706667pt;}
.y1a6{bottom:561.974667pt;}
.yad{bottom:562.332000pt;}
.y14b{bottom:563.528000pt;}
.y7d{bottom:564.325333pt;}
.y11f{bottom:567.677333pt;}
.y1de{bottom:568.509333pt;}
.yeb{bottom:571.928000pt;}
.y177{bottom:574.174667pt;}
.y49{bottom:574.681333pt;}
.yac{bottom:579.069333pt;}
.y14a{bottom:580.265333pt;}
.y7c{bottom:581.062667pt;}
.y1a5{bottom:581.301333pt;}
.y11e{bottom:582.289333pt;}
.y1dd{bottom:583.852000pt;}
.yea{bottom:586.540000pt;}
.y176{bottom:586.794667pt;}
.y48{bottom:591.977333pt;}
.yab{bottom:595.806667pt;}
.y11d{bottom:596.901333pt;}
.y149{bottom:597.002667pt;}
.y7b{bottom:597.800000pt;}
.y1dc{bottom:599.194667pt;}
.ye9{bottom:601.152000pt;}
.y175{bottom:606.201333pt;}
.y47{bottom:609.272000pt;}
.y1a4{bottom:611.189333pt;}
.y11c{bottom:611.513333pt;}
.yaa{bottom:612.544000pt;}
.y148{bottom:613.740000pt;}
.y7a{bottom:614.537333pt;}
.ye8{bottom:615.764000pt;}
.y174{bottom:620.813333pt;}
.y11b{bottom:626.125333pt;}
.y46{bottom:626.568000pt;}
.y1a3{bottom:626.810667pt;}
.ya9{bottom:629.281333pt;}
.y1db{bottom:629.878667pt;}
.ye7{bottom:630.376000pt;}
.y79{bottom:631.274667pt;}
.y147{bottom:634.462667pt;}
.y173{bottom:635.425333pt;}
.y11a{bottom:640.736000pt;}
.y1a2{bottom:642.432000pt;}
.y45{bottom:643.862667pt;}
.ye6{bottom:644.988000pt;}
.y1da{bottom:645.221333pt;}
.y78{bottom:648.012000pt;}
.ya8{bottom:650.004000pt;}
.y172{bottom:650.037333pt;}
.y119{bottom:655.348000pt;}
.ye5{bottom:659.598667pt;}
.y1d9{bottom:660.564000pt;}
.y44{bottom:661.157333pt;}
.y146{bottom:664.350667pt;}
.y77{bottom:664.749333pt;}
.y1a1{bottom:666.024000pt;}
.y118{bottom:669.960000pt;}
.y171{bottom:671.050667pt;}
.ye4{bottom:674.210667pt;}
.y1d8{bottom:675.906667pt;}
.y43{bottom:678.453333pt;}
.ya7{bottom:679.892000pt;}
.y145{bottom:681.088000pt;}
.y76{bottom:681.485333pt;}
.y1a0{bottom:681.645333pt;}
.y117{bottom:684.572000pt;}
.ye3{bottom:688.822667pt;}
.y1d7{bottom:691.249333pt;}
.y4{bottom:691.756000pt;}
.y170{bottom:692.065333pt;}
.y42{bottom:695.748000pt;}
.ya6{bottom:696.629333pt;}
.y19f{bottom:697.266667pt;}
.y144{bottom:697.825333pt;}
.y75{bottom:698.222667pt;}
.y116{bottom:699.184000pt;}
.ye2{bottom:703.434667pt;}
.y1d6{bottom:706.592000pt;}
.y16f{bottom:706.677333pt;}
.y41{bottom:713.042667pt;}
.ya5{bottom:713.366667pt;}
.y115{bottom:713.796000pt;}
.y143{bottom:714.562667pt;}
.y74{bottom:714.960000pt;}
.ye1{bottom:718.046667pt;}
.y19e{bottom:720.858667pt;}
.y16e{bottom:721.288000pt;}
.y1d5{bottom:721.934667pt;}
.y12{bottom:725.040000pt;}
.y114{bottom:728.408000pt;}
.ya4{bottom:730.104000pt;}
.y40{bottom:730.338667pt;}
.y142{bottom:731.300000pt;}
.y73{bottom:731.697333pt;}
.ye0{bottom:732.658667pt;}
.y16d{bottom:735.900000pt;}
.y1d4{bottom:737.277333pt;}
.y113{bottom:743.020000pt;}
.y19d{bottom:744.450667pt;}
.ya3{bottom:746.841333pt;}
.ydf{bottom:747.270667pt;}
.y3f{bottom:747.633333pt;}
.y141{bottom:748.036000pt;}
.y72{bottom:748.434667pt;}
.y16c{bottom:750.512000pt;}
.y1d3{bottom:752.620000pt;}
.y112{bottom:757.632000pt;}
.y19c{bottom:760.072000pt;}
.yde{bottom:761.882667pt;}
.ya2{bottom:763.578667pt;}
.y140{bottom:764.773333pt;}
.y3e{bottom:764.929333pt;}
.y16b{bottom:765.124000pt;}
.y71{bottom:765.172000pt;}
.y1d2{bottom:767.961333pt;}
.y111{bottom:772.244000pt;}
.y19b{bottom:775.693333pt;}
.ydd{bottom:776.494667pt;}
.y16a{bottom:779.736000pt;}
.ya1{bottom:780.316000pt;}
.y13f{bottom:781.510667pt;}
.y70{bottom:781.909333pt;}
.y1d1{bottom:783.304000pt;}
.y110{bottom:786.854667pt;}
.ydc{bottom:791.106667pt;}
.y169{bottom:794.348000pt;}
.ya0{bottom:797.053333pt;}
.y13e{bottom:798.248000pt;}
.y6f{bottom:798.646667pt;}
.y3d{bottom:799.226667pt;}
.y19a{bottom:799.285333pt;}
.y10f{bottom:801.466667pt;}
.y3{bottom:805.081333pt;}
.ydb{bottom:805.718667pt;}
.y3c{bottom:813.573333pt;}
.y9f{bottom:813.790667pt;}
.y1d0{bottom:813.989333pt;}
.y199{bottom:814.906667pt;}
.y13d{bottom:814.985333pt;}
.y168{bottom:815.361333pt;}
.y6e{bottom:815.384000pt;}
.y10e{bottom:816.078667pt;}
.yda{bottom:820.329333pt;}
.y1cf{bottom:829.332000pt;}
.y9e{bottom:830.528000pt;}
.y13c{bottom:831.722667pt;}
.y3b{bottom:831.777333pt;}
.y6d{bottom:832.121333pt;}
.yd9{bottom:834.941333pt;}
.y167{bottom:836.376000pt;}
.y10d{bottom:837.093333pt;}
.y198{bottom:838.497333pt;}
.y1ce{bottom:844.674667pt;}
.y3a{bottom:846.122667pt;}
.y9d{bottom:847.265333pt;}
.y6c{bottom:848.858667pt;}
.yd8{bottom:849.553333pt;}
.y166{bottom:850.988000pt;}
.y10c{bottom:851.705333pt;}
.y13b{bottom:852.445333pt;}
.y197{bottom:854.118667pt;}
.y2{bottom:857.092000pt;}
.y1cd{bottom:860.017333pt;}
.y9c{bottom:864.002667pt;}
.y6b{bottom:865.596000pt;}
.y196{bottom:869.740000pt;}
.yd7{bottom:870.568000pt;}
.y1cc{bottom:875.360000pt;}
.y1{bottom:879.748000pt;}
.y165{bottom:881.750667pt;}
.y6a{bottom:882.333333pt;}
.y10b{bottom:882.468000pt;}
.y9b{bottom:884.724000pt;}
.yd6{bottom:885.180000pt;}
.y195{bottom:885.362667pt;}
.y39{bottom:885.836000pt;}
.y1ca{bottom:890.701333pt;}
.y1cb{bottom:890.702667pt;}
.y164{bottom:898.846667pt;}
.y69{bottom:899.070667pt;}
.y10a{bottom:899.564000pt;}
.y194{bottom:900.984000pt;}
.y9a{bottom:902.657333pt;}
.y1c9{bottom:906.044000pt;}
.y68{bottom:915.808000pt;}
.yd5{bottom:915.942667pt;}
.y38{bottom:921.320000pt;}
.y1c8{bottom:921.386667pt;}
.y67{bottom:932.545333pt;}
.yd4{bottom:933.038667pt;}
.y1c7{bottom:936.729333pt;}
.y37{bottom:946.425333pt;}
.y66{bottom:949.282667pt;}
.y1c6{bottom:952.072000pt;}
.y65{bottom:966.020000pt;}
.y1c5{bottom:967.414667pt;}
.y36{bottom:971.530667pt;}
.y64{bottom:982.757333pt;}
.y32{bottom:1010.186667pt;}
.y63{bottom:1038.548000pt;}
.h20{height:16.775858pt;}
.h11{height:23.209028pt;}
.h1a{height:24.866650pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h4{height:29.333333pt;}
.h12{height:30.945242pt;}
.h19{height:31.157778pt;}
.h13{height:34.574438pt;}
.h14{height:34.813542pt;}
.hc{height:35.024664pt;}
.h15{height:35.052646pt;}
.hd{height:36.445809pt;}
.h17{height:38.415786pt;}
.h18{height:38.681455pt;}
.he{height:38.947124pt;}
.h22{height:43.557639pt;}
.h21{height:44.431607pt;}
.h16{height:44.436941pt;}
.hb{height:45.272024pt;}
.h10{height:48.481423pt;}
.h1b{height:48.683332pt;}
.h1f{height:48.688666pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h1c{height:63.795772pt;}
.h1d{height:64.034876pt;}
.h1e{height:64.040209pt;}
.hf{height:69.148877pt;}
.h23{height:72.778973pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:191.879724pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:47.621333pt;}
.xb{left:52.456952pt;}
.x92{left:55.592000pt;}
.xa6{left:56.997333pt;}
.xa4{left:58.557333pt;}
.x91{left:59.901333pt;}
.x7d{left:62.760000pt;}
.xa3{left:63.924000pt;}
.x85{left:67.004000pt;}
.x95{left:69.005333pt;}
.x98{left:71.308000pt;}
.x81{left:73.220000pt;}
.x8e{left:76.166667pt;}
.xb0{left:77.073333pt;}
.x7b{left:81.624000pt;}
.x93{left:86.538667pt;}
.x94{left:87.798667pt;}
.x7e{left:89.264000pt;}
.xaf{left:92.436000pt;}
.x89{left:94.774667pt;}
.x7f{left:97.237333pt;}
.xa7{left:98.504000pt;}
.x83{left:99.509333pt;}
.x86{left:102.564000pt;}
.xa2{left:106.245333pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x8b{left:114.949333pt;}
.xa1{left:116.442667pt;}
.x88{left:117.520000pt;}
.x80{left:118.941333pt;}
.x8f{left:120.585333pt;}
.x87{left:123.962667pt;}
.x96{left:125.996000pt;}
.x8c{left:129.050667pt;}
.x7c{left:130.382667pt;}
.x90{left:134.417333pt;}
.x8d{left:136.581333pt;}
.x9a{left:138.100000pt;}
.x82{left:140.904000pt;}
.x84{left:143.114667pt;}
.x9b{left:145.182667pt;}
.x97{left:146.217333pt;}
.x99{left:148.160000pt;}
.xa5{left:149.828000pt;}
.x5{left:154.760000pt;}
.x8a{left:165.680000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.xaa{left:184.621333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xab{left:202.548000pt;}
.xe{left:220.912000pt;}
.xc{left:221.858667pt;}
.xd{left:239.924000pt;}
.x10{left:247.826667pt;}
.x12{left:250.204000pt;}
.x11{left:260.034667pt;}
.x25{left:266.064000pt;}
.x75{left:267.144000pt;}
.xa9{left:268.528000pt;}
.xf{left:276.914667pt;}
.x67{left:278.136000pt;}
.x26{left:279.346667pt;}
.xac{left:282.953333pt;}
.x27{left:285.856000pt;}
.x6a{left:288.518667pt;}
.x64{left:289.957333pt;}
.x59{left:291.569333pt;}
.x49{left:295.870667pt;}
.x28{left:299.140000pt;}
.x5e{left:301.750667pt;}
.x40{left:302.825333pt;}
.x5a{left:304.853333pt;}
.x60{left:308.102667pt;}
.x4a{left:309.154667pt;}
.x72{left:312.418667pt;}
.x5f{left:315.034667pt;}
.x41{left:316.109333pt;}
.x42{left:319.482667pt;}
.x61{left:321.386667pt;}
.x3a{left:322.777333pt;}
.x62{left:324.773333pt;}
.x76{left:331.021333pt;}
.x43{left:332.766667pt;}
.x3b{left:336.061333pt;}
.x63{left:338.057333pt;}
.x34{left:347.150667pt;}
.xb1{left:348.818667pt;}
.x73{left:350.254667pt;}
.x4c{left:356.157333pt;}
.x35{left:360.433333pt;}
.x74{left:363.538667pt;}
.x53{left:368.072000pt;}
.x4d{left:369.441333pt;}
.xbe{left:376.406667pt;}
.xc1{left:378.809333pt;}
.xc8{left:380.438667pt;}
.x54{left:381.354667pt;}
.xc7{left:385.504000pt;}
.x1d{left:389.269333pt;}
.xc2{left:392.092000pt;}
.x1e{left:395.912000pt;}
.x2b{left:397.497333pt;}
.x3c{left:399.161333pt;}
.x13{left:403.988000pt;}
.x9c{left:406.834667pt;}
.x5b{left:408.740000pt;}
.x14{left:410.629333pt;}
.x3d{left:412.445333pt;}
.x77{left:416.436000pt;}
.x5c{left:422.022667pt;}
.xad{left:430.886667pt;}
.xae{left:437.456000pt;}
.xc6{left:438.708000pt;}
.x36{left:440.150667pt;}
.x23{left:445.673333pt;}
.xba{left:451.458667pt;}
.x37{left:453.434667pt;}
.x55{left:455.662667pt;}
.x38{left:456.729333pt;}
.x24{left:458.957333pt;}
.xbb{left:464.742667pt;}
.x56{left:468.946667pt;}
.x39{left:470.012000pt;}
.x1b{left:475.070667pt;}
.x30{left:476.149333pt;}
.x9e{left:479.637333pt;}
.x1c{left:481.712000pt;}
.x3e{left:487.958667pt;}
.x31{left:489.433333pt;}
.x9d{left:496.254667pt;}
.x3f{left:501.241333pt;}
.xbf{left:504.216000pt;}
.x78{left:505.854667pt;}
.x70{left:514.805333pt;}
.xa8{left:516.593333pt;}
.xc0{left:517.500000pt;}
.xc4{left:520.457333pt;}
.x71{left:526.873333pt;}
.x6e{left:531.188000pt;}
.x68{left:532.382667pt;}
.xc5{left:533.740000pt;}
.x15{left:538.012000pt;}
.x6f{left:543.396000pt;}
.x16{left:544.653333pt;}
.x69{left:545.586667pt;}
.x17{left:547.908000pt;}
.xb7{left:549.030667pt;}
.x57{left:550.644000pt;}
.x18{left:554.549333pt;}
.x45{left:558.268000pt;}
.x5d{left:561.748000pt;}
.x4b{left:566.950667pt;}
.x46{left:570.888000pt;}
.xbd{left:574.326667pt;}
.x9f{left:576.020000pt;}
.x47{left:577.324000pt;}
.x79{left:580.821333pt;}
.xa0{left:586.593333pt;}
.x29{left:588.280000pt;}
.x48{left:589.942667pt;}
.x7a{left:591.394667pt;}
.x65{left:592.625333pt;}
.x2c{left:595.312000pt;}
.xb2{left:599.289333pt;}
.x1f{left:600.186667pt;}
.x2a{left:601.562667pt;}
.x66{left:604.453333pt;}
.x20{left:606.828000pt;}
.x2d{left:608.596000pt;}
.x2e{left:611.982667pt;}
.x21{left:613.370667pt;}
.x2f{left:625.266667pt;}
.x22{left:626.654667pt;}
.xc9{left:632.338667pt;}
.x4e{left:635.526667pt;}
.xbc{left:639.566667pt;}
.xb3{left:643.241333pt;}
.x4f{left:648.809333pt;}
.xb4{left:656.524000pt;}
.xb5{left:659.778667pt;}
.x50{left:661.717333pt;}
.x51{left:665.104000pt;}
.xb6{left:673.062667pt;}
.x6b{left:674.436000pt;}
.x52{left:678.388000pt;}
.xb8{left:689.046667pt;}
.x6c{left:696.408000pt;}
.xb9{left:702.329333pt;}
.x6d{left:709.692000pt;}
.x32{left:722.672000pt;}
.x58{left:726.178667pt;}
.x44{left:727.464000pt;}
.x19{left:733.600000pt;}
.x33{left:735.954667pt;}
.x1a{left:740.242667pt;}
.xc3{left:741.210667pt;}
}




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