
    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_4a2172c0af34cc1485427214.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_a013ed7dac2f4d33255afba5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_adfd7c40daf4d8a3a105ebc0.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_4724a965f49415787cc499f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_6e54de8b93461b8500b61c87.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a9815e9d0cf8d06b1450f12a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f655cfec9d31777058ffa69f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.505000;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_41a050bd39e5c0efd55234a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_48b7df506d00e50f3634ff8f.woff2')format("woff");}.ffb{font-family:ffb;line-height:3.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_03db1586232918a6c28a8ca7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m21{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);}
.m28{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);}
.m1c{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);}
.md{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);}
.m17{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);}
.m25{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);}
.m26{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);}
.m23{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);}
.m8{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);}
.m1b{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);}
.m15{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);}
.m18{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);}
.m11{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);}
.m1d{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{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);}
.mb{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);}
.m7{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);}
.m16{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);}
.m27{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.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);}
.m13{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);}
.m22{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);}
.ma{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);}
.mc{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);}
.m4{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);}
.m1a{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m12{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);}
.m29{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);}
.m1e{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);}
.m19{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);}
.m1f{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);}
.m24{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);}
.m9{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.me{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;}
.v6{vertical-align:-12.510000px;}
.v5{vertical-align:-11.148000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.964000px;}
.va{vertical-align:14.076000px;}
.vb{vertical-align:17.274000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:24.684000px;}
.v8{vertical-align:40.470000px;}
.v7{vertical-align:103.722000px;}
.ls5{letter-spacing:0.000000px;}
.ls6b{letter-spacing:0.001899px;}
.ls66{letter-spacing:0.004800px;}
.ls1d{letter-spacing:0.097897px;}
.ls3e{letter-spacing:0.103897px;}
.ls4e{letter-spacing:0.220741px;}
.ls38{letter-spacing:0.235897px;}
.ls54{letter-spacing:0.270783px;}
.ls31{letter-spacing:0.415897px;}
.ls3f{letter-spacing:0.421897px;}
.ls18{letter-spacing:0.542815px;}
.ls25{letter-spacing:0.548815px;}
.ls51{letter-spacing:0.670741px;}
.ls58{letter-spacing:0.744583px;}
.ls5a{letter-spacing:0.750583px;}
.ls24{letter-spacing:1.131943px;}
.ls17{letter-spacing:1.137943px;}
.ls49{letter-spacing:1.180741px;}
.ls6{letter-spacing:1.275394px;}
.ls45{letter-spacing:1.310383px;}
.ls16{letter-spacing:1.312200px;}
.lsc{letter-spacing:1.316383px;}
.ls2b{letter-spacing:1.317634px;}
.ls11{letter-spacing:1.318200px;}
.ls5d{letter-spacing:1.494390px;}
.lsf{letter-spacing:1.794337px;}
.ls0{letter-spacing:1.861130px;}
.ls10{letter-spacing:2.434741px;}
.ls19{letter-spacing:2.539200px;}
.ls50{letter-spacing:2.573675px;}
.ls13{letter-spacing:2.790583px;}
.ls20{letter-spacing:2.810383px;}
.ls3b{letter-spacing:2.922583px;}
.ls34{letter-spacing:2.928583px;}
.ls59{letter-spacing:2.989200px;}
.ls2d{letter-spacing:3.108583px;}
.ls12{letter-spacing:3.345943px;}
.ls2c{letter-spacing:3.351943px;}
.ls1a{letter-spacing:3.745834px;}
.ls36{letter-spacing:3.883834px;}
.ls2f{letter-spacing:4.063834px;}
.ls47{letter-spacing:4.299943px;}
.ls4a{letter-spacing:4.305943px;}
.ls1e{letter-spacing:4.620571px;}
.ls39{letter-spacing:4.756457px;}
.ls32{letter-spacing:4.759258px;}
.ls28{letter-spacing:6.319897px;}
.ls3d{letter-spacing:6.325897px;}
.ls21{letter-spacing:9.012583px;}
.ls40{letter-spacing:9.190741px;}
.ls3c{letter-spacing:9.967834px;}
.ls26{letter-spacing:9.973834px;}
.ls4d{letter-spacing:10.340400px;}
.ls29{letter-spacing:10.440571px;}
.ls1{letter-spacing:10.455300px;}
.ls4{letter-spacing:11.954850px;}
.ls44{letter-spacing:12.675483px;}
.ls42{letter-spacing:12.849483px;}
.lsa{letter-spacing:12.851754px;}
.ls4b{letter-spacing:13.042741px;}
.ls1c{letter-spacing:13.089483px;}
.ls23{letter-spacing:13.383483px;}
.ls15{letter-spacing:13.389483px;}
.ls69{letter-spacing:13.448400px;}
.ls46{letter-spacing:13.983483px;}
.ls68{letter-spacing:14.626871px;}
.ls7{letter-spacing:14.645022px;}
.ls8{letter-spacing:14.704798px;}
.ls57{letter-spacing:14.824349px;}
.ls60{letter-spacing:14.884124px;}
.ls9{letter-spacing:14.943900px;}
.ls61{letter-spacing:15.003676px;}
.ls43{letter-spacing:15.355200px;}
.ls5e{letter-spacing:15.361200px;}
.ls5f{letter-spacing:15.362329px;}
.ls5c{letter-spacing:15.411483px;}
.lsb{letter-spacing:15.780758px;}
.ls41{letter-spacing:15.927943px;}
.ls14{letter-spacing:16.242571px;}
.ls1b{letter-spacing:16.248571px;}
.ls2e{letter-spacing:16.375258px;}
.ls37{letter-spacing:16.378457px;}
.ls30{letter-spacing:16.381258px;}
.ls35{letter-spacing:16.384457px;}
.ls5b{letter-spacing:17.677200px;}
.ls62{letter-spacing:17.753353px;}
.lse{letter-spacing:18.069483px;}
.ls67{letter-spacing:18.986978px;}
.ls65{letter-spacing:19.363653px;}
.ls64{letter-spacing:19.364400px;}
.ls63{letter-spacing:19.370400px;}
.ls6a{letter-spacing:19.403547px;}
.ls6c{letter-spacing:19.651112px;}
.lsd{letter-spacing:20.907943px;}
.ls27{letter-spacing:22.056571px;}
.ls22{letter-spacing:22.062571px;}
.ls4f{letter-spacing:26.001483px;}
.ls53{letter-spacing:26.919483px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls3a{letter-spacing:698.068741px;}
.ls2a{letter-spacing:732.508741px;}
.ls33{letter-spacing:738.244741px;}
.ls1f{letter-spacing:755.410741px;}
.ls48{letter-spacing:757.258741px;}
.ls52{letter-spacing:757.879200px;}
.ls55{letter-spacing:809.412783px;}
.ls56{letter-spacing:853.404783px;}
.ls4c{letter-spacing:869.181943px;}
.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;}
}
.ws0{word-spacing:-28.532313px;}
.ws73{word-spacing:-16.438290px;}
.ws60{word-spacing:-14.943900px;}
.wsaa{word-spacing:-13.449600px;}
.ws2e{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.ws58{word-spacing:-3.168107px;}
.ws5d{word-spacing:-3.048556px;}
.ws1b{word-spacing:-3.012710px;}
.ws50{word-spacing:-2.988780px;}
.ws48{word-spacing:-2.929004px;}
.wsa1{word-spacing:-2.869229px;}
.wsbe{word-spacing:-2.851315px;}
.ws49{word-spacing:-2.689902px;}
.ws9a{word-spacing:-2.510575px;}
.ws57{word-spacing:-2.450800px;}
.ws85{word-spacing:-2.271473px;}
.wsa9{word-spacing:-2.205734px;}
.ws40{word-spacing:-2.151922px;}
.ws3f{word-spacing:-2.092146px;}
.ws94{word-spacing:-2.032370px;}
.ws8d{word-spacing:-1.972595px;}
.ws59{word-spacing:-1.912819px;}
.ws5{word-spacing:-1.908367px;}
.ws18{word-spacing:-1.829146px;}
.ws2f{word-spacing:-1.733492px;}
.ws75{word-spacing:-1.667750px;}
.ws76{word-spacing:-1.398758px;}
.ws91{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.wsc2{word-spacing:-1.291162px;}
.ws54{word-spacing:-1.016185px;}
.ws44{word-spacing:-0.956410px;}
.wsa6{word-spacing:-0.914573px;}
.wsa2{word-spacing:-0.717307px;}
.ws38{word-spacing:-0.657532px;}
.ws61{word-spacing:-0.597756px;}
.wsd6{word-spacing:-0.484186px;}
.ws82{word-spacing:-0.478205px;}
.ws37{word-spacing:-0.358654px;}
.wsc5{word-spacing:-0.322790px;}
.ws1f{word-spacing:-0.298878px;}
.wsc9{word-spacing:-0.268992px;}
.ws31{word-spacing:-0.239102px;}
.ws8f{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws28{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.053798px;}
.wsd0{word-spacing:-0.006576px;}
.wsc4{word-spacing:-0.003610px;}
.wsb7{word-spacing:-0.003264px;}
.wsd7{word-spacing:-0.002659px;}
.ws2d{word-spacing:-0.002401px;}
.wsd3{word-spacing:-0.001421px;}
.wsc3{word-spacing:-0.001267px;}
.wsbc{word-spacing:-0.001027px;}
.wsbd{word-spacing:-0.000221px;}
.ws1{word-spacing:0.000000px;}
.wsc6{word-spacing:0.001325px;}
.wsb3{word-spacing:0.001949px;}
.ws14{word-spacing:0.047821px;}
.ws97{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws15{word-spacing:0.107597px;}
.ws20{word-spacing:0.119551px;}
.ws89{word-spacing:0.161395px;}
.ws33{word-spacing:0.179327px;}
.wsa{word-spacing:0.209214px;}
.ws74{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.wsca{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws29{word-spacing:0.298878px;}
.ws87{word-spacing:0.322790px;}
.ws53{word-spacing:0.358654px;}
.ws84{word-spacing:0.418429px;}
.ws83{word-spacing:0.478205px;}
.ws69{word-spacing:0.537984px;}
.ws86{word-spacing:0.591782px;}
.ws56{word-spacing:0.597756px;}
.ws23{word-spacing:0.657532px;}
.wsab{word-spacing:0.699379px;}
.wsa4{word-spacing:0.717307px;}
.ws81{word-spacing:0.777083px;}
.ws68{word-spacing:0.806976px;}
.ws5b{word-spacing:0.836858px;}
.wscc{word-spacing:0.860774px;}
.ws52{word-spacing:0.896634px;}
.wsa8{word-spacing:0.914573px;}
.ws24{word-spacing:0.956410px;}
.wsa0{word-spacing:1.016185px;}
.ws9f{word-spacing:1.075961px;}
.wscb{word-spacing:1.183565px;}
.ws22{word-spacing:1.195512px;}
.ws39{word-spacing:1.255288px;}
.ws46{word-spacing:1.315063px;}
.ws9d{word-spacing:1.554166px;}
.wsa7{word-spacing:1.560154px;}
.ws32{word-spacing:1.673717px;}
.wsc7{word-spacing:1.721549px;}
.ws51{word-spacing:1.733492px;}
.ws65{word-spacing:1.972595px;}
.wsb{word-spacing:2.008454px;}
.ws45{word-spacing:2.032370px;}
.ws88{word-spacing:2.092146px;}
.ws34{word-spacing:2.151922px;}
.wsd4{word-spacing:2.205734px;}
.ws5c{word-spacing:2.271473px;}
.ws1d{word-spacing:2.331248px;}
.ws19{word-spacing:2.420928px;}
.ws5e{word-spacing:2.450800px;}
.wsa5{word-spacing:2.474726px;}
.ws7{word-spacing:2.508865px;}
.ws8{word-spacing:2.510568px;}
.ws8b{word-spacing:2.636122px;}
.ws4c{word-spacing:2.689902px;}
.wsc8{word-spacing:2.689920px;}
.ws3e{word-spacing:2.749678px;}
.ws8c{word-spacing:2.797517px;}
.ws90{word-spacing:2.809453px;}
.ws35{word-spacing:2.869229px;}
.wsbb{word-spacing:2.905114px;}
.ws8a{word-spacing:2.958912px;}
.ws47{word-spacing:3.108331px;}
.ws62{word-spacing:3.152899px;}
.ws64{word-spacing:3.153193px;}
.ws63{word-spacing:3.155987px;}
.ws4a{word-spacing:3.168107px;}
.wsb4{word-spacing:3.218093px;}
.wsb5{word-spacing:3.218822px;}
.wsc1{word-spacing:3.219341px;}
.wsba{word-spacing:3.221261px;}
.wsd5{word-spacing:3.223882px;}
.wsb9{word-spacing:3.224947px;}
.wsac{word-spacing:3.224957px;}
.wsb2{word-spacing:3.225437px;}
.wsad{word-spacing:3.227904px;}
.wsce{word-spacing:3.228451px;}
.wscd{word-spacing:3.389299px;}
.ws92{word-spacing:3.407209px;}
.wsd1{word-spacing:3.496896px;}
.ws41{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.wsbf{word-spacing:3.604493px;}
.ws4e{word-spacing:3.646312px;}
.ws4b{word-spacing:3.765863px;}
.ws5a{word-spacing:3.825638px;}
.ws93{word-spacing:3.885414px;}
.wscf{word-spacing:3.927283px;}
.ws4f{word-spacing:4.004965px;}
.ws36{word-spacing:4.184292px;}
.ws1e{word-spacing:4.303843px;}
.ws66{word-spacing:4.423394px;}
.ws78{word-spacing:4.465267px;}
.ws5f{word-spacing:4.483170px;}
.ws30{word-spacing:4.542946px;}
.ws3d{word-spacing:4.602721px;}
.ws9b{word-spacing:4.662497px;}
.ws26{word-spacing:4.782048px;}
.ws77{word-spacing:4.788058px;}
.ws71{word-spacing:4.901599px;}
.ws27{word-spacing:5.021150px;}
.ws4d{word-spacing:5.260253px;}
.ws6b{word-spacing:5.320028px;}
.ws8e{word-spacing:5.499355px;}
.wsb8{word-spacing:5.595034px;}
.ws6a{word-spacing:5.618906px;}
.ws55{word-spacing:5.678682px;}
.ws72{word-spacing:5.858009px;}
.wsc0{word-spacing:5.971622px;}
.ws3b{word-spacing:5.977560px;}
.ws3a{word-spacing:6.037336px;}
.ws12{word-spacing:6.067206px;}
.wsd2{word-spacing:6.133018px;}
.ws13{word-spacing:6.150892px;}
.ws43{word-spacing:6.216662px;}
.wsa3{word-spacing:6.395989px;}
.ws3c{word-spacing:6.455765px;}
.wsb6{word-spacing:6.671002px;}
.ws67{word-spacing:6.993745px;}
.ws9c{word-spacing:7.113296px;}
.ws2c{word-spacing:7.352399px;}
.ws42{word-spacing:7.412174px;}
.ws9e{word-spacing:7.711052px;}
.ws80{word-spacing:8.189257px;}
.ws10{word-spacing:8.661460px;}
.wsaf{word-spacing:11.551756px;}
.wsb0{word-spacing:11.566656px;}
.ws6{word-spacing:15.483541px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.wsae{word-spacing:16.516109px;}
.wsf{word-spacing:17.699504px;}
.ws11{word-spacing:27.448877px;}
.wsb1{word-spacing:38.358259px;}
.ws79{word-spacing:47.999807px;}
.ws3{word-spacing:60.999600px;}
.ws6c{word-spacing:75.197705px;}
.ws7b{word-spacing:91.994648px;}
.ws6d{word-spacing:104.248646px;}
.ws70{word-spacing:104.308422px;}
.ws6f{word-spacing:119.192546px;}
.ws7e{word-spacing:121.882448px;}
.ws7a{word-spacing:123.197512px;}
.ws6e{word-spacing:134.196222px;}
.ws7d{word-spacing:145.732913px;}
.ws7f{word-spacing:160.676813px;}
.ws95{word-spacing:173.827445px;}
.ws98{word-spacing:175.560937px;}
.ws96{word-spacing:195.406436px;}
.ws99{word-spacing:197.139929px;}
.ws7c{word-spacing:218.958023px;}
._50{margin-left:-20.692537px;}
._1b{margin-left:-7.643710px;}
._2{margin-left:-6.629100px;}
._15{margin-left:-5.439580px;}
._8{margin-left:-4.385984px;}
._5{margin-left:-3.096367px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._0{width:2.986926px;}
._1e{width:4.184292px;}
._45{width:10.221696px;}
._c{width:11.867117px;}
._6{width:12.971268px;}
._11{width:14.824386px;}
._a{width:16.341523px;}
._9{width:17.388780px;}
._f{width:18.590212px;}
._e{width:20.144377px;}
._1a{width:21.578992px;}
._b{width:23.402304px;}
._18{width:24.575339px;}
._d{width:26.054512px;}
._17{width:27.437000px;}
._1d{width:29.050942px;}
._19{width:30.485556px;}
._7{width:32.637384px;}
._4b{width:34.463503px;}
._1c{width:35.984911px;}
._14{width:37.060872px;}
._16{width:38.495486px;}
._1f{width:39.974966px;}
._10{width:41.006062px;}
._51{width:42.088757px;}
._3d{width:43.292669px;}
._4c{width:50.508338px;}
._4d{width:51.807859px;}
._4f{width:61.868160px;}
._1{width:69.369634px;}
._46{width:71.713267px;}
._49{width:84.140698px;}
._4e{width:88.767360px;}
._4a{width:94.308595px;}
._20{width:97.667302px;}
._47{width:114.698189px;}
._48{width:116.634931px;}
._24{width:149.080346px;}
._29{width:164.024246px;}
._39{width:170.001806px;}
._2c{width:182.255804px;}
._30{width:186.260770px;}
._35{width:188.054038px;}
._23{width:189.787530px;}
._2e{width:198.036526px;}
._2f{width:205.323194px;}
._28{width:219.615554px;}
._38{width:225.593114px;}
._37{width:227.027729px;}
._21{width:231.212021px;}
._40{width:236.053844px;}
._43{width:237.787337px;}
._3b{width:241.971629px;}
._34{width:243.525794px;}
._2d{width:247.530760px;}
._2b{width:251.774827px;}
._22{width:252.791012px;}
._25{width:254.524505px;}
._3c{width:256.915529px;}
._33{width:258.230592px;}
._2a{width:269.468405px;}
._31{width:271.680102px;}
._26{width:278.554296px;}
._27{width:282.678812px;}
._36{width:313.403471px;}
._3a{width:328.347371px;}
._32{width:343.709700px;}
._41{width:457.462667px;}
._44{width:459.136384px;}
._3f{width:472.406567px;}
._42{width:474.080284px;}
._12{width:913.138557px;}
._3e{width:2487.194700px;}
._13{width:2511.104700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fsc{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y4d{bottom:31.890000px;}
.y12f{bottom:88.993500px;}
.y200{bottom:94.741500px;}
.yf5{bottom:97.092000px;}
.yf6{bottom:100.611000px;}
.y1ca{bottom:101.004000px;}
.y21{bottom:102.823500px;}
.y4c{bottom:103.621500px;}
.ydb{bottom:105.799500px;}
.y83{bottom:107.574000px;}
.y12e{bottom:107.823000px;}
.y1ff{bottom:112.000500px;}
.yf3{bottom:115.921500px;}
.yf4{bottom:119.440500px;}
.y1c9{bottom:119.833500px;}
.y20{bottom:120.711000px;}
.y4b{bottom:122.449500px;}
.yda{bottom:124.627500px;}
.yb7{bottom:125.076000px;}
.y82{bottom:126.403500px;}
.y169{bottom:126.652500px;}
.y12d{bottom:127.722000px;}
.y1fe{bottom:129.261000px;}
.y237{bottom:138.078000px;}
.y1f{bottom:138.600000px;}
.y1c8{bottom:138.663000px;}
.y4a{bottom:141.279000px;}
.yd9{bottom:143.457000px;}
.yb6{bottom:143.905500px;}
.y81{bottom:145.233000px;}
.y168{bottom:145.482000px;}
.y1fd{bottom:146.521500px;}
.yf2{bottom:148.849500px;}
.yef{bottom:154.699500px;}
.y236{bottom:155.338500px;}
.y1e{bottom:156.487500px;}
.y1c7{bottom:157.492500px;}
.y49{bottom:160.108500px;}
.yf1{bottom:161.842500px;}
.yd8{bottom:162.286500px;}
.yb5{bottom:162.735000px;}
.y1fc{bottom:163.782000px;}
.y80{bottom:164.062500px;}
.y167{bottom:164.311500px;}
.yee{bottom:164.950500px;}
.y235{bottom:172.599000px;}
.y1d{bottom:174.375000px;}
.y1c6{bottom:176.322000px;}
.y48{bottom:178.938000px;}
.y1fb{bottom:181.042500px;}
.yf0{bottom:181.090500px;}
.yd7{bottom:181.116000px;}
.yb4{bottom:181.564500px;}
.y7f{bottom:182.892000px;}
.y166{bottom:183.141000px;}
.y152{bottom:184.440000px;}
.y234{bottom:189.858000px;}
.y1c{bottom:192.264000px;}
.y1c5{bottom:195.151500px;}
.y119{bottom:196.959000px;}
.y47{bottom:197.767500px;}
.y1fa{bottom:198.303000px;}
.yd6{bottom:199.945500px;}
.yb3{bottom:200.394000px;}
.y7e{bottom:201.721500px;}
.y165{bottom:201.970500px;}
.y151{bottom:203.269500px;}
.y233{bottom:207.118500px;}
.y1b{bottom:210.151500px;}
.yed{bottom:213.445500px;}
.y1c4{bottom:213.981000px;}
.y180{bottom:214.452000px;}
.y1f9{bottom:215.563500px;}
.y118{bottom:215.788500px;}
.y46{bottom:216.597000px;}
.yd5{bottom:218.775000px;}
.yb2{bottom:219.223500px;}
.y7d{bottom:220.551000px;}
.y164{bottom:220.800000px;}
.y150{bottom:222.099000px;}
.y232{bottom:224.379000px;}
.y1a{bottom:228.039000px;}
.yec{bottom:232.275000px;}
.y1c3{bottom:232.810500px;}
.y1f8{bottom:232.824000px;}
.y198{bottom:233.034000px;}
.y17f{bottom:233.281500px;}
.y117{bottom:234.618000px;}
.y45{bottom:235.426500px;}
.yd4{bottom:237.604500px;}
.yb1{bottom:238.053000px;}
.y195{bottom:238.195500px;}
.y7c{bottom:239.380500px;}
.y163{bottom:239.629500px;}
.y14f{bottom:240.928500px;}
.y231{bottom:241.639500px;}
.y1f6{bottom:250.083000px;}
.y1f7{bottom:250.084500px;}
.y1c2{bottom:251.640000px;}
.y17e{bottom:252.109500px;}
.y197{bottom:252.267000px;}
.y116{bottom:253.447500px;}
.y44{bottom:254.256000px;}
.y194{bottom:256.129500px;}
.yd3{bottom:256.434000px;}
.yb0{bottom:256.882500px;}
.y7b{bottom:258.210000px;}
.y162{bottom:258.459000px;}
.y230{bottom:258.900000px;}
.y14e{bottom:259.756500px;}
.yeb{bottom:260.520000px;}
.y1f5{bottom:267.343500px;}
.y1c1{bottom:270.469500px;}
.y17d{bottom:270.939000px;}
.y196{bottom:271.500000px;}
.y43{bottom:273.085500px;}
.y193{bottom:274.062000px;}
.yd2{bottom:275.263500px;}
.yaf{bottom:275.712000px;}
.y22f{bottom:276.160500px;}
.y7a{bottom:277.039500px;}
.y161{bottom:277.288500px;}
.y14d{bottom:278.586000px;}
.y1f4{bottom:284.604000px;}
.y115{bottom:287.013000px;}
.yea{bottom:288.763500px;}
.y1c0{bottom:289.299000px;}
.y17c{bottom:289.768500px;}
.y42{bottom:291.915000px;}
.y192{bottom:291.994500px;}
.y22e{bottom:293.421000px;}
.yd1{bottom:294.093000px;}
.yae{bottom:294.541500px;}
.y160{bottom:296.118000px;}
.y14c{bottom:297.415500px;}
.y79{bottom:300.351000px;}
.y1f3{bottom:301.864500px;}
.y114{bottom:306.246000px;}
.y19{bottom:307.299000px;}
.ye9{bottom:307.593000px;}
.y1bf{bottom:308.128500px;}
.y17b{bottom:308.598000px;}
.y191{bottom:309.927000px;}
.y22d{bottom:310.681500px;}
.y41{bottom:310.744500px;}
.yd0{bottom:312.922500px;}
.yad{bottom:313.371000px;}
.y15f{bottom:314.947500px;}
.y14b{bottom:316.245000px;}
.y1f2{bottom:319.125000px;}
.y78{bottom:320.526000px;}
.y18{bottom:325.186500px;}
.ye8{bottom:326.422500px;}
.y1be{bottom:326.958000px;}
.y17a{bottom:327.427500px;}
.y190{bottom:327.859500px;}
.y22c{bottom:327.940500px;}
.y40{bottom:329.574000px;}
.ycf{bottom:331.752000px;}
.yac{bottom:332.200500px;}
.y14a{bottom:335.074500px;}
.y1f1{bottom:336.385500px;}
.y15e{bottom:338.259000px;}
.y17{bottom:343.074000px;}
.y22b{bottom:345.201000px;}
.ye7{bottom:345.252000px;}
.y1bd{bottom:345.786000px;}
.y3f{bottom:348.403500px;}
.yce{bottom:350.581500px;}
.y179{bottom:350.740500px;}
.yab{bottom:351.030000px;}
.y18f{bottom:353.293500px;}
.y1f0{bottom:353.646000px;}
.y149{bottom:353.904000px;}
.y15d{bottom:353.950500px;}
.y77{bottom:354.150000px;}
.y16{bottom:360.963000px;}
.y22a{bottom:362.461500px;}
.ye6{bottom:364.081500px;}
.y1bc{bottom:364.615500px;}
.y178{bottom:366.432000px;}
.y3e{bottom:367.233000px;}
.ycd{bottom:369.411000px;}
.yaa{bottom:369.859500px;}
.y1ef{bottom:370.906500px;}
.y148{bottom:372.733500px;}
.y76{bottom:372.979500px;}
.y229{bottom:379.722000px;}
.ye5{bottom:382.911000px;}
.y1bb{bottom:383.445000px;}
.y15c{bottom:384.378000px;}
.y18e{bottom:385.959000px;}
.y3d{bottom:386.062500px;}
.y1ee{bottom:388.167000px;}
.ycc{bottom:388.240500px;}
.ya9{bottom:388.689000px;}
.y147{bottom:391.563000px;}
.y75{bottom:391.809000px;}
.y228{bottom:396.982500px;}
.y15{bottom:399.024000px;}
.y177{bottom:400.056000px;}
.ye4{bottom:401.740500px;}
.y1ba{bottom:402.274500px;}
.y3c{bottom:404.892000px;}
.y1ed{bottom:405.426000px;}
.ycb{bottom:407.070000px;}
.ya8{bottom:407.518500px;}
.y146{bottom:410.392500px;}
.y74{bottom:410.638500px;}
.y227{bottom:414.243000px;}
.y14{bottom:416.913000px;}
.y176{bottom:418.885500px;}
.y18d{bottom:419.170500px;}
.ye3{bottom:420.570000px;}
.y1b9{bottom:421.104000px;}
.y1ec{bottom:422.686500px;}
.y3b{bottom:423.721500px;}
.yca{bottom:425.899500px;}
.ya7{bottom:426.348000px;}
.y145{bottom:429.222000px;}
.y73{bottom:429.468000px;}
.y226{bottom:431.503500px;}
.y13{bottom:434.800500px;}
.y175{bottom:437.715000px;}
.y18c{bottom:438.000000px;}
.y1b8{bottom:439.933500px;}
.y1eb{bottom:439.947000px;}
.y3a{bottom:442.551000px;}
.yc9{bottom:444.729000px;}
.ya6{bottom:445.177500px;}
.y72{bottom:448.297500px;}
.y225{bottom:448.764000px;}
.y144{bottom:452.535000px;}
.ye2{bottom:454.135500px;}
.y174{bottom:456.544500px;}
.y18b{bottom:456.829500px;}
.y1ea{bottom:457.207500px;}
.y39{bottom:461.380500px;}
.y1b7{bottom:463.246500px;}
.yc8{bottom:463.558500px;}
.ya5{bottom:464.007000px;}
.y224{bottom:466.024500px;}
.y71{bottom:467.127000px;}
.y12{bottom:470.622000px;}
.y1e9{bottom:474.468000px;}
.y173{bottom:475.374000px;}
.y18a{bottom:475.659000px;}
.y38{bottom:480.210000px;}
.yc7{bottom:482.388000px;}
.ya4{bottom:482.836500px;}
.y12c{bottom:482.994000px;}
.y223{bottom:483.283500px;}
.y70{bottom:485.956500px;}
.y143{bottom:486.159000px;}
.y11{bottom:488.509500px;}
.y1e8{bottom:491.728500px;}
.y172{bottom:494.203500px;}
.y189{bottom:494.488500px;}
.y1b6{bottom:496.870500px;}
.y37{bottom:499.039500px;}
.y222{bottom:500.544000px;}
.yc6{bottom:501.217500px;}
.ya3{bottom:501.666000px;}
.y12b{bottom:502.227000px;}
.y6f{bottom:504.786000px;}
.y142{bottom:504.988500px;}
.y1e7{bottom:508.989000px;}
.y171{bottom:513.033000px;}
.y188{bottom:513.318000px;}
.y1b5{bottom:515.700000px;}
.y221{bottom:517.804500px;}
.y36{bottom:517.869000px;}
.ya2{bottom:520.495500px;}
.y6e{bottom:523.615500px;}
.y141{bottom:523.818000px;}
.y10{bottom:524.329500px;}
.yc5{bottom:524.529000px;}
.y1e6{bottom:526.249500px;}
.y170{bottom:531.862500px;}
.y187{bottom:532.147500px;}
.y1b4{bottom:534.529500px;}
.y220{bottom:535.065000px;}
.ya1{bottom:539.323500px;}
.y35{bottom:541.180500px;}
.yf{bottom:542.218500px;}
.y6d{bottom:542.445000px;}
.y140{bottom:542.647500px;}
.y1e5{bottom:543.510000px;}
.y16f{bottom:550.692000px;}
.y186{bottom:550.977000px;}
.y21f{bottom:552.325500px;}
.y1b3{bottom:553.359000px;}
.yc4{bottom:558.153000px;}
.ye{bottom:560.106000px;}
.y6c{bottom:561.274500px;}
.ya0{bottom:562.636500px;}
.y1e4{bottom:565.252500px;}
.y13f{bottom:565.960500px;}
.y113{bottom:566.256000px;}
.y16e{bottom:569.521500px;}
.y21e{bottom:569.586000px;}
.y185{bottom:569.806500px;}
.y1b2{bottom:572.188500px;}
.yc3{bottom:576.982500px;}
.yd{bottom:577.993500px;}
.y15b{bottom:580.053000px;}
.y6b{bottom:580.104000px;}
.y112{bottom:585.085500px;}
.y21d{bottom:586.846500px;}
.y16d{bottom:588.349500px;}
.y184{bottom:588.636000px;}
.y1b1{bottom:591.018000px;}
.yc2{bottom:595.812000px;}
.yc{bottom:595.882500px;}
.y9f{bottom:596.260500px;}
.y15a{bottom:598.882500px;}
.y6a{bottom:598.932000px;}
.y1e3{bottom:600.936000px;}
.y111{bottom:603.915000px;}
.y21c{bottom:604.107000px;}
.y1b0{bottom:609.847500px;}
.y13e{bottom:610.339500px;}
.y183{bottom:611.949000px;}
.yb{bottom:613.770000px;}
.yc1{bottom:614.641500px;}
.y9e{bottom:615.090000px;}
.y34{bottom:616.330500px;}
.y159{bottom:617.712000px;}
.y69{bottom:617.761500px;}
.y1e2{bottom:618.510000px;}
.y21b{bottom:621.366000px;}
.y16c{bottom:621.916500px;}
.y110{bottom:622.744500px;}
.y1af{bottom:628.677000px;}
.yc0{bottom:633.471000px;}
.y9d{bottom:633.919500px;}
.y13d{bottom:635.773500px;}
.y1e1{bottom:636.084000px;}
.y8{bottom:636.141055px;}
.y158{bottom:636.541500px;}
.y68{bottom:636.591000px;}
.y21a{bottom:638.626500px;}
.y16b{bottom:641.149500px;}
.y10f{bottom:641.574000px;}
.y182{bottom:642.376500px;}
.y1ae{bottom:647.506500px;}
.ybf{bottom:652.300500px;}
.y9c{bottom:652.749000px;}
.y1e0{bottom:653.658000px;}
.y33{bottom:653.721000px;}
.y157{bottom:655.371000px;}
.y67{bottom:655.420500px;}
.y219{bottom:655.887000px;}
.y16a{bottom:660.381000px;}
.y10e{bottom:660.403500px;}
.y13c{bottom:661.207500px;}
.y181{bottom:661.609500px;}
.y1ad{bottom:666.336000px;}
.ybe{bottom:671.130000px;}
.y1df{bottom:671.232000px;}
.y9b{bottom:671.578500px;}
.y218{bottom:673.147500px;}
.y32{bottom:673.177500px;}
.y156{bottom:674.200500px;}
.y66{bottom:674.250000px;}
.y13b{bottom:679.140000px;}
.y10d{bottom:679.233000px;}
.y1ac{bottom:685.165500px;}
.y1de{bottom:688.806000px;}
.ybd{bottom:689.959500px;}
.y9a{bottom:690.408000px;}
.y31{bottom:692.635500px;}
.y155{bottom:693.030000px;}
.y65{bottom:693.079500px;}
.y10c{bottom:698.062500px;}
.y1ab{bottom:703.995000px;}
.y13a{bottom:704.574000px;}
.y1dd{bottom:706.380000px;}
.y217{bottom:707.668500px;}
.ybc{bottom:708.789000px;}
.y99{bottom:709.237500px;}
.y64{bottom:711.909000px;}
.y30{bottom:712.092000px;}
.y10b{bottom:716.892000px;}
.y1aa{bottom:722.824500px;}
.y216{bottom:724.929000px;}
.y154{bottom:726.000000px;}
.ybb{bottom:727.618500px;}
.y98{bottom:728.067000px;}
.y139{bottom:730.008000px;}
.y63{bottom:730.738500px;}
.y2f{bottom:731.550000px;}
.y10a{bottom:735.721500px;}
.y1dc{bottom:737.751000px;}
.y1a9{bottom:741.654000px;}
.y215{bottom:742.189500px;}
.ye1{bottom:743.758500px;}
.y153{bottom:745.233000px;}
.yba{bottom:746.448000px;}
.y97{bottom:746.896500px;}
.y62{bottom:749.568000px;}
.y2e{bottom:751.006500px;}
.y109{bottom:754.551000px;}
.y214{bottom:759.450000px;}
.y1db{bottom:759.808500px;}
.y1a8{bottom:760.482000px;}
.ye0{bottom:762.588000px;}
.y138{bottom:762.673500px;}
.y12a{bottom:762.688500px;}
.yb9{bottom:765.277500px;}
.y96{bottom:765.726000px;}
.y61{bottom:768.397500px;}
.y2d{bottom:770.463000px;}
.y213{bottom:776.709000px;}
.y108{bottom:777.864000px;}
.y1a7{bottom:779.311500px;}
.y129{bottom:781.518000px;}
.y95{bottom:784.555500px;}
.y60{bottom:787.227000px;}
.yb8{bottom:788.590500px;}
.y2c{bottom:789.921000px;}
.ydf{bottom:790.831500px;}
.y212{bottom:793.969500px;}
.y1da{bottom:796.570500px;}
.y1a6{bottom:798.141000px;}
.y128{bottom:800.346000px;}
.y137{bottom:801.837000px;}
.y94{bottom:803.385000px;}
.y5f{bottom:806.056500px;}
.y2b{bottom:809.377500px;}
.y211{bottom:811.230000px;}
.y107{bottom:811.488000px;}
.y1a5{bottom:816.970500px;}
.yde{bottom:819.076500px;}
.y127{bottom:819.175500px;}
.y93{bottom:822.214500px;}
.y1d9{bottom:823.111500px;}
.y5e{bottom:824.886000px;}
.y136{bottom:827.271000px;}
.y210{bottom:828.490500px;}
.y106{bottom:830.316000px;}
.y1a4{bottom:835.800000px;}
.y126{bottom:838.005000px;}
.y1d8{bottom:840.685500px;}
.y92{bottom:841.044000px;}
.y5d{bottom:843.715500px;}
.y2a{bottom:844.456500px;}
.y20f{bottom:845.751000px;}
.ydd{bottom:847.320000px;}
.y135{bottom:852.705000px;}
.y105{bottom:853.629000px;}
.y1a3{bottom:854.629500px;}
.y125{bottom:856.834500px;}
.y1d7{bottom:858.259500px;}
.y91{bottom:859.873500px;}
.y5c{bottom:862.545000px;}
.y20e{bottom:863.011500px;}
.y29{bottom:864.936000px;}
.y134{bottom:870.637500px;}
.y1a2{bottom:873.459000px;}
.y1d6{bottom:875.833500px;}
.y90{bottom:878.703000px;}
.y124{bottom:880.147500px;}
.y20d{bottom:880.272000px;}
.y28{bottom:881.074500px;}
.y5b{bottom:881.374500px;}
.ydc{bottom:881.841000px;}
.y104{bottom:887.253000px;}
.y1a1{bottom:892.288500px;}
.y133{bottom:896.071500px;}
.y27{bottom:897.214500px;}
.y8f{bottom:897.532500px;}
.y5a{bottom:900.204000px;}
.y1d5{bottom:902.374500px;}
.y102{bottom:906.082500px;}
.y26{bottom:909.015000px;}
.y103{bottom:909.601500px;}
.y20b{bottom:914.791500px;}
.y20c{bottom:914.793000px;}
.y1a0{bottom:915.601500px;}
.y8e{bottom:916.362000px;}
.y59{bottom:919.033500px;}
.y1d4{bottom:919.948500px;}
.y123{bottom:921.208500px;}
.y132{bottom:921.505500px;}
.y25{bottom:925.153500px;}
.y24{bottom:929.493000px;}
.y20a{bottom:932.052000px;}
.y100{bottom:932.133000px;}
.y8d{bottom:935.191500px;}
.y1d3{bottom:937.522500px;}
.y58{bottom:937.863000px;}
.yfd{bottom:937.983000px;}
.y122{bottom:939.141000px;}
.y23{bottom:941.293500px;}
.yff{bottom:945.126000px;}
.yfc{bottom:948.235500px;}
.y209{bottom:949.312500px;}
.y8c{bottom:954.021000px;}
.y131{bottom:954.171000px;}
.y1d2{bottom:955.096500px;}
.y57{bottom:956.692500px;}
.y121{bottom:957.073500px;}
.y101{bottom:958.351500px;}
.y19f{bottom:958.374000px;}
.y22{bottom:961.773000px;}
.yfe{bottom:964.374000px;}
.y208{bottom:966.573000px;}
.y1d1{bottom:972.670500px;}
.y8b{bottom:972.849000px;}
.y130{bottom:973.404000px;}
.y120{bottom:975.006000px;}
.y56{bottom:975.522000px;}
.y19e{bottom:976.306500px;}
.y207{bottom:983.833500px;}
.yfb{bottom:984.402000px;}
.y1d0{bottom:990.244500px;}
.yf8{bottom:990.253500px;}
.y8a{bottom:991.678500px;}
.y11f{bottom:992.938500px;}
.y19d{bottom:994.239000px;}
.y55{bottom:994.351500px;}
.yfa{bottom:997.396500px;}
.y7{bottom:998.460000px;}
.yf7{bottom:1000.504500px;}
.y206{bottom:1001.094000px;}
.y1cf{bottom:1007.818500px;}
.y89{bottom:1010.508000px;}
.y11e{bottom:1010.871000px;}
.y19c{bottom:1012.171500px;}
.y54{bottom:1013.181000px;}
.yf9{bottom:1016.644500px;}
.y205{bottom:1018.354500px;}
.y11d{bottom:1028.805000px;}
.y88{bottom:1029.337500px;}
.y19b{bottom:1030.104000px;}
.y53{bottom:1032.010500px;}
.y1ce{bottom:1034.359500px;}
.y204{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y19a{bottom:1048.038000px;}
.y87{bottom:1048.167000px;}
.y52{bottom:1050.840000px;}
.y1cd{bottom:1051.933500px;}
.y203{bottom:1052.875500px;}
.y11c{bottom:1054.239000px;}
.y86{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y1cc{bottom:1069.507500px;}
.y51{bottom:1069.669500px;}
.y202{bottom:1070.134500px;}
.y199{bottom:1073.472000px;}
.y85{bottom:1085.826000px;}
.y11b{bottom:1086.904500px;}
.y1cb{bottom:1087.081500px;}
.y201{bottom:1087.395000px;}
.y50{bottom:1088.499000px;}
.y4{bottom:1097.688000px;}
.y84{bottom:1104.655500px;}
.y11a{bottom:1106.137500px;}
.y4f{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4e{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.h16{height:29.529146px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h9{height:33.112997px;}
.h19{height:33.299897px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h12{height:35.052500px;}
.h1b{height:35.503200px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h22{height:39.434227px;}
.h10{height:43.217759px;}
.h11{height:43.516637px;}
.h4{height:43.815515px;}
.h17{height:46.714950px;}
.h1d{height:50.346749px;}
.h2{height:50.931027px;}
.h6{height:54.541601px;}
.h15{height:54.995897px;}
.h1c{height:57.592637px;}
.h20{height:57.598637px;}
.h13{height:57.983897px;}
.h14{height:57.989897px;}
.h1a{height:65.024177px;}
.h3{height:77.379634px;}
.h5{height:77.792486px;}
.h1f{height:83.980637px;}
.h1e{height:83.986637px;}
.h21{height:84.526637px;}
.h18{height:106.113024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:58.054042px;}
.x99{left:85.890000px;}
.x9a{left:143.161500px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x96{left:258.763500px;}
.x98{left:260.175000px;}
.x8e{left:262.501500px;}
.x6{left:271.221000px;}
.x8c{left:274.411500px;}
.x8f{left:278.484000px;}
.x8d{left:279.552000px;}
.xb{left:282.786000px;}
.x91{left:287.761500px;}
.x87{left:293.955000px;}
.x60{left:295.947000px;}
.x75{left:297.085500px;}
.x92{left:298.408500px;}
.x68{left:301.843500px;}
.x94{left:306.508500px;}
.x69{left:307.884000px;}
.x8{left:309.475500px;}
.x88{left:311.091000px;}
.x61{left:312.397500px;}
.x39{left:315.075000px;}
.x62{left:318.646500px;}
.x9{left:320.793000px;}
.x52{left:323.863500px;}
.x16{left:327.871500px;}
.x3a{left:330.018000px;}
.x37{left:331.486500px;}
.x17{left:335.343000px;}
.x93{left:336.723000px;}
.x63{left:338.106000px;}
.x97{left:340.405500px;}
.x64{left:344.355000px;}
.x38{left:346.429500px;}
.x6a{left:360.786000px;}
.x35{left:363.384000px;}
.x65{left:366.595500px;}
.x25{left:369.925500px;}
.x9c{left:373.701000px;}
.x3d{left:375.775500px;}
.x36{left:378.328500px;}
.x26{left:384.870000px;}
.x6b{left:388.983000px;}
.x3e{left:390.718500px;}
.x9b{left:391.965000px;}
.x66{left:396.142500px;}
.x2b{left:399.118500px;}
.x53{left:411.916500px;}
.x2c{left:414.063000px;}
.xc{left:416.001000px;}
.x67{left:417.078000px;}
.xd{left:423.472500px;}
.x54{left:426.859500px;}
.x55{left:430.671000px;}
.x4e{left:433.858500px;}
.x29{left:437.148000px;}
.x5f{left:443.080500px;}
.x56{left:445.614000px;}
.x4f{left:448.803000px;}
.x2a{left:452.092500px;}
.x5e{left:453.409500px;}
.x5d{left:457.087500px;}
.x31{left:458.412000px;}
.x33{left:463.437000px;}
.x81{left:464.659500px;}
.x7c{left:471.354000px;}
.x32{left:473.356500px;}
.x89{left:475.467000px;}
.x34{left:478.381500px;}
.x72{left:484.990500px;}
.x8a{left:492.604500px;}
.x95{left:498.451500px;}
.x70{left:507.007500px;}
.x78{left:512.746500px;}
.x3b{left:521.710500px;}
.x79{left:527.503500px;}
.x7d{left:530.122500px;}
.x71{left:531.807000px;}
.x82{left:533.230500px;}
.x3c{left:536.653500px;}
.x27{left:537.954000px;}
.x73{left:539.400000px;}
.x7f{left:543.043500px;}
.x7e{left:544.491000px;}
.x84{left:546.151500px;}
.x83{left:547.599000px;}
.x43{left:549.454500px;}
.x28{left:552.898500px;}
.x57{left:557.815500px;}
.x7a{left:561.057000px;}
.x44{left:564.397500px;}
.x85{left:569.707500px;}
.x74{left:571.594500px;}
.x58{left:572.760000px;}
.x59{left:576.570000px;}
.x6c{left:578.763000px;}
.x77{left:584.107500px;}
.x86{left:585.607500px;}
.x76{left:587.634000px;}
.x1b{left:591.922500px;}
.x1d{left:599.986500px;}
.x80{left:601.000500px;}
.x48{left:602.724000px;}
.xe{left:605.026500px;}
.x1c{left:606.867000px;}
.x3f{left:608.854500px;}
.x6d{left:610.341000px;}
.xf{left:612.498000px;}
.x1e{left:614.931000px;}
.x49{left:617.668500px;}
.x4a{left:621.397500px;}
.x40{left:623.797500px;}
.x14{left:630.102000px;}
.x23{left:632.701500px;}
.x4b{left:636.340500px;}
.x15{left:637.575000px;}
.x24{left:647.646000px;}
.x18{left:649.435500px;}
.x19{left:656.907000px;}
.x8b{left:661.450500px;}
.x50{left:662.971500px;}
.x6e{left:666.621000px;}
.xa3{left:669.096000px;}
.x7b{left:670.197000px;}
.x51{left:677.914500px;}
.x6f{left:682.876500px;}
.x1f{left:691.570500px;}
.x9d{left:694.278000px;}
.xa4{left:695.995500px;}
.x45{left:703.086000px;}
.x20{left:706.513500px;}
.xa1{left:715.269000px;}
.x46{left:718.030500px;}
.x9f{left:727.534500px;}
.x90{left:735.424500px;}
.x4c{left:738.027000px;}
.xa2{left:742.168500px;}
.x2f{left:753.651000px;}
.x21{left:757.447500px;}
.xa0{left:761.857500px;}
.xa{left:764.638500px;}
.x30{left:768.594000px;}
.x5a{left:770.362500px;}
.x4d{left:771.625500px;}
.x2d{left:773.103000px;}
.x5b{left:785.307000px;}
.x2e{left:788.047500px;}
.x41{left:795.618000px;}
.x47{left:798.967500px;}
.x42{left:810.562500px;}
.x5c{left:813.139500px;}
.x12{left:814.161000px;}
.x1a{left:817.698000px;}
.x22{left:820.107000px;}
.x13{left:821.632500px;}
.x10{left:825.169500px;}
.x11{left:832.642500px;}
.x9e{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-11.120000pt;}
.v5{vertical-align:-9.909333pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.968000pt;}
.va{vertical-align:12.512000pt;}
.vb{vertical-align:15.354667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.941333pt;}
.v8{vertical-align:35.973333pt;}
.v7{vertical-align:92.197333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6b{letter-spacing:0.001688pt;}
.ls66{letter-spacing:0.004267pt;}
.ls1d{letter-spacing:0.087020pt;}
.ls3e{letter-spacing:0.092353pt;}
.ls4e{letter-spacing:0.196214pt;}
.ls38{letter-spacing:0.209686pt;}
.ls54{letter-spacing:0.240696pt;}
.ls31{letter-spacing:0.369686pt;}
.ls3f{letter-spacing:0.375020pt;}
.ls18{letter-spacing:0.482502pt;}
.ls25{letter-spacing:0.487835pt;}
.ls51{letter-spacing:0.596214pt;}
.ls58{letter-spacing:0.661852pt;}
.ls5a{letter-spacing:0.667185pt;}
.ls24{letter-spacing:1.006172pt;}
.ls17{letter-spacing:1.011505pt;}
.ls49{letter-spacing:1.049548pt;}
.ls6{letter-spacing:1.133683pt;}
.ls45{letter-spacing:1.164785pt;}
.ls16{letter-spacing:1.166400pt;}
.lsc{letter-spacing:1.170118pt;}
.ls2b{letter-spacing:1.171230pt;}
.ls11{letter-spacing:1.171733pt;}
.ls5d{letter-spacing:1.328347pt;}
.lsf{letter-spacing:1.594966pt;}
.ls0{letter-spacing:1.654338pt;}
.ls10{letter-spacing:2.164214pt;}
.ls19{letter-spacing:2.257067pt;}
.ls50{letter-spacing:2.287711pt;}
.ls13{letter-spacing:2.480518pt;}
.ls20{letter-spacing:2.498118pt;}
.ls3b{letter-spacing:2.597852pt;}
.ls34{letter-spacing:2.603185pt;}
.ls59{letter-spacing:2.657067pt;}
.ls2d{letter-spacing:2.763185pt;}
.ls12{letter-spacing:2.974172pt;}
.ls2c{letter-spacing:2.979505pt;}
.ls1a{letter-spacing:3.329630pt;}
.ls36{letter-spacing:3.452297pt;}
.ls2f{letter-spacing:3.612297pt;}
.ls47{letter-spacing:3.822172pt;}
.ls4a{letter-spacing:3.827505pt;}
.ls1e{letter-spacing:4.107174pt;}
.ls39{letter-spacing:4.227962pt;}
.ls32{letter-spacing:4.230451pt;}
.ls28{letter-spacing:5.617686pt;}
.ls3d{letter-spacing:5.623020pt;}
.ls21{letter-spacing:8.011185pt;}
.ls40{letter-spacing:8.169548pt;}
.ls3c{letter-spacing:8.860297pt;}
.ls26{letter-spacing:8.865630pt;}
.ls4d{letter-spacing:9.191467pt;}
.ls29{letter-spacing:9.280508pt;}
.ls1{letter-spacing:9.293600pt;}
.ls4{letter-spacing:10.626533pt;}
.ls44{letter-spacing:11.267096pt;}
.ls42{letter-spacing:11.421762pt;}
.lsa{letter-spacing:11.423781pt;}
.ls4b{letter-spacing:11.593548pt;}
.ls1c{letter-spacing:11.635096pt;}
.ls23{letter-spacing:11.896429pt;}
.ls15{letter-spacing:11.901762pt;}
.ls69{letter-spacing:11.954133pt;}
.ls46{letter-spacing:12.429762pt;}
.ls68{letter-spacing:13.001663pt;}
.ls7{letter-spacing:13.017797pt;}
.ls8{letter-spacing:13.070931pt;}
.ls57{letter-spacing:13.177199pt;}
.ls60{letter-spacing:13.230333pt;}
.ls9{letter-spacing:13.283467pt;}
.ls61{letter-spacing:13.336601pt;}
.ls43{letter-spacing:13.649067pt;}
.ls5e{letter-spacing:13.654400pt;}
.ls5f{letter-spacing:13.655404pt;}
.ls5c{letter-spacing:13.699096pt;}
.lsb{letter-spacing:14.027341pt;}
.ls41{letter-spacing:14.158172pt;}
.ls14{letter-spacing:14.437841pt;}
.ls1b{letter-spacing:14.443174pt;}
.ls2e{letter-spacing:14.555785pt;}
.ls37{letter-spacing:14.558628pt;}
.ls30{letter-spacing:14.561118pt;}
.ls35{letter-spacing:14.563962pt;}
.ls5b{letter-spacing:15.713067pt;}
.ls62{letter-spacing:15.780758pt;}
.lse{letter-spacing:16.061762pt;}
.ls67{letter-spacing:16.877314pt;}
.ls65{letter-spacing:17.212136pt;}
.ls64{letter-spacing:17.212800pt;}
.ls63{letter-spacing:17.218133pt;}
.ls6a{letter-spacing:17.247597pt;}
.ls6c{letter-spacing:17.467655pt;}
.lsd{letter-spacing:18.584838pt;}
.ls27{letter-spacing:19.605841pt;}
.ls22{letter-spacing:19.611174pt;}
.ls4f{letter-spacing:23.112429pt;}
.ls53{letter-spacing:23.928429pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls3a{letter-spacing:620.505548pt;}
.ls2a{letter-spacing:651.118881pt;}
.ls33{letter-spacing:656.217548pt;}
.ls1f{letter-spacing:671.476214pt;}
.ls48{letter-spacing:673.118881pt;}
.ls52{letter-spacing:673.670400pt;}
.ls55{letter-spacing:719.478029pt;}
.ls56{letter-spacing:758.582029pt;}
.ls4c{letter-spacing:772.606172pt;}
.ws0{word-spacing:-25.362056pt;}
.ws73{word-spacing:-14.611813pt;}
.ws60{word-spacing:-13.283467pt;}
.wsaa{word-spacing:-11.955200pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.ws58{word-spacing:-2.816095pt;}
.ws5d{word-spacing:-2.709827pt;}
.ws1b{word-spacing:-2.677965pt;}
.ws50{word-spacing:-2.656693pt;}
.ws48{word-spacing:-2.603559pt;}
.wsa1{word-spacing:-2.550426pt;}
.wsbe{word-spacing:-2.534502pt;}
.ws49{word-spacing:-2.391024pt;}
.ws9a{word-spacing:-2.231622pt;}
.ws57{word-spacing:-2.178489pt;}
.ws85{word-spacing:-2.019087pt;}
.wsa9{word-spacing:-1.960653pt;}
.ws40{word-spacing:-1.912819pt;}
.ws3f{word-spacing:-1.859685pt;}
.ws94{word-spacing:-1.806551pt;}
.ws8d{word-spacing:-1.753418pt;}
.ws59{word-spacing:-1.700284pt;}
.ws5{word-spacing:-1.696326pt;}
.ws18{word-spacing:-1.625907pt;}
.ws2f{word-spacing:-1.540882pt;}
.ws75{word-spacing:-1.482445pt;}
.ws76{word-spacing:-1.243341pt;}
.ws91{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.wsc2{word-spacing:-1.147699pt;}
.ws54{word-spacing:-0.903276pt;}
.ws44{word-spacing:-0.850142pt;}
.wsa6{word-spacing:-0.812954pt;}
.wsa2{word-spacing:-0.637606pt;}
.ws38{word-spacing:-0.584473pt;}
.ws61{word-spacing:-0.531339pt;}
.wsd6{word-spacing:-0.430387pt;}
.ws82{word-spacing:-0.425071pt;}
.ws37{word-spacing:-0.318803pt;}
.wsc5{word-spacing:-0.286925pt;}
.ws1f{word-spacing:-0.265669pt;}
.wsc9{word-spacing:-0.239104pt;}
.ws31{word-spacing:-0.212535pt;}
.ws8f{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws28{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.047821pt;}
.wsd0{word-spacing:-0.005845pt;}
.wsc4{word-spacing:-0.003209pt;}
.wsb7{word-spacing:-0.002901pt;}
.wsd7{word-spacing:-0.002364pt;}
.ws2d{word-spacing:-0.002134pt;}
.wsd3{word-spacing:-0.001263pt;}
.wsc3{word-spacing:-0.001126pt;}
.wsbc{word-spacing:-0.000913pt;}
.wsbd{word-spacing:-0.000196pt;}
.ws1{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.001178pt;}
.wsb3{word-spacing:0.001732pt;}
.ws14{word-spacing:0.042507pt;}
.ws97{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws15{word-spacing:0.095642pt;}
.ws20{word-spacing:0.106268pt;}
.ws89{word-spacing:0.143462pt;}
.ws33{word-spacing:0.159402pt;}
.wsa{word-spacing:0.185968pt;}
.ws74{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.wsca{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws29{word-spacing:0.265669pt;}
.ws87{word-spacing:0.286925pt;}
.ws53{word-spacing:0.318803pt;}
.ws84{word-spacing:0.371937pt;}
.ws83{word-spacing:0.425071pt;}
.ws69{word-spacing:0.478208pt;}
.ws86{word-spacing:0.526029pt;}
.ws56{word-spacing:0.531339pt;}
.ws23{word-spacing:0.584473pt;}
.wsab{word-spacing:0.621670pt;}
.wsa4{word-spacing:0.637606pt;}
.ws81{word-spacing:0.690740pt;}
.ws68{word-spacing:0.717312pt;}
.ws5b{word-spacing:0.743874pt;}
.wscc{word-spacing:0.765133pt;}
.ws52{word-spacing:0.797008pt;}
.wsa8{word-spacing:0.812954pt;}
.ws24{word-spacing:0.850142pt;}
.wsa0{word-spacing:0.903276pt;}
.ws9f{word-spacing:0.956410pt;}
.wscb{word-spacing:1.052058pt;}
.ws22{word-spacing:1.062677pt;}
.ws39{word-spacing:1.115811pt;}
.ws46{word-spacing:1.168945pt;}
.ws9d{word-spacing:1.381481pt;}
.wsa7{word-spacing:1.386803pt;}
.ws32{word-spacing:1.487748pt;}
.wsc7{word-spacing:1.530266pt;}
.ws51{word-spacing:1.540882pt;}
.ws65{word-spacing:1.753418pt;}
.wsb{word-spacing:1.785293pt;}
.ws45{word-spacing:1.806551pt;}
.ws88{word-spacing:1.859685pt;}
.ws34{word-spacing:1.912819pt;}
.wsd4{word-spacing:1.960653pt;}
.ws5c{word-spacing:2.019087pt;}
.ws1d{word-spacing:2.072221pt;}
.ws19{word-spacing:2.151936pt;}
.ws5e{word-spacing:2.178489pt;}
.wsa5{word-spacing:2.199757pt;}
.ws7{word-spacing:2.230102pt;}
.ws8{word-spacing:2.231616pt;}
.ws8b{word-spacing:2.343219pt;}
.ws4c{word-spacing:2.391024pt;}
.wsc8{word-spacing:2.391040pt;}
.ws3e{word-spacing:2.444158pt;}
.ws8c{word-spacing:2.486682pt;}
.ws90{word-spacing:2.497292pt;}
.ws35{word-spacing:2.550426pt;}
.wsbb{word-spacing:2.582323pt;}
.ws8a{word-spacing:2.630144pt;}
.ws47{word-spacing:2.762961pt;}
.ws62{word-spacing:2.802577pt;}
.ws64{word-spacing:2.802838pt;}
.ws63{word-spacing:2.805322pt;}
.ws4a{word-spacing:2.816095pt;}
.wsb4{word-spacing:2.860527pt;}
.wsb5{word-spacing:2.861175pt;}
.wsc1{word-spacing:2.861636pt;}
.wsba{word-spacing:2.863343pt;}
.wsd5{word-spacing:2.865673pt;}
.wsb9{word-spacing:2.866620pt;}
.wsac{word-spacing:2.866628pt;}
.wsb2{word-spacing:2.867055pt;}
.wsad{word-spacing:2.869248pt;}
.wsce{word-spacing:2.869734pt;}
.wscd{word-spacing:3.012710pt;}
.ws92{word-spacing:3.028630pt;}
.wsd1{word-spacing:3.108352pt;}
.ws41{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.wsbf{word-spacing:3.203994pt;}
.ws4e{word-spacing:3.241166pt;}
.ws4b{word-spacing:3.347434pt;}
.ws5a{word-spacing:3.400567pt;}
.ws93{word-spacing:3.453701pt;}
.wscf{word-spacing:3.490918pt;}
.ws4f{word-spacing:3.559969pt;}
.ws36{word-spacing:3.719371pt;}
.ws1e{word-spacing:3.825638pt;}
.ws66{word-spacing:3.931906pt;}
.ws78{word-spacing:3.969126pt;}
.ws5f{word-spacing:3.985040pt;}
.ws30{word-spacing:4.038174pt;}
.ws3d{word-spacing:4.091308pt;}
.ws9b{word-spacing:4.144442pt;}
.ws26{word-spacing:4.250709pt;}
.ws77{word-spacing:4.256051pt;}
.ws71{word-spacing:4.356977pt;}
.ws27{word-spacing:4.463245pt;}
.ws4d{word-spacing:4.675780pt;}
.ws6b{word-spacing:4.728914pt;}
.ws8e{word-spacing:4.888316pt;}
.wsb8{word-spacing:4.973363pt;}
.ws6a{word-spacing:4.994583pt;}
.ws55{word-spacing:5.047717pt;}
.ws72{word-spacing:5.207119pt;}
.wsc0{word-spacing:5.308109pt;}
.ws3b{word-spacing:5.313387pt;}
.ws3a{word-spacing:5.366521pt;}
.ws12{word-spacing:5.393072pt;}
.wsd2{word-spacing:5.451571pt;}
.ws13{word-spacing:5.467459pt;}
.ws43{word-spacing:5.525922pt;}
.wsa3{word-spacing:5.685324pt;}
.ws3c{word-spacing:5.738458pt;}
.wsb6{word-spacing:5.929779pt;}
.ws67{word-spacing:6.216662pt;}
.ws9c{word-spacing:6.322930pt;}
.ws2c{word-spacing:6.535466pt;}
.ws42{word-spacing:6.588599pt;}
.ws9e{word-spacing:6.854269pt;}
.ws80{word-spacing:7.279340pt;}
.ws10{word-spacing:7.699075pt;}
.wsaf{word-spacing:10.268228pt;}
.wsb0{word-spacing:10.281472pt;}
.ws6{word-spacing:13.763148pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.wsae{word-spacing:14.680986pt;}
.wsf{word-spacing:15.732893pt;}
.ws11{word-spacing:24.399002pt;}
.wsb1{word-spacing:34.096230pt;}
.ws79{word-spacing:42.666495pt;}
.ws3{word-spacing:54.221867pt;}
.ws6c{word-spacing:66.842404pt;}
.ws7b{word-spacing:81.773021pt;}
.ws6d{word-spacing:92.665463pt;}
.ws70{word-spacing:92.718597pt;}
.ws6f{word-spacing:105.948930pt;}
.ws7e{word-spacing:108.339954pt;}
.ws7a{word-spacing:109.508899pt;}
.ws6e{word-spacing:119.285531pt;}
.ws7d{word-spacing:129.540367pt;}
.ws7f{word-spacing:142.823834pt;}
.ws95{word-spacing:154.513284pt;}
.ws98{word-spacing:156.054166pt;}
.ws96{word-spacing:173.694610pt;}
.ws99{word-spacing:175.235492pt;}
.ws7c{word-spacing:194.629354pt;}
._50{margin-left:-18.393366pt;}
._1b{margin-left:-6.794409pt;}
._2{margin-left:-5.892533pt;}
._15{margin-left:-4.835182pt;}
._8{margin-left:-3.898653pt;}
._5{margin-left:-2.752326pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._0{width:2.655045pt;}
._1e{width:3.719371pt;}
._45{width:9.085952pt;}
._c{width:10.548548pt;}
._6{width:11.530016pt;}
._11{width:13.177232pt;}
._a{width:14.525798pt;}
._9{width:15.456693pt;}
._f{width:16.524633pt;}
._e{width:17.906113pt;}
._1a{width:19.181326pt;}
._b{width:20.802048pt;}
._18{width:21.844746pt;}
._d{width:23.159566pt;}
._17{width:24.388445pt;}
._1d{width:25.823059pt;}
._19{width:27.098272pt;}
._7{width:29.011008pt;}
._4b{width:30.634225pt;}
._1c{width:31.986588pt;}
._14{width:32.942997pt;}
._16{width:34.218210pt;}
._1f{width:35.533303pt;}
._10{width:36.449833pt;}
._51{width:37.412228pt;}
._3d{width:38.482372pt;}
._4c{width:44.896301pt;}
._4d{width:46.051430pt;}
._4f{width:54.993920pt;}
._1{width:61.661897pt;}
._46{width:63.745126pt;}
._49{width:74.791731pt;}
._4e{width:78.904320pt;}
._4a{width:83.829862pt;}
._20{width:86.815379pt;}
._47{width:101.953946pt;}
._48{width:103.675494pt;}
._24{width:132.515863pt;}
._29{width:145.799330pt;}
._39{width:151.112717pt;}
._2c{width:162.005159pt;}
._30{width:165.565129pt;}
._35{width:167.159145pt;}
._23{width:168.700027pt;}
._2e{width:176.032467pt;}
._2f{width:182.509506pt;}
._28{width:195.213826pt;}
._38{width:200.527213pt;}
._37{width:201.802426pt;}
._21{width:205.521796pt;}
._40{width:209.825639pt;}
._43{width:211.366522pt;}
._3b{width:215.085892pt;}
._34{width:216.467373pt;}
._2d{width:220.027342pt;}
._2b{width:223.799846pt;}
._22{width:224.703122pt;}
._25{width:226.244004pt;}
._3c{width:228.369359pt;}
._33{width:229.538304pt;}
._2a{width:239.527471pt;}
._31{width:241.493424pt;}
._26{width:247.603819pt;}
._27{width:251.270055pt;}
._36{width:278.580863pt;}
._3a{width:291.864330pt;}
._32{width:305.519733pt;}
._41{width:406.633482pt;}
._44{width:408.121230pt;}
._3f{width:419.916948pt;}
._42{width:421.404697pt;}
._12{width:811.678717pt;}
._3e{width:2210.839733pt;}
._13{width:2232.093067pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fsc{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y4d{bottom:28.346667pt;}
.y12f{bottom:79.105333pt;}
.y200{bottom:84.214667pt;}
.yf5{bottom:86.304000pt;}
.yf6{bottom:89.432000pt;}
.y1ca{bottom:89.781333pt;}
.y21{bottom:91.398667pt;}
.y4c{bottom:92.108000pt;}
.ydb{bottom:94.044000pt;}
.y83{bottom:95.621333pt;}
.y12e{bottom:95.842667pt;}
.y1ff{bottom:99.556000pt;}
.yf3{bottom:103.041333pt;}
.yf4{bottom:106.169333pt;}
.y1c9{bottom:106.518667pt;}
.y20{bottom:107.298667pt;}
.y4b{bottom:108.844000pt;}
.yda{bottom:110.780000pt;}
.yb7{bottom:111.178667pt;}
.y82{bottom:112.358667pt;}
.y169{bottom:112.580000pt;}
.y12d{bottom:113.530667pt;}
.y1fe{bottom:114.898667pt;}
.y237{bottom:122.736000pt;}
.y1f{bottom:123.200000pt;}
.y1c8{bottom:123.256000pt;}
.y4a{bottom:125.581333pt;}
.yd9{bottom:127.517333pt;}
.yb6{bottom:127.916000pt;}
.y81{bottom:129.096000pt;}
.y168{bottom:129.317333pt;}
.y1fd{bottom:130.241333pt;}
.yf2{bottom:132.310667pt;}
.yef{bottom:137.510667pt;}
.y236{bottom:138.078667pt;}
.y1e{bottom:139.100000pt;}
.y1c7{bottom:139.993333pt;}
.y49{bottom:142.318667pt;}
.yf1{bottom:143.860000pt;}
.yd8{bottom:144.254667pt;}
.yb5{bottom:144.653333pt;}
.y1fc{bottom:145.584000pt;}
.y80{bottom:145.833333pt;}
.y167{bottom:146.054667pt;}
.yee{bottom:146.622667pt;}
.y235{bottom:153.421333pt;}
.y1d{bottom:155.000000pt;}
.y1c6{bottom:156.730667pt;}
.y48{bottom:159.056000pt;}
.y1fb{bottom:160.926667pt;}
.yf0{bottom:160.969333pt;}
.yd7{bottom:160.992000pt;}
.yb4{bottom:161.390667pt;}
.y7f{bottom:162.570667pt;}
.y166{bottom:162.792000pt;}
.y152{bottom:163.946667pt;}
.y234{bottom:168.762667pt;}
.y1c{bottom:170.901333pt;}
.y1c5{bottom:173.468000pt;}
.y119{bottom:175.074667pt;}
.y47{bottom:175.793333pt;}
.y1fa{bottom:176.269333pt;}
.yd6{bottom:177.729333pt;}
.yb3{bottom:178.128000pt;}
.y7e{bottom:179.308000pt;}
.y165{bottom:179.529333pt;}
.y151{bottom:180.684000pt;}
.y233{bottom:184.105333pt;}
.y1b{bottom:186.801333pt;}
.yed{bottom:189.729333pt;}
.y1c4{bottom:190.205333pt;}
.y180{bottom:190.624000pt;}
.y1f9{bottom:191.612000pt;}
.y118{bottom:191.812000pt;}
.y46{bottom:192.530667pt;}
.yd5{bottom:194.466667pt;}
.yb2{bottom:194.865333pt;}
.y7d{bottom:196.045333pt;}
.y164{bottom:196.266667pt;}
.y150{bottom:197.421333pt;}
.y232{bottom:199.448000pt;}
.y1a{bottom:202.701333pt;}
.yec{bottom:206.466667pt;}
.y1c3{bottom:206.942667pt;}
.y1f8{bottom:206.954667pt;}
.y198{bottom:207.141333pt;}
.y17f{bottom:207.361333pt;}
.y117{bottom:208.549333pt;}
.y45{bottom:209.268000pt;}
.yd4{bottom:211.204000pt;}
.yb1{bottom:211.602667pt;}
.y195{bottom:211.729333pt;}
.y7c{bottom:212.782667pt;}
.y163{bottom:213.004000pt;}
.y14f{bottom:214.158667pt;}
.y231{bottom:214.790667pt;}
.y1f6{bottom:222.296000pt;}
.y1f7{bottom:222.297333pt;}
.y1c2{bottom:223.680000pt;}
.y17e{bottom:224.097333pt;}
.y197{bottom:224.237333pt;}
.y116{bottom:225.286667pt;}
.y44{bottom:226.005333pt;}
.y194{bottom:227.670667pt;}
.yd3{bottom:227.941333pt;}
.yb0{bottom:228.340000pt;}
.y7b{bottom:229.520000pt;}
.y162{bottom:229.741333pt;}
.y230{bottom:230.133333pt;}
.y14e{bottom:230.894667pt;}
.yeb{bottom:231.573333pt;}
.y1f5{bottom:237.638667pt;}
.y1c1{bottom:240.417333pt;}
.y17d{bottom:240.834667pt;}
.y196{bottom:241.333333pt;}
.y43{bottom:242.742667pt;}
.y193{bottom:243.610667pt;}
.yd2{bottom:244.678667pt;}
.yaf{bottom:245.077333pt;}
.y22f{bottom:245.476000pt;}
.y7a{bottom:246.257333pt;}
.y161{bottom:246.478667pt;}
.y14d{bottom:247.632000pt;}
.y1f4{bottom:252.981333pt;}
.y115{bottom:255.122667pt;}
.yea{bottom:256.678667pt;}
.y1c0{bottom:257.154667pt;}
.y17c{bottom:257.572000pt;}
.y42{bottom:259.480000pt;}
.y192{bottom:259.550667pt;}
.y22e{bottom:260.818667pt;}
.yd1{bottom:261.416000pt;}
.yae{bottom:261.814667pt;}
.y160{bottom:263.216000pt;}
.y14c{bottom:264.369333pt;}
.y79{bottom:266.978667pt;}
.y1f3{bottom:268.324000pt;}
.y114{bottom:272.218667pt;}
.y19{bottom:273.154667pt;}
.ye9{bottom:273.416000pt;}
.y1bf{bottom:273.892000pt;}
.y17b{bottom:274.309333pt;}
.y191{bottom:275.490667pt;}
.y22d{bottom:276.161333pt;}
.y41{bottom:276.217333pt;}
.yd0{bottom:278.153333pt;}
.yad{bottom:278.552000pt;}
.y15f{bottom:279.953333pt;}
.y14b{bottom:281.106667pt;}
.y1f2{bottom:283.666667pt;}
.y78{bottom:284.912000pt;}
.y18{bottom:289.054667pt;}
.ye8{bottom:290.153333pt;}
.y1be{bottom:290.629333pt;}
.y17a{bottom:291.046667pt;}
.y190{bottom:291.430667pt;}
.y22c{bottom:291.502667pt;}
.y40{bottom:292.954667pt;}
.ycf{bottom:294.890667pt;}
.yac{bottom:295.289333pt;}
.y14a{bottom:297.844000pt;}
.y1f1{bottom:299.009333pt;}
.y15e{bottom:300.674667pt;}
.y17{bottom:304.954667pt;}
.y22b{bottom:306.845333pt;}
.ye7{bottom:306.890667pt;}
.y1bd{bottom:307.365333pt;}
.y3f{bottom:309.692000pt;}
.yce{bottom:311.628000pt;}
.y179{bottom:311.769333pt;}
.yab{bottom:312.026667pt;}
.y18f{bottom:314.038667pt;}
.y1f0{bottom:314.352000pt;}
.y149{bottom:314.581333pt;}
.y15d{bottom:314.622667pt;}
.y77{bottom:314.800000pt;}
.y16{bottom:320.856000pt;}
.y22a{bottom:322.188000pt;}
.ye6{bottom:323.628000pt;}
.y1bc{bottom:324.102667pt;}
.y178{bottom:325.717333pt;}
.y3e{bottom:326.429333pt;}
.ycd{bottom:328.365333pt;}
.yaa{bottom:328.764000pt;}
.y1ef{bottom:329.694667pt;}
.y148{bottom:331.318667pt;}
.y76{bottom:331.537333pt;}
.y229{bottom:337.530667pt;}
.ye5{bottom:340.365333pt;}
.y1bb{bottom:340.840000pt;}
.y15c{bottom:341.669333pt;}
.y18e{bottom:343.074667pt;}
.y3d{bottom:343.166667pt;}
.y1ee{bottom:345.037333pt;}
.ycc{bottom:345.102667pt;}
.ya9{bottom:345.501333pt;}
.y147{bottom:348.056000pt;}
.y75{bottom:348.274667pt;}
.y228{bottom:352.873333pt;}
.y15{bottom:354.688000pt;}
.y177{bottom:355.605333pt;}
.ye4{bottom:357.102667pt;}
.y1ba{bottom:357.577333pt;}
.y3c{bottom:359.904000pt;}
.y1ed{bottom:360.378667pt;}
.ycb{bottom:361.840000pt;}
.ya8{bottom:362.238667pt;}
.y146{bottom:364.793333pt;}
.y74{bottom:365.012000pt;}
.y227{bottom:368.216000pt;}
.y14{bottom:370.589333pt;}
.y176{bottom:372.342667pt;}
.y18d{bottom:372.596000pt;}
.ye3{bottom:373.840000pt;}
.y1b9{bottom:374.314667pt;}
.y1ec{bottom:375.721333pt;}
.y3b{bottom:376.641333pt;}
.yca{bottom:378.577333pt;}
.ya7{bottom:378.976000pt;}
.y145{bottom:381.530667pt;}
.y73{bottom:381.749333pt;}
.y226{bottom:383.558667pt;}
.y13{bottom:386.489333pt;}
.y175{bottom:389.080000pt;}
.y18c{bottom:389.333333pt;}
.y1b8{bottom:391.052000pt;}
.y1eb{bottom:391.064000pt;}
.y3a{bottom:393.378667pt;}
.yc9{bottom:395.314667pt;}
.ya6{bottom:395.713333pt;}
.y72{bottom:398.486667pt;}
.y225{bottom:398.901333pt;}
.y144{bottom:402.253333pt;}
.ye2{bottom:403.676000pt;}
.y174{bottom:405.817333pt;}
.y18b{bottom:406.070667pt;}
.y1ea{bottom:406.406667pt;}
.y39{bottom:410.116000pt;}
.y1b7{bottom:411.774667pt;}
.yc8{bottom:412.052000pt;}
.ya5{bottom:412.450667pt;}
.y224{bottom:414.244000pt;}
.y71{bottom:415.224000pt;}
.y12{bottom:418.330667pt;}
.y1e9{bottom:421.749333pt;}
.y173{bottom:422.554667pt;}
.y18a{bottom:422.808000pt;}
.y38{bottom:426.853333pt;}
.yc7{bottom:428.789333pt;}
.ya4{bottom:429.188000pt;}
.y12c{bottom:429.328000pt;}
.y223{bottom:429.585333pt;}
.y70{bottom:431.961333pt;}
.y143{bottom:432.141333pt;}
.y11{bottom:434.230667pt;}
.y1e8{bottom:437.092000pt;}
.y172{bottom:439.292000pt;}
.y189{bottom:439.545333pt;}
.y1b6{bottom:441.662667pt;}
.y37{bottom:443.590667pt;}
.y222{bottom:444.928000pt;}
.yc6{bottom:445.526667pt;}
.ya3{bottom:445.925333pt;}
.y12b{bottom:446.424000pt;}
.y6f{bottom:448.698667pt;}
.y142{bottom:448.878667pt;}
.y1e7{bottom:452.434667pt;}
.y171{bottom:456.029333pt;}
.y188{bottom:456.282667pt;}
.y1b5{bottom:458.400000pt;}
.y221{bottom:460.270667pt;}
.y36{bottom:460.328000pt;}
.ya2{bottom:462.662667pt;}
.y6e{bottom:465.436000pt;}
.y141{bottom:465.616000pt;}
.y10{bottom:466.070667pt;}
.yc5{bottom:466.248000pt;}
.y1e6{bottom:467.777333pt;}
.y170{bottom:472.766667pt;}
.y187{bottom:473.020000pt;}
.y1b4{bottom:475.137333pt;}
.y220{bottom:475.613333pt;}
.ya1{bottom:479.398667pt;}
.y35{bottom:481.049333pt;}
.yf{bottom:481.972000pt;}
.y6d{bottom:482.173333pt;}
.y140{bottom:482.353333pt;}
.y1e5{bottom:483.120000pt;}
.y16f{bottom:489.504000pt;}
.y186{bottom:489.757333pt;}
.y21f{bottom:490.956000pt;}
.y1b3{bottom:491.874667pt;}
.yc4{bottom:496.136000pt;}
.ye{bottom:497.872000pt;}
.y6c{bottom:498.910667pt;}
.ya0{bottom:500.121333pt;}
.y1e4{bottom:502.446667pt;}
.y13f{bottom:503.076000pt;}
.y113{bottom:503.338667pt;}
.y16e{bottom:506.241333pt;}
.y21e{bottom:506.298667pt;}
.y185{bottom:506.494667pt;}
.y1b2{bottom:508.612000pt;}
.yc3{bottom:512.873333pt;}
.yd{bottom:513.772000pt;}
.y15b{bottom:515.602667pt;}
.y6b{bottom:515.648000pt;}
.y112{bottom:520.076000pt;}
.y21d{bottom:521.641333pt;}
.y16d{bottom:522.977333pt;}
.y184{bottom:523.232000pt;}
.y1b1{bottom:525.349333pt;}
.yc2{bottom:529.610667pt;}
.yc{bottom:529.673333pt;}
.y9f{bottom:530.009333pt;}
.y15a{bottom:532.340000pt;}
.y6a{bottom:532.384000pt;}
.y1e3{bottom:534.165333pt;}
.y111{bottom:536.813333pt;}
.y21c{bottom:536.984000pt;}
.y1b0{bottom:542.086667pt;}
.y13e{bottom:542.524000pt;}
.y183{bottom:543.954667pt;}
.yb{bottom:545.573333pt;}
.yc1{bottom:546.348000pt;}
.y9e{bottom:546.746667pt;}
.y34{bottom:547.849333pt;}
.y159{bottom:549.077333pt;}
.y69{bottom:549.121333pt;}
.y1e2{bottom:549.786667pt;}
.y21b{bottom:552.325333pt;}
.y16c{bottom:552.814667pt;}
.y110{bottom:553.550667pt;}
.y1af{bottom:558.824000pt;}
.yc0{bottom:563.085333pt;}
.y9d{bottom:563.484000pt;}
.y13d{bottom:565.132000pt;}
.y1e1{bottom:565.408000pt;}
.y8{bottom:565.458715pt;}
.y158{bottom:565.814667pt;}
.y68{bottom:565.858667pt;}
.y21a{bottom:567.668000pt;}
.y16b{bottom:569.910667pt;}
.y10f{bottom:570.288000pt;}
.y182{bottom:571.001333pt;}
.y1ae{bottom:575.561333pt;}
.ybf{bottom:579.822667pt;}
.y9c{bottom:580.221333pt;}
.y1e0{bottom:581.029333pt;}
.y33{bottom:581.085333pt;}
.y157{bottom:582.552000pt;}
.y67{bottom:582.596000pt;}
.y219{bottom:583.010667pt;}
.y16a{bottom:587.005333pt;}
.y10e{bottom:587.025333pt;}
.y13c{bottom:587.740000pt;}
.y181{bottom:588.097333pt;}
.y1ad{bottom:592.298667pt;}
.ybe{bottom:596.560000pt;}
.y1df{bottom:596.650667pt;}
.y9b{bottom:596.958667pt;}
.y218{bottom:598.353333pt;}
.y32{bottom:598.380000pt;}
.y156{bottom:599.289333pt;}
.y66{bottom:599.333333pt;}
.y13b{bottom:603.680000pt;}
.y10d{bottom:603.762667pt;}
.y1ac{bottom:609.036000pt;}
.y1de{bottom:612.272000pt;}
.ybd{bottom:613.297333pt;}
.y9a{bottom:613.696000pt;}
.y31{bottom:615.676000pt;}
.y155{bottom:616.026667pt;}
.y65{bottom:616.070667pt;}
.y10c{bottom:620.500000pt;}
.y1ab{bottom:625.773333pt;}
.y13a{bottom:626.288000pt;}
.y1dd{bottom:627.893333pt;}
.y217{bottom:629.038667pt;}
.ybc{bottom:630.034667pt;}
.y99{bottom:630.433333pt;}
.y64{bottom:632.808000pt;}
.y30{bottom:632.970667pt;}
.y10b{bottom:637.237333pt;}
.y1aa{bottom:642.510667pt;}
.y216{bottom:644.381333pt;}
.y154{bottom:645.333333pt;}
.ybb{bottom:646.772000pt;}
.y98{bottom:647.170667pt;}
.y139{bottom:648.896000pt;}
.y63{bottom:649.545333pt;}
.y2f{bottom:650.266667pt;}
.y10a{bottom:653.974667pt;}
.y1dc{bottom:655.778667pt;}
.y1a9{bottom:659.248000pt;}
.y215{bottom:659.724000pt;}
.ye1{bottom:661.118667pt;}
.y153{bottom:662.429333pt;}
.yba{bottom:663.509333pt;}
.y97{bottom:663.908000pt;}
.y62{bottom:666.282667pt;}
.y2e{bottom:667.561333pt;}
.y109{bottom:670.712000pt;}
.y214{bottom:675.066667pt;}
.y1db{bottom:675.385333pt;}
.y1a8{bottom:675.984000pt;}
.ye0{bottom:677.856000pt;}
.y138{bottom:677.932000pt;}
.y12a{bottom:677.945333pt;}
.yb9{bottom:680.246667pt;}
.y96{bottom:680.645333pt;}
.y61{bottom:683.020000pt;}
.y2d{bottom:684.856000pt;}
.y213{bottom:690.408000pt;}
.y108{bottom:691.434667pt;}
.y1a7{bottom:692.721333pt;}
.y129{bottom:694.682667pt;}
.y95{bottom:697.382667pt;}
.y60{bottom:699.757333pt;}
.yb8{bottom:700.969333pt;}
.y2c{bottom:702.152000pt;}
.ydf{bottom:702.961333pt;}
.y212{bottom:705.750667pt;}
.y1da{bottom:708.062667pt;}
.y1a6{bottom:709.458667pt;}
.y128{bottom:711.418667pt;}
.y137{bottom:712.744000pt;}
.y94{bottom:714.120000pt;}
.y5f{bottom:716.494667pt;}
.y2b{bottom:719.446667pt;}
.y211{bottom:721.093333pt;}
.y107{bottom:721.322667pt;}
.y1a5{bottom:726.196000pt;}
.yde{bottom:728.068000pt;}
.y127{bottom:728.156000pt;}
.y93{bottom:730.857333pt;}
.y1d9{bottom:731.654667pt;}
.y5e{bottom:733.232000pt;}
.y136{bottom:735.352000pt;}
.y210{bottom:736.436000pt;}
.y106{bottom:738.058667pt;}
.y1a4{bottom:742.933333pt;}
.y126{bottom:744.893333pt;}
.y1d8{bottom:747.276000pt;}
.y92{bottom:747.594667pt;}
.y5d{bottom:749.969333pt;}
.y2a{bottom:750.628000pt;}
.y20f{bottom:751.778667pt;}
.ydd{bottom:753.173333pt;}
.y135{bottom:757.960000pt;}
.y105{bottom:758.781333pt;}
.y1a3{bottom:759.670667pt;}
.y125{bottom:761.630667pt;}
.y1d7{bottom:762.897333pt;}
.y91{bottom:764.332000pt;}
.y5c{bottom:766.706667pt;}
.y20e{bottom:767.121333pt;}
.y29{bottom:768.832000pt;}
.y134{bottom:773.900000pt;}
.y1a2{bottom:776.408000pt;}
.y1d6{bottom:778.518667pt;}
.y90{bottom:781.069333pt;}
.y124{bottom:782.353333pt;}
.y20d{bottom:782.464000pt;}
.y28{bottom:783.177333pt;}
.y5b{bottom:783.444000pt;}
.ydc{bottom:783.858667pt;}
.y104{bottom:788.669333pt;}
.y1a1{bottom:793.145333pt;}
.y133{bottom:796.508000pt;}
.y27{bottom:797.524000pt;}
.y8f{bottom:797.806667pt;}
.y5a{bottom:800.181333pt;}
.y1d5{bottom:802.110667pt;}
.y102{bottom:805.406667pt;}
.y26{bottom:808.013333pt;}
.y103{bottom:808.534667pt;}
.y20b{bottom:813.148000pt;}
.y20c{bottom:813.149333pt;}
.y1a0{bottom:813.868000pt;}
.y8e{bottom:814.544000pt;}
.y59{bottom:816.918667pt;}
.y1d4{bottom:817.732000pt;}
.y123{bottom:818.852000pt;}
.y132{bottom:819.116000pt;}
.y25{bottom:822.358667pt;}
.y24{bottom:826.216000pt;}
.y20a{bottom:828.490667pt;}
.y100{bottom:828.562667pt;}
.y8d{bottom:831.281333pt;}
.y1d3{bottom:833.353333pt;}
.y58{bottom:833.656000pt;}
.yfd{bottom:833.762667pt;}
.y122{bottom:834.792000pt;}
.y23{bottom:836.705333pt;}
.yff{bottom:840.112000pt;}
.yfc{bottom:842.876000pt;}
.y209{bottom:843.833333pt;}
.y8c{bottom:848.018667pt;}
.y131{bottom:848.152000pt;}
.y1d2{bottom:848.974667pt;}
.y57{bottom:850.393333pt;}
.y121{bottom:850.732000pt;}
.y101{bottom:851.868000pt;}
.y19f{bottom:851.888000pt;}
.y22{bottom:854.909333pt;}
.yfe{bottom:857.221333pt;}
.y208{bottom:859.176000pt;}
.y1d1{bottom:864.596000pt;}
.y8b{bottom:864.754667pt;}
.y130{bottom:865.248000pt;}
.y120{bottom:866.672000pt;}
.y56{bottom:867.130667pt;}
.y19e{bottom:867.828000pt;}
.y207{bottom:874.518667pt;}
.yfb{bottom:875.024000pt;}
.y1d0{bottom:880.217333pt;}
.yf8{bottom:880.225333pt;}
.y8a{bottom:881.492000pt;}
.y11f{bottom:882.612000pt;}
.y19d{bottom:883.768000pt;}
.y55{bottom:883.868000pt;}
.yfa{bottom:886.574667pt;}
.y7{bottom:887.520000pt;}
.yf7{bottom:889.337333pt;}
.y206{bottom:889.861333pt;}
.y1cf{bottom:895.838667pt;}
.y89{bottom:898.229333pt;}
.y11e{bottom:898.552000pt;}
.y19c{bottom:899.708000pt;}
.y54{bottom:900.605333pt;}
.yf9{bottom:903.684000pt;}
.y205{bottom:905.204000pt;}
.y11d{bottom:914.493333pt;}
.y88{bottom:914.966667pt;}
.y19b{bottom:915.648000pt;}
.y53{bottom:917.342667pt;}
.y1ce{bottom:919.430667pt;}
.y204{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y19a{bottom:931.589333pt;}
.y87{bottom:931.704000pt;}
.y52{bottom:934.080000pt;}
.y1cd{bottom:935.052000pt;}
.y203{bottom:935.889333pt;}
.y11c{bottom:937.101333pt;}
.y86{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y1cc{bottom:950.673333pt;}
.y51{bottom:950.817333pt;}
.y202{bottom:951.230667pt;}
.y199{bottom:954.197333pt;}
.y85{bottom:965.178667pt;}
.y11b{bottom:966.137333pt;}
.y1cb{bottom:966.294667pt;}
.y201{bottom:966.573333pt;}
.y50{bottom:967.554667pt;}
.y4{bottom:975.722667pt;}
.y84{bottom:981.916000pt;}
.y11a{bottom:983.233333pt;}
.y4f{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4e{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.h16{height:26.248130pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h9{height:29.433775pt;}
.h19{height:29.599908pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h12{height:31.157778pt;}
.h1b{height:31.558400pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h22{height:35.052646pt;}
.h10{height:38.415786pt;}
.h11{height:38.681455pt;}
.h4{height:38.947124pt;}
.h17{height:41.524400pt;}
.h1d{height:44.752666pt;}
.h2{height:45.272024pt;}
.h6{height:48.481423pt;}
.h15{height:48.885242pt;}
.h1c{height:51.193455pt;}
.h20{height:51.198788pt;}
.h13{height:51.541242pt;}
.h14{height:51.546575pt;}
.h1a{height:57.799269pt;}
.h3{height:68.781897pt;}
.h5{height:69.148877pt;}
.h1f{height:74.649455pt;}
.h1e{height:74.654788pt;}
.h21{height:75.134788pt;}
.h18{height:94.322688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.603593pt;}
.x99{left:76.346667pt;}
.x9a{left:127.254667pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x96{left:230.012000pt;}
.x98{left:231.266667pt;}
.x8e{left:233.334667pt;}
.x6{left:241.085333pt;}
.x8c{left:243.921333pt;}
.x8f{left:247.541333pt;}
.x8d{left:248.490667pt;}
.xb{left:251.365333pt;}
.x91{left:255.788000pt;}
.x87{left:261.293333pt;}
.x60{left:263.064000pt;}
.x75{left:264.076000pt;}
.x92{left:265.252000pt;}
.x68{left:268.305333pt;}
.x94{left:272.452000pt;}
.x69{left:273.674667pt;}
.x8{left:275.089333pt;}
.x88{left:276.525333pt;}
.x61{left:277.686667pt;}
.x39{left:280.066667pt;}
.x62{left:283.241333pt;}
.x9{left:285.149333pt;}
.x52{left:287.878667pt;}
.x16{left:291.441333pt;}
.x3a{left:293.349333pt;}
.x37{left:294.654667pt;}
.x17{left:298.082667pt;}
.x93{left:299.309333pt;}
.x63{left:300.538667pt;}
.x97{left:302.582667pt;}
.x64{left:306.093333pt;}
.x38{left:307.937333pt;}
.x6a{left:320.698667pt;}
.x35{left:323.008000pt;}
.x65{left:325.862667pt;}
.x25{left:328.822667pt;}
.x9c{left:332.178667pt;}
.x3d{left:334.022667pt;}
.x36{left:336.292000pt;}
.x26{left:342.106667pt;}
.x6b{left:345.762667pt;}
.x3e{left:347.305333pt;}
.x9b{left:348.413333pt;}
.x66{left:352.126667pt;}
.x2b{left:354.772000pt;}
.x53{left:366.148000pt;}
.x2c{left:368.056000pt;}
.xc{left:369.778667pt;}
.x67{left:370.736000pt;}
.xd{left:376.420000pt;}
.x54{left:379.430667pt;}
.x55{left:382.818667pt;}
.x4e{left:385.652000pt;}
.x29{left:388.576000pt;}
.x5f{left:393.849333pt;}
.x56{left:396.101333pt;}
.x4f{left:398.936000pt;}
.x2a{left:401.860000pt;}
.x5e{left:403.030667pt;}
.x5d{left:406.300000pt;}
.x31{left:407.477333pt;}
.x33{left:411.944000pt;}
.x81{left:413.030667pt;}
.x7c{left:418.981333pt;}
.x32{left:420.761333pt;}
.x89{left:422.637333pt;}
.x34{left:425.228000pt;}
.x72{left:431.102667pt;}
.x8a{left:437.870667pt;}
.x95{left:443.068000pt;}
.x70{left:450.673333pt;}
.x78{left:455.774667pt;}
.x3b{left:463.742667pt;}
.x79{left:468.892000pt;}
.x7d{left:471.220000pt;}
.x71{left:472.717333pt;}
.x82{left:473.982667pt;}
.x3c{left:477.025333pt;}
.x27{left:478.181333pt;}
.x73{left:479.466667pt;}
.x7f{left:482.705333pt;}
.x7e{left:483.992000pt;}
.x84{left:485.468000pt;}
.x83{left:486.754667pt;}
.x43{left:488.404000pt;}
.x28{left:491.465333pt;}
.x57{left:495.836000pt;}
.x7a{left:498.717333pt;}
.x44{left:501.686667pt;}
.x85{left:506.406667pt;}
.x74{left:508.084000pt;}
.x58{left:509.120000pt;}
.x59{left:512.506667pt;}
.x6c{left:514.456000pt;}
.x77{left:519.206667pt;}
.x86{left:520.540000pt;}
.x76{left:522.341333pt;}
.x1b{left:526.153333pt;}
.x1d{left:533.321333pt;}
.x80{left:534.222667pt;}
.x48{left:535.754667pt;}
.xe{left:537.801333pt;}
.x1c{left:539.437333pt;}
.x3f{left:541.204000pt;}
.x6d{left:542.525333pt;}
.xf{left:544.442667pt;}
.x1e{left:546.605333pt;}
.x49{left:549.038667pt;}
.x4a{left:552.353333pt;}
.x40{left:554.486667pt;}
.x14{left:560.090667pt;}
.x23{left:562.401333pt;}
.x4b{left:565.636000pt;}
.x15{left:566.733333pt;}
.x24{left:575.685333pt;}
.x18{left:577.276000pt;}
.x19{left:583.917333pt;}
.x8b{left:587.956000pt;}
.x50{left:589.308000pt;}
.x6e{left:592.552000pt;}
.xa3{left:594.752000pt;}
.x7b{left:595.730667pt;}
.x51{left:602.590667pt;}
.x6f{left:607.001333pt;}
.x1f{left:614.729333pt;}
.x9d{left:617.136000pt;}
.xa4{left:618.662667pt;}
.x45{left:624.965333pt;}
.x20{left:628.012000pt;}
.xa1{left:635.794667pt;}
.x46{left:638.249333pt;}
.x9f{left:646.697333pt;}
.x90{left:653.710667pt;}
.x4c{left:656.024000pt;}
.xa2{left:659.705333pt;}
.x2f{left:669.912000pt;}
.x21{left:673.286667pt;}
.xa0{left:677.206667pt;}
.xa{left:679.678667pt;}
.x30{left:683.194667pt;}
.x5a{left:684.766667pt;}
.x4d{left:685.889333pt;}
.x2d{left:687.202667pt;}
.x5b{left:698.050667pt;}
.x2e{left:700.486667pt;}
.x41{left:707.216000pt;}
.x47{left:710.193333pt;}
.x42{left:720.500000pt;}
.x5c{left:722.790667pt;}
.x12{left:723.698667pt;}
.x1a{left:726.842667pt;}
.x22{left:728.984000pt;}
.x13{left:730.340000pt;}
.x10{left:733.484000pt;}
.x11{left:740.126667pt;}
.x9e{left:744.146667pt;}
}




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