
    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_76aee719b95ae7bdbe38e19a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_c1cc82d24d51420b3262b16e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_06702df29eca803d53fc6d7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_1cf97b8ab93d5c9c4767fc15.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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d78a425a5212fd0464b5ced1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.773000;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_14a831d098818102230e673a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_072fc9b02e7808defc69cbad.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_fd475bbfa98f35a3f085c764.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.580000;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_2b805970368137158b4a7874.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d584d3f38eb9a9b793424c9c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932000;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;}
.m2{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);}
.m7{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);}
.m12{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);}
.m18{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);}
.m1c{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);}
.m11{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);}
.m9{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);}
.m10{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);}
.m4{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);}
.m24{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);}
.m20{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);}
.m8{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);}
.m5{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);}
.m26{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);}
.m22{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);}
.m1f{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);}
.mf{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m21{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);}
.m23{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);}
.md{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);}
.m1d{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);}
.me{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);}
.m25{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);}
.m3{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);}
.m6{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);}
.m19{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);}
.m1a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1e{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);}
.m1b{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);}
.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);}
.mb{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:-19.530000px;}
.v9{vertical-align:-12.510000px;}
.va{vertical-align:-11.442000px;}
.v8{vertical-align:-8.970000px;}
.v4{vertical-align:-1.716000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.964000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:39.264000px;}
.vd{vertical-align:40.464000px;}
.v7{vertical-align:41.796000px;}
.vc{vertical-align:49.434000px;}
.v5{vertical-align:84.312000px;}
.ls5{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000422px;}
.lsb{letter-spacing:0.001133px;}
.ls10{letter-spacing:0.003178px;}
.ls3a{letter-spacing:0.004200px;}
.ls48{letter-spacing:0.004800px;}
.ls33{letter-spacing:0.272725px;}
.ls34{letter-spacing:0.278725px;}
.ls4b{letter-spacing:0.474845px;}
.ls46{letter-spacing:0.498583px;}
.ls3e{letter-spacing:0.504583px;}
.ls2f{letter-spacing:0.749108px;}
.ls26{letter-spacing:0.820741px;}
.ls22{letter-spacing:0.826741px;}
.ls4a{letter-spacing:1.046070px;}
.ls3c{letter-spacing:1.135740px;}
.ls6{letter-spacing:1.275394px;}
.ls4d{letter-spacing:1.314017px;}
.ls2d{letter-spacing:1.493108px;}
.ls43{letter-spacing:1.494390px;}
.ls3{letter-spacing:1.861130px;}
.ls23{letter-spacing:2.091292px;}
.lsc{letter-spacing:3.507900px;}
.lse{letter-spacing:3.513900px;}
.lsf{letter-spacing:3.525945px;}
.lsd{letter-spacing:3.531945px;}
.ls3b{letter-spacing:3.559142px;}
.ls21{letter-spacing:3.944725px;}
.ls52{letter-spacing:11.751601px;}
.ls4{letter-spacing:11.954850px;}
.ls45{letter-spacing:12.135483px;}
.ls1b{letter-spacing:12.339483px;}
.ls49{letter-spacing:13.031081px;}
.ls2e{letter-spacing:13.042741px;}
.ls1a{letter-spacing:13.115675px;}
.ls50{letter-spacing:13.426871px;}
.ls53{letter-spacing:13.436004px;}
.ls4e{letter-spacing:13.448400px;}
.ls51{letter-spacing:13.454400px;}
.ls4f{letter-spacing:13.523373px;}
.ls1c{letter-spacing:13.712700px;}
.ls1d{letter-spacing:13.716017px;}
.ls2c{letter-spacing:14.283483px;}
.ls19{letter-spacing:14.312700px;}
.ls40{letter-spacing:14.577483px;}
.ls42{letter-spacing:14.583483px;}
.ls9{letter-spacing:14.884124px;}
.lsa{letter-spacing:14.943900px;}
.ls39{letter-spacing:14.944200px;}
.ls2b{letter-spacing:15.926153px;}
.ls30{letter-spacing:16.381258px;}
.ls37{letter-spacing:16.381829px;}
.ls4c{letter-spacing:16.796944px;}
.ls18{letter-spacing:17.319483px;}
.ls28{letter-spacing:17.325483px;}
.ls27{letter-spacing:18.022741px;}
.ls1f{letter-spacing:18.140725px;}
.ls7{letter-spacing:19.008641px;}
.ls17{letter-spacing:20.552725px;}
.ls8{letter-spacing:20.981236px;}
.ls36{letter-spacing:21.063483px;}
.ls2a{letter-spacing:21.361258px;}
.ls35{letter-spacing:21.361829px;}
.ls44{letter-spacing:26.439483px;}
.ls3d{letter-spacing:29.337483px;}
.ls24{letter-spacing:30.636300px;}
.ls0{letter-spacing:57.415200px;}
.ls29{letter-spacing:60.520200px;}
.ls1{letter-spacing:70.236600px;}
.ls2{letter-spacing:72.353510px;}
.ls25{letter-spacing:91.096200px;}
.ls20{letter-spacing:94.292700px;}
.ls3f{letter-spacing:100.611483px;}
.ls41{letter-spacing:106.983483px;}
.ls14{letter-spacing:603.439133px;}
.ls11{letter-spacing:633.937133px;}
.ls1e{letter-spacing:646.469108px;}
.ls12{letter-spacing:700.279133px;}
.ls13{letter-spacing:736.105133px;}
.ls15{letter-spacing:752.017133px;}
.ls16{letter-spacing:839.563133px;}
.ls31{letter-spacing:959.015108px;}
.ls38{letter-spacing:965.513108px;}
.ls47{letter-spacing:1150.768200px;}
.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;}
}
.ws56{word-spacing:-26.602715px;}
.wsa8{word-spacing:-16.438290px;}
.ws45{word-spacing:-14.943900px;}
.ws54{word-spacing:-13.449600px;}
.ws9c{word-spacing:-12.493140px;}
.ws18{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsa4{word-spacing:-5.166842px;}
.ws37{word-spacing:-3.287658px;}
.ws44{word-spacing:-3.227882px;}
.ws72{word-spacing:-2.797517px;}
.wsf9{word-spacing:-2.657677px;}
.wsfa{word-spacing:-2.636122px;}
.ws75{word-spacing:-2.571000px;}
.ws70{word-spacing:-2.259533px;}
.ws96{word-spacing:-2.211697px;}
.ws71{word-spacing:-2.044339px;}
.wsfc{word-spacing:-1.990541px;}
.wsca{word-spacing:-1.912819px;}
.ws5{word-spacing:-1.908367px;}
.wsa0{word-spacing:-1.826200px;}
.ws28{word-spacing:-1.793268px;}
.wsef{word-spacing:-1.721549px;}
.ws60{word-spacing:-1.667750px;}
.wsee{word-spacing:-1.613952px;}
.ws11{word-spacing:-1.613941px;}
.wsab{word-spacing:-1.494390px;}
.wsac{word-spacing:-1.467158px;}
.ws61{word-spacing:-1.398758px;}
.wsad{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.ws46{word-spacing:-1.315063px;}
.wse0{word-spacing:-1.291162px;}
.ws47{word-spacing:-1.255288px;}
.ws58{word-spacing:-1.195512px;}
.ws41{word-spacing:-1.135736px;}
.wse9{word-spacing:-1.129766px;}
.ws48{word-spacing:-1.075961px;}
.ws92{word-spacing:-1.016185px;}
.ws12{word-spacing:-0.956410px;}
.wsb9{word-spacing:-0.806976px;}
.ws62{word-spacing:-0.777083px;}
.wsba{word-spacing:-0.591782px;}
.ws32{word-spacing:-0.537980px;}
.ws7f{word-spacing:-0.478205px;}
.ws19{word-spacing:-0.418429px;}
.ws4b{word-spacing:-0.358654px;}
.ws39{word-spacing:-0.298878px;}
.ws15{word-spacing:-0.239102px;}
.ws59{word-spacing:-0.215194px;}
.ws9{word-spacing:-0.179327px;}
.ws5a{word-spacing:-0.161395px;}
.wsb{word-spacing:-0.119551px;}
.wse2{word-spacing:-0.107597px;}
.ws1d{word-spacing:-0.059776px;}
.ws6c{word-spacing:-0.053798px;}
.wsd1{word-spacing:-0.041843px;}
.ws53{word-spacing:-0.023482px;}
.wsdd{word-spacing:-0.006221px;}
.wsa2{word-spacing:-0.003625px;}
.wsea{word-spacing:-0.003082px;}
.ws17{word-spacing:-0.002857px;}
.ws1{word-spacing:-0.001733px;}
.wsa6{word-spacing:-0.000740px;}
.ws9b{word-spacing:-0.000254px;}
.ws95{word-spacing:-0.000223px;}
.ws0{word-spacing:0.000000px;}
.ws6b{word-spacing:0.053798px;}
.wsd{word-spacing:0.059776px;}
.ws6d{word-spacing:0.107597px;}
.wsa{word-spacing:0.119551px;}
.wseb{word-spacing:0.161395px;}
.wsa9{word-spacing:0.165218px;}
.wsc{word-spacing:0.179327px;}
.ws8c{word-spacing:0.215194px;}
.ws16{word-spacing:0.239102px;}
.wsc0{word-spacing:0.268992px;}
.ws63{word-spacing:0.271249px;}
.wsf5{word-spacing:0.282923px;}
.ws10{word-spacing:0.298878px;}
.wsf6{word-spacing:0.322790px;}
.ws8{word-spacing:0.358654px;}
.wsfb{word-spacing:0.376589px;}
.ws1c{word-spacing:0.418429px;}
.wsdc{word-spacing:0.591782px;}
.wscb{word-spacing:0.717307px;}
.ws13{word-spacing:0.777083px;}
.wsd3{word-spacing:0.836858px;}
.wse5{word-spacing:0.860774px;}
.ws3b{word-spacing:0.896634px;}
.wscc{word-spacing:0.956410px;}
.wsb8{word-spacing:1.129766px;}
.wsd5{word-spacing:1.135736px;}
.ws23{word-spacing:1.195512px;}
.wsbe{word-spacing:1.344960px;}
.wse6{word-spacing:1.398758px;}
.ws4f{word-spacing:1.434614px;}
.wsb7{word-spacing:1.452557px;}
.wsb0{word-spacing:1.613941px;}
.ws9a{word-spacing:1.613952px;}
.wse4{word-spacing:1.667750px;}
.wsbf{word-spacing:1.721549px;}
.wsc8{word-spacing:1.775347px;}
.ws2b{word-spacing:1.793268px;}
.ws3e{word-spacing:1.853044px;}
.wsd9{word-spacing:1.882944px;}
.ws52{word-spacing:1.912819px;}
.ws89{word-spacing:1.936742px;}
.ws8a{word-spacing:1.990541px;}
.ws1f{word-spacing:2.032370px;}
.ws5d{word-spacing:2.092146px;}
.wsc7{word-spacing:2.098138px;}
.ws20{word-spacing:2.151922px;}
.ws9f{word-spacing:2.183996px;}
.ws1e{word-spacing:2.211697px;}
.ws88{word-spacing:2.259533px;}
.wsaa{word-spacing:2.297203px;}
.wsc9{word-spacing:2.313331px;}
.ws57{word-spacing:2.331248px;}
.wse1{word-spacing:2.367130px;}
.wsb4{word-spacing:2.391024px;}
.ws43{word-spacing:2.450800px;}
.ws8b{word-spacing:2.528525px;}
.ws27{word-spacing:2.689902px;}
.ws81{word-spacing:2.988780px;}
.ws3a{word-spacing:3.048556px;}
.ws3f{word-spacing:3.108331px;}
.wsfe{word-spacing:3.120307px;}
.wsae{word-spacing:3.155526px;}
.wsd8{word-spacing:3.168107px;}
.wse3{word-spacing:3.174106px;}
.wsf2{word-spacing:3.223296px;}
.ws2d{word-spacing:3.227882px;}
.ws3{word-spacing:3.227904px;}
.wsf0{word-spacing:3.281702px;}
.ws29{word-spacing:3.287658px;}
.ws42{word-spacing:3.347434px;}
.wse7{word-spacing:3.443098px;}
.ws21{word-spacing:3.526760px;}
.wse{word-spacing:3.583475px;}
.wsf{word-spacing:3.586536px;}
.ws5c{word-spacing:3.604493px;}
.ws5f{word-spacing:3.706087px;}
.wsa7{word-spacing:3.730578px;}
.ws74{word-spacing:3.765863px;}
.ws3d{word-spacing:3.825638px;}
.wsdb{word-spacing:3.873485px;}
.ws3c{word-spacing:3.885414px;}
.ws5b{word-spacing:3.927283px;}
.ws38{word-spacing:3.945190px;}
.wsff{word-spacing:3.981082px;}
.ws1b{word-spacing:4.004965px;}
.ws1a{word-spacing:4.064741px;}
.wsf8{word-spacing:4.088678px;}
.ws4c{word-spacing:4.124516px;}
.ws14{word-spacing:4.184292px;}
.ws5e{word-spacing:4.244068px;}
.wsc4{word-spacing:4.303843px;}
.wsc3{word-spacing:4.363619px;}
.ws31{word-spacing:4.423394px;}
.wsd6{word-spacing:4.602721px;}
.ws6f{word-spacing:4.662497px;}
.ws6e{word-spacing:4.722272px;}
.wse8{word-spacing:4.734259px;}
.wsa3{word-spacing:4.944767px;}
.ws4a{word-spacing:4.961375px;}
.wsfd{word-spacing:5.003251px;}
.ws77{word-spacing:5.021150px;}
.ws76{word-spacing:5.029847px;}
.wsf4{word-spacing:5.110848px;}
.wsf3{word-spacing:5.272243px;}
.wsf1{word-spacing:5.326042px;}
.ws2e{word-spacing:5.379804px;}
.ws33{word-spacing:5.559131px;}
.ws2f{word-spacing:5.618906px;}
.ws30{word-spacing:5.678682px;}
.ws4d{word-spacing:5.738458px;}
.wsd7{word-spacing:5.798233px;}
.wsbc{word-spacing:6.025421px;}
.ws51{word-spacing:6.037336px;}
.ws69{word-spacing:6.097111px;}
.ws64{word-spacing:6.216662px;}
.wsaf{word-spacing:6.276438px;}
.wsb3{word-spacing:6.395989px;}
.wsbb{word-spacing:6.402010px;}
.wsb1{word-spacing:6.575316px;}
.wsf7{word-spacing:6.617203px;}
.ws2a{word-spacing:6.635092px;}
.ws50{word-spacing:6.754643px;}
.ws68{word-spacing:6.874194px;}
.wsde{word-spacing:7.047590px;}
.ws80{word-spacing:7.113296px;}
.wsd4{word-spacing:7.143166px;}
.ws2c{word-spacing:7.232848px;}
.ws9d{word-spacing:7.277203px;}
.ws49{word-spacing:7.292623px;}
.wsbd{word-spacing:7.585574px;}
.ws36{word-spacing:7.651277px;}
.ws6{word-spacing:7.711052px;}
.wsdf{word-spacing:7.908365px;}
.ws7{word-spacing:7.950155px;}
.ws98{word-spacing:8.069706px;}
.wsed{word-spacing:8.446349px;}
.ws93{word-spacing:8.488135px;}
.ws4e{word-spacing:8.667462px;}
.ws35{word-spacing:8.727238px;}
.ws34{word-spacing:8.787013px;}
.wsec{word-spacing:9.147667px;}
.ws7e{word-spacing:9.444545px;}
.ws24{word-spacing:9.623872px;}
.ws40{word-spacing:9.922750px;}
.ws65{word-spacing:10.042301px;}
.ws94{word-spacing:10.341179px;}
.ws97{word-spacing:10.640057px;}
.ws84{word-spacing:10.915584px;}
.ws67{word-spacing:10.998710px;}
.wsc2{word-spacing:11.237813px;}
.ws7d{word-spacing:11.297588px;}
.ws66{word-spacing:11.476915px;}
.ws91{word-spacing:12.194222px;}
.ws7c{word-spacing:12.373549px;}
.ws7b{word-spacing:12.911530px;}
.ws25{word-spacing:13.329959px;}
.ws26{word-spacing:13.389734px;}
.wsc1{word-spacing:13.449600px;}
.wsb2{word-spacing:16.157526px;}
.ws78{word-spacing:17.938541px;}
.ws82{word-spacing:18.000827px;}
.ws22{word-spacing:18.410885px;}
.ws100{word-spacing:21.895949px;}
.wsda{word-spacing:22.918118px;}
.wsd2{word-spacing:60.469402px;}
.ws73{word-spacing:70.094400px;}
.ws7a{word-spacing:70.100400px;}
.wscd{word-spacing:73.919002px;}
.wscf{word-spacing:92.996874px;}
.wsd0{word-spacing:106.467034px;}
.wsce{word-spacing:117.272874px;}
.ws55{word-spacing:156.876134px;}
.ws79{word-spacing:826.318471px;}
.ws8d{word-spacing:842.967130px;}
.ws99{word-spacing:844.473485px;}
.ws83{word-spacing:943.438295px;}
.wsa5{word-spacing:993.590023px;}
.ws6a{word-spacing:1012.970074px;}
.ws8e{word-spacing:1013.077670px;}
.ws8f{word-spacing:1014.584026px;}
.ws90{word-spacing:1019.049293px;}
.wsa1{word-spacing:1031.958317px;}
.ws9e{word-spacing:1110.827996px;}
.wsb5{word-spacing:1183.080614px;}
.wsc5{word-spacing:1183.134413px;}
.ws85{word-spacing:1183.188211px;}
.wsb6{word-spacing:1184.586970px;}
.wsc6{word-spacing:1184.640768px;}
.ws86{word-spacing:1184.694566px;}
.ws87{word-spacing:1189.159834px;}
._3e{margin-left:-20.904976px;}
._0{margin-left:-11.943245px;}
._10{margin-left:-7.653010px;}
._1{margin-left:-6.633359px;}
._4{margin-left:-5.003251px;}
._2c{margin-left:-3.919828px;}
._5{margin-left:-2.743718px;}
._3{margin-left:-1.022170px;}
._7{width:1.091170px;}
._2{width:2.990108px;}
._28{width:4.237835px;}
._29{width:5.367575px;}
._23{width:12.266035px;}
._30{width:13.449600px;}
._11{width:14.467428px;}
._1c{width:15.595447px;}
._6{width:16.677504px;}
._16{width:17.705546px;}
._a{width:18.709763px;}
._e{width:20.385998px;}
._15{width:22.234790px;}
._1d{width:23.372260px;}
._8{width:24.639516px;}
._18{width:26.002386px;}
._f{width:27.078347px;}
._1a{width:28.112755px;}
._13{width:29.122711px;}
._14{width:30.331900px;}
._b{width:31.567501px;}
._25{width:32.715206px;}
._3d{width:33.856667px;}
._17{width:35.626258px;}
._1b{width:37.144837px;}
._1e{width:38.716690px;}
._12{width:40.766959px;}
._19{width:42.022247px;}
._9{width:43.157983px;}
._2a{width:44.538806px;}
._27{width:47.049382px;}
._2b{width:50.091953px;}
._24{width:52.590289px;}
._3f{width:55.115603px;}
._3c{width:61.868160px;}
._1f{width:71.713267px;}
._2e{width:77.643330px;}
._36{width:82.419149px;}
._37{width:85.162867px;}
._32{width:86.454029px;}
._3b{width:88.767360px;}
._34{width:95.599757px;}
._2f{width:100.315085px;}
._33{width:109.318349px;}
._38{width:113.353229px;}
._39{width:122.356493px;}
._31{width:124.919885px;}
._22{width:126.451390px;}
._35{width:137.078323px;}
._3a{width:150.527923px;}
._21{width:193.889434px;}
._20{width:301.832506px;}
._2d{width:383.690189px;}
._c{width:997.781019px;}
._26{width:2045.288700px;}
._d{width:2069.198700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,121,123);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fsa{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.425340px;}
.y15{bottom:14.151273px;}
.y2{bottom:16.015847px;}
.y2f{bottom:63.780000px;}
.ydb{bottom:108.612000px;}
.y149{bottom:109.240500px;}
.yac{bottom:115.111500px;}
.y11d{bottom:117.210000px;}
.y56{bottom:117.298500px;}
.y102{bottom:118.809000px;}
.y1ca{bottom:119.239500px;}
.yda{bottom:128.875500px;}
.y148{bottom:129.505500px;}
.y2e{bottom:130.933500px;}
.y11c{bottom:136.441500px;}
.y55{bottom:137.562000px;}
.y101{bottom:138.042000px;}
.y1c9{bottom:138.606000px;}
.y87{bottom:143.386500px;}
.yd9{bottom:149.139000px;}
.y147{bottom:149.769000px;}
.y2d{bottom:151.197000px;}
.y9d{bottom:153.250500px;}
.y196{bottom:156.088500px;}
.y100{bottom:157.275000px;}
.y54{bottom:157.825500px;}
.y1c8{bottom:157.974000px;}
.y86{bottom:163.650000px;}
.y11b{bottom:163.803000px;}
.y1fb{bottom:167.059500px;}
.yd8{bottom:169.404000px;}
.y146{bottom:170.034000px;}
.y2c{bottom:171.462000px;}
.y9c{bottom:172.483500px;}
.y1c7{bottom:177.340500px;}
.y53{bottom:178.090500px;}
.y195{bottom:180.253500px;}
.yf9{bottom:180.418500px;}
.y17a{bottom:180.816000px;}
.y85{bottom:183.913500px;}
.yff{bottom:184.635000px;}
.y1fa{bottom:186.427500px;}
.y145{bottom:190.297500px;}
.y9b{bottom:191.716500px;}
.y2b{bottom:191.725500px;}
.y194{bottom:195.451500px;}
.y1c6{bottom:196.708500px;}
.y179{bottom:197.253000px;}
.y52{bottom:198.354000px;}
.yd7{bottom:199.486500px;}
.y84{bottom:204.178500px;}
.y1f9{bottom:205.794000px;}
.yd6{bottom:209.935500px;}
.y144{bottom:210.561000px;}
.y193{bottom:210.649500px;}
.y9a{bottom:211.291500px;}
.y2a{bottom:211.990500px;}
.y178{bottom:213.691500px;}
.y1c5{bottom:216.076500px;}
.y51{bottom:218.619000px;}
.yf8{bottom:221.397000px;}
.y83{bottom:224.442000px;}
.y98{bottom:224.878500px;}
.y1f8{bottom:225.162000px;}
.y192{bottom:225.847500px;}
.y177{bottom:230.130000px;}
.y143{bottom:230.826000px;}
.y29{bottom:232.254000px;}
.y1c4{bottom:235.443000px;}
.ya7{bottom:237.643500px;}
.y50{bottom:238.882500px;}
.yf7{bottom:240.630000px;}
.y1f7{bottom:244.528500px;}
.y82{bottom:244.707000px;}
.y97{bottom:245.142000px;}
.y176{bottom:246.568500px;}
.y191{bottom:250.011000px;}
.y142{bottom:251.089500px;}
.y28{bottom:252.517500px;}
.y1c3{bottom:254.811000px;}
.yd5{bottom:256.531500px;}
.ya6{bottom:257.907000px;}
.y4f{bottom:259.146000px;}
.yf6{bottom:259.863000px;}
.y165{bottom:260.263500px;}
.y175{bottom:263.007000px;}
.y1f6{bottom:263.896500px;}
.y81{bottom:264.970500px;}
.y190{bottom:265.209000px;}
.y96{bottom:265.407000px;}
.y141{bottom:271.354500px;}
.y27{bottom:272.782500px;}
.yc7{bottom:272.964000px;}
.y1c2{bottom:274.177500px;}
.ya5{bottom:278.172000px;}
.yf5{bottom:279.094500px;}
.y4e{bottom:279.411000px;}
.y174{bottom:279.445500px;}
.y18f{bottom:280.408500px;}
.y164{bottom:280.528500px;}
.yd4{bottom:280.572000px;}
.y1f5{bottom:283.264500px;}
.y80{bottom:285.234000px;}
.y95{bottom:285.670500px;}
.y140{bottom:291.618000px;}
.y26{bottom:293.046000px;}
.yc6{bottom:293.229000px;}
.y1c1{bottom:293.545500px;}
.y173{bottom:295.884000px;}
.ya4{bottom:298.435500px;}
.y4d{bottom:299.674500px;}
.y163{bottom:300.792000px;}
.yd3{bottom:300.835500px;}
.yf1{bottom:301.492500px;}
.y1f4{bottom:302.631000px;}
.y18e{bottom:304.572000px;}
.y7f{bottom:305.499000px;}
.y154{bottom:305.925000px;}
.y94{bottom:305.934000px;}
.yf4{bottom:306.456000px;}
.y13f{bottom:311.881500px;}
.y172{bottom:312.322500px;}
.y1c0{bottom:312.913500px;}
.y25{bottom:313.311000px;}
.yc5{bottom:313.492500px;}
.ya3{bottom:318.699000px;}
.y18d{bottom:319.770000px;}
.y4c{bottom:319.939500px;}
.y162{bottom:321.055500px;}
.yf0{bottom:321.756000px;}
.y1f3{bottom:321.999000px;}
.y7e{bottom:325.762500px;}
.y153{bottom:326.188500px;}
.y93{bottom:326.199000px;}
.yd2{bottom:331.233000px;}
.y13e{bottom:332.146500px;}
.y1bf{bottom:332.280000px;}
.y24{bottom:333.574500px;}
.yc4{bottom:333.757500px;}
.y18c{bottom:334.968000px;}
.y171{bottom:336.261000px;}
.ya2{bottom:338.964000px;}
.y4b{bottom:340.203000px;}
.y161{bottom:341.320500px;}
.y1f2{bottom:341.367000px;}
.y7d{bottom:346.027500px;}
.y152{bottom:346.453500px;}
.y92{bottom:346.462500px;}
.y18b{bottom:350.166000px;}
.yd1{bottom:351.496500px;}
.y1be{bottom:351.648000px;}
.y13d{bottom:352.410000px;}
.y11a{bottom:355.249500px;}
.yef{bottom:358.908000px;}
.y4a{bottom:360.466500px;}
.y1f1{bottom:360.733500px;}
.y160{bottom:361.584000px;}
.y23{bottom:362.805000px;}
.y7c{bottom:366.291000px;}
.y151{bottom:366.717000px;}
.y170{bottom:367.881000px;}
.yc3{bottom:368.757000px;}
.y1bd{bottom:371.014500px;}
.yd0{bottom:371.760000px;}
.y13c{bottom:372.675000px;}
.ya1{bottom:373.963500px;}
.y1f0{bottom:380.101500px;}
.y49{bottom:380.731500px;}
.y15f{bottom:381.849000px;}
.y18a{bottom:383.298000px;}
.y7b{bottom:386.554500px;}
.y150{bottom:386.980500px;}
.yc2{bottom:387.990000px;}
.y91{bottom:390.370500px;}
.y1bc{bottom:390.382500px;}
.y13b{bottom:392.938500px;}
.ya0{bottom:393.196500px;}
.yee{bottom:396.058500px;}
.y1ef{bottom:399.468000px;}
.y48{bottom:400.995000px;}
.y16f{bottom:401.092500px;}
.y15e{bottom:402.112500px;}
.y189{bottom:403.561500px;}
.ycf{bottom:404.850000px;}
.y90{bottom:406.809000px;}
.y7a{bottom:406.819500px;}
.yc1{bottom:407.223000px;}
.y14f{bottom:407.245500px;}
.y1bb{bottom:409.750500px;}
.y9f{bottom:413.014500px;}
.y13a{bottom:413.202000px;}
.yed{bottom:416.322000px;}
.yfe{bottom:418.626000px;}
.y1ee{bottom:418.836000px;}
.y47{bottom:421.260000px;}
.y16e{bottom:421.356000px;}
.y15d{bottom:422.376000px;}
.y8f{bottom:423.247500px;}
.y188{bottom:423.825000px;}
.yce{bottom:425.115000px;}
.y79{bottom:427.083000px;}
.y99{bottom:427.755000px;}
.y1ba{bottom:429.117000px;}
.y139{bottom:433.467000px;}
.yc0{bottom:434.583000px;}
.yec{bottom:436.587000px;}
.y1ed{bottom:438.204000px;}
.y22{bottom:439.213500px;}
.y46{bottom:441.523500px;}
.y16d{bottom:441.621000px;}
.y14e{bottom:442.245000px;}
.y15c{bottom:442.641000px;}
.y187{bottom:444.090000px;}
.ycd{bottom:445.378500px;}
.y8e{bottom:447.187500px;}
.y78{bottom:447.348000px;}
.y1b9{bottom:448.485000px;}
.yeb{bottom:456.850500px;}
.y1ec{bottom:457.570500px;}
.y14d{bottom:461.478000px;}
.y45{bottom:461.787000px;}
.y16c{bottom:461.884500px;}
.y138{bottom:462.697500px;}
.y15b{bottom:462.904500px;}
.y186{bottom:464.353500px;}
.y77{bottom:467.611500px;}
.y1b8{bottom:467.851500px;}
.ycc{bottom:474.774000px;}
.y1eb{bottom:476.938500px;}
.y21{bottom:477.409500px;}
.y14c{bottom:480.711000px;}
.y44{bottom:482.052000px;}
.y16b{bottom:482.149500px;}
.y185{bottom:484.618500px;}
.y1b7{bottom:487.219500px;}
.y76{bottom:487.875000px;}
.y8d{bottom:493.750500px;}
.yea{bottom:494.001000px;}
.y1ea{bottom:496.305000px;}
.y137{bottom:497.517000px;}
.y20{bottom:497.674500px;}
.y15a{bottom:497.905500px;}
.y43{bottom:502.315500px;}
.ycb{bottom:504.004500px;}
.y184{bottom:504.882000px;}
.y1b6{bottom:506.587500px;}
.y14b{bottom:508.072500px;}
.y75{bottom:508.140000px;}
.y1e9{bottom:515.673000px;}
.y159{bottom:517.138500px;}
.y16a{bottom:517.149000px;}
.y136{bottom:517.780500px;}
.y1f{bottom:517.938000px;}
.y42{bottom:522.580500px;}
.y183{bottom:525.145500px;}
.y1b5{bottom:525.954000px;}
.y74{bottom:528.403500px;}
.y8c{bottom:530.854500px;}
.ye9{bottom:531.151500px;}
.yca{bottom:534.214500px;}
.y1e8{bottom:535.041000px;}
.y158{bottom:536.371500px;}
.y169{bottom:536.382000px;}
.y135{bottom:538.045500px;}
.y1e{bottom:538.203000px;}
.y41{bottom:542.844000px;}
.y1b4{bottom:545.322000px;}
.y182{bottom:545.410500px;}
.y73{bottom:548.667000px;}
.y8b{bottom:551.119500px;}
.ye8{bottom:551.416500px;}
.yc9{bottom:553.447500px;}
.y1e7{bottom:554.407500px;}
.y157{bottom:555.604500px;}
.y168{bottom:555.615000px;}
.y1d{bottom:558.466500px;}
.y1b3{bottom:564.688500px;}
.y181{bottom:565.674000px;}
.y134{bottom:567.327000px;}
.y72{bottom:568.932000px;}
.y8a{bottom:571.383000px;}
.ye7{bottom:571.680000px;}
.y40{bottom:572.074500px;}
.yc8{bottom:572.680500px;}
.y1e6{bottom:573.775500px;}
.y119{bottom:577.360500px;}
.y133{bottom:577.579500px;}
.y1c{bottom:578.730000px;}
.yf3{bottom:582.958500px;}
.y156{bottom:582.964500px;}
.y167{bottom:582.976500px;}
.y1b2{bottom:584.056500px;}
.y9e{bottom:585.331500px;}
.y180{bottom:585.939000px;}
.y71{bottom:589.195500px;}
.ye6{bottom:591.945000px;}
.y1e5{bottom:593.142000px;}
.yab{bottom:593.749500px;}
.y118{bottom:597.624000px;}
.y1b{bottom:598.995000px;}
.y89{bottom:600.613500px;}
.y1b1{bottom:603.424500px;}
.y17f{bottom:606.202500px;}
.y3f{bottom:606.894000px;}
.y70{bottom:609.460500px;}
.ye5{bottom:612.208500px;}
.y1e4{bottom:612.510000px;}
.yaa{bottom:612.982500px;}
.y117{bottom:617.889000px;}
.y1a{bottom:619.258500px;}
.y132{bottom:620.535000px;}
.y1b0{bottom:622.791000px;}
.y17e{bottom:626.466000px;}
.y3e{bottom:627.157500px;}
.y6f{bottom:629.724000px;}
.y1e3{bottom:631.878000px;}
.ye4{bottom:632.472000px;}
.ya9{bottom:632.623500px;}
.y88{bottom:635.433000px;}
.y116{bottom:638.152500px;}
.y19{bottom:639.523500px;}
.y131{bottom:640.800000px;}
.y1af{bottom:642.159000px;}
.y17d{bottom:646.731000px;}
.y3d{bottom:647.422500px;}
.y6e{bottom:649.987500px;}
.y1e2{bottom:651.244500px;}
.yfd{bottom:652.608000px;}
.ye3{bottom:652.737000px;}
.y115{bottom:658.417500px;}
.y18{bottom:659.787000px;}
.y130{bottom:661.063500px;}
.y1ae{bottom:661.527000px;}
.y17c{bottom:666.994500px;}
.y3c{bottom:667.686000px;}
.y6d{bottom:670.252500px;}
.y1e1{bottom:670.612500px;}
.ye2{bottom:673.000500px;}
.y114{bottom:678.681000px;}
.y17{bottom:680.050500px;}
.y1ad{bottom:680.893500px;}
.ybf{bottom:687.258000px;}
.y3b{bottom:687.951000px;}
.y1e0{bottom:689.979000px;}
.y6c{bottom:690.516000px;}
.y12f{bottom:691.542000px;}
.ye1{bottom:693.265500px;}
.y1ac{bottom:700.261500px;}
.y12e{bottom:701.793000px;}
.ybe{bottom:707.523000px;}
.y3a{bottom:708.214500px;}
.y1df{bottom:709.347000px;}
.y6b{bottom:710.781000px;}
.y113{bottom:710.899500px;}
.ye0{bottom:713.529000px;}
.y14{bottom:715.483464px;}
.y13{bottom:715.876500px;}
.y1ab{bottom:719.628000px;}
.ybd{bottom:727.786500px;}
.y39{bottom:728.478000px;}
.y1de{bottom:728.715000px;}
.y6a{bottom:731.044500px;}
.ydf{bottom:733.792500px;}
.y112{bottom:735.648000px;}
.y17b{bottom:736.753500px;}
.y1aa{bottom:738.996000px;}
.y12d{bottom:744.838500px;}
.ybc{bottom:748.051500px;}
.y1dd{bottom:748.081500px;}
.y38{bottom:748.743000px;}
.y69{bottom:751.308000px;}
.y12{bottom:755.248500px;}
.y111{bottom:755.911500px;}
.y1a9{bottom:758.364000px;}
.y12c{bottom:765.103500px;}
.yde{bottom:767.299500px;}
.y1dc{bottom:767.449500px;}
.ybb{bottom:768.315000px;}
.y37{bottom:769.006500px;}
.y68{bottom:771.573000px;}
.y11{bottom:773.406000px;}
.y1a8{bottom:777.730500px;}
.y110{bottom:780.658500px;}
.y14a{bottom:784.554000px;}
.y12b{bottom:785.367000px;}
.ydd{bottom:786.532500px;}
.y1db{bottom:786.816000px;}
.yba{bottom:788.578500px;}
.y36{bottom:789.271500px;}
.y67{bottom:791.836500px;}
.ya8{bottom:795.633000px;}
.y10{bottom:796.444500px;}
.y1a7{bottom:797.098500px;}
.y10f{bottom:800.923500px;}
.y12a{bottom:805.632000px;}
.y1da{bottom:806.184000px;}
.yb9{bottom:808.843500px;}
.y35{bottom:809.535000px;}
.yf{bottom:809.719500px;}
.y66{bottom:812.101500px;}
.ydc{bottom:813.892500px;}
.y1a6{bottom:816.465000px;}
.y10e{bottom:821.187000px;}
.y1d9{bottom:825.552000px;}
.yb8{bottom:829.107000px;}
.y129{bottom:829.354500px;}
.y34{bottom:829.798500px;}
.y65{bottom:832.365000px;}
.ye{bottom:832.759500px;}
.y1a5{bottom:835.833000px;}
.y128{bottom:839.607000px;}
.y1d8{bottom:844.918500px;}
.yb7{bottom:849.372000px;}
.y33{bottom:850.063500px;}
.yd{bottom:850.915500px;}
.y64{bottom:852.628500px;}
.y1a4{bottom:855.201000px;}
.y10d{bottom:858.337500px;}
.y155{bottom:859.453500px;}
.yf2{bottom:859.455000px;}
.y166{bottom:859.458000px;}
.yc{bottom:864.190500px;}
.y1d7{bottom:864.286500px;}
.y127{bottom:865.675500px;}
.yb6{bottom:869.635500px;}
.y32{bottom:870.327000px;}
.y63{bottom:872.893500px;}
.y1a3{bottom:874.567500px;}
.y1d6{bottom:883.653000px;}
.yb{bottom:887.230500px;}
.yb5{bottom:889.899000px;}
.y62{bottom:893.157000px;}
.y1a2{bottom:893.935500px;}
.y10c{bottom:895.488000px;}
.yfc{bottom:897.898500px;}
.ya{bottom:900.505500px;}
.y201{bottom:902.715000px;}
.y1d5{bottom:903.021000px;}
.y31{bottom:905.328000px;}
.y126{bottom:906.204000px;}
.yb4{bottom:910.164000px;}
.y1a1{bottom:913.302000px;}
.y61{bottom:913.422000px;}
.y10b{bottom:915.753000px;}
.yfb{bottom:917.131500px;}
.y200{bottom:922.081500px;}
.y1d4{bottom:922.389000px;}
.y9{bottom:923.544000px;}
.y125{bottom:926.467500px;}
.yb2{bottom:930.427500px;}
.y1a0{bottom:932.670000px;}
.y60{bottom:933.685500px;}
.yb3{bottom:935.853000px;}
.y10a{bottom:940.500000px;}
.y1ff{bottom:941.449500px;}
.y1d3{bottom:941.755500px;}
.y1fe{bottom:941.854500px;}
.yfa{bottom:944.491500px;}
.y8{bottom:945.786000px;}
.y124{bottom:946.732500px;}
.yb1{bottom:950.692500px;}
.y19f{bottom:952.038000px;}
.y5f{bottom:953.949000px;}
.y109{bottom:960.763500px;}
.y1d2{bottom:961.123500px;}
.y7{bottom:966.049500px;}
.y123{bottom:969.454500px;}
.y1fd{bottom:970.896000px;}
.yb0{bottom:970.956000px;}
.y19e{bottom:971.404500px;}
.y5e{bottom:974.214000px;}
.y122{bottom:979.705500px;}
.y1d1{bottom:980.490000px;}
.y108{bottom:981.028500px;}
.y1fc{bottom:986.094000px;}
.y19d{bottom:990.772500px;}
.yaf{bottom:991.219500px;}
.y5d{bottom:994.477500px;}
.y1d0{bottom:999.858000px;}
.y107{bottom:1001.292000px;}
.y121{bottom:1005.775500px;}
.y19c{bottom:1010.139000px;}
.y6{bottom:1010.451000px;}
.yae{bottom:1011.484500px;}
.y5c{bottom:1014.742500px;}
.y1cf{bottom:1019.226000px;}
.y106{bottom:1021.557000px;}
.y19b{bottom:1029.507000px;}
.y5b{bottom:1035.006000px;}
.y105{bottom:1037.337000px;}
.y1ce{bottom:1038.592500px;}
.yad{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y120{bottom:1046.304000px;}
.y19a{bottom:1048.875000px;}
.y5a{bottom:1055.269500px;}
.y1cd{bottom:1057.960500px;}
.y11f{bottom:1066.567500px;}
.y199{bottom:1068.241500px;}
.y104{bottom:1069.557000px;}
.y4{bottom:1071.244500px;}
.y59{bottom:1075.534500px;}
.y1cc{bottom:1077.327000px;}
.y11e{bottom:1086.832500px;}
.y198{bottom:1087.609500px;}
.y103{bottom:1089.820500px;}
.y58{bottom:1095.798000px;}
.y1cb{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y197{bottom:1115.943000px;}
.y57{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h13{height:30.106714px;}
.h7{height:30.461558px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.he{height:35.100320px;}
.h12{height:38.734848px;}
.h1d{height:39.057638px;}
.h8{height:39.165235px;}
.h17{height:39.488026px;}
.h11{height:39.513235px;}
.hf{height:39.614278px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h4{height:43.875290px;}
.h14{height:46.714950px;}
.h10{height:47.259727px;}
.h2{height:50.930649px;}
.h6{height:54.405312px;}
.h5{height:77.469696px;}
.h1a{height:84.339290px;}
.h18{height:84.345290px;}
.h19{height:84.520637px;}
.h1b{height:84.526637px;}
.h16{height:85.312637px;}
.h15{height:86.703024px;}
.h1c{height:87.178950px;}
.h3{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:29.274117px;}
.x2{left:58.555600px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x60{left:137.839500px;}
.x4f{left:139.522500px;}
.x5{left:145.753500px;}
.x50{left:146.994000px;}
.xa0{left:148.204500px;}
.x8b{left:150.283500px;}
.x2f{left:152.953500px;}
.xb1{left:156.627000px;}
.x65{left:158.050500px;}
.xc9{left:160.033500px;}
.x78{left:164.947500px;}
.x28{left:165.981000px;}
.x30{left:167.896500px;}
.x1c{left:169.894500px;}
.x66{left:172.995000px;}
.x5d{left:176.085000px;}
.x46{left:177.834000px;}
.x79{left:179.892000px;}
.x29{left:180.924000px;}
.xb7{left:182.575500px;}
.x1d{left:184.839000px;}
.xcf{left:186.507000px;}
.xb3{left:189.114000px;}
.x9{left:192.442500px;}
.x18{left:197.320500px;}
.x2e{left:198.906000px;}
.xd0{left:201.451500px;}
.x6a{left:203.916000px;}
.xa1{left:206.194500px;}
.x74{left:207.861000px;}
.xad{left:210.639000px;}
.x19{left:212.263500px;}
.xd6{left:216.643500px;}
.x77{left:221.044500px;}
.xd7{left:223.369500px;}
.xf3{left:225.189000px;}
.x4b{left:227.104500px;}
.x8d{left:228.531000px;}
.xec{left:232.099500px;}
.xe0{left:233.191500px;}
.x11{left:236.110500px;}
.x8e{left:238.686000px;}
.xe1{left:240.663000px;}
.x4c{left:242.049000px;}
.x12{left:243.583500px;}
.x8f{left:245.323500px;}
.x44{left:246.868500px;}
.x24{left:248.254500px;}
.x67{left:250.761000px;}
.x61{left:253.281000px;}
.x45{left:254.340000px;}
.x69{left:255.865500px;}
.xf4{left:258.028500px;}
.x62{left:260.752500px;}
.x25{left:263.197500px;}
.x63{left:264.564000px;}
.x1e{left:269.362500px;}
.x73{left:270.736500px;}
.x64{left:272.035500px;}
.xc{left:273.564000px;}
.x3c{left:275.640000px;}
.x55{left:280.243500px;}
.xdc{left:281.544000px;}
.x48{left:282.847500px;}
.x1f{left:284.305500px;}
.x3d{left:293.157000px;}
.x56{left:294.739500px;}
.x90{left:296.737500px;}
.x49{left:297.792000px;}
.xbe{left:299.923500px;}
.x87{left:302.100000px;}
.xdd{left:303.954000px;}
.xd1{left:309.817500px;}
.x91{left:311.148000px;}
.xe7{left:312.699000px;}
.x13{left:322.285500px;}
.xac{left:323.352000px;}
.x95{left:326.106000px;}
.xa5{left:328.447500px;}
.x14{left:329.757000px;}
.x96{left:332.830500px;}
.xe8{left:334.330500px;}
.xe6{left:335.640000px;}
.xa2{left:340.102500px;}
.x1a{left:341.106000px;}
.xa6{left:344.338500px;}
.x7d{left:347.566500px;}
.x1b{left:348.577500px;}
.xd9{left:349.990500px;}
.xa7{left:352.555500px;}
.x32{left:356.413500px;}
.xda{left:357.462000px;}
.xe4{left:360.312000px;}
.x8c{left:361.431000px;}
.x88{left:366.549000px;}
.x33{left:371.358000px;}
.x37{left:372.894000px;}
.x38{left:380.367000px;}
.xc8{left:384.399000px;}
.xe5{left:385.486500px;}
.xca{left:387.747000px;}
.x35{left:392.724000px;}
.xb9{left:399.774000px;}
.x92{left:402.657000px;}
.x9a{left:405.219000px;}
.x36{left:407.668500px;}
.xb2{left:408.975000px;}
.xc4{left:411.816000px;}
.x6d{left:416.881500px;}
.xba{left:422.905500px;}
.x6e{left:425.098500px;}
.xd4{left:427.714500px;}
.x47{left:429.469500px;}
.xaf{left:433.033500px;}
.xa3{left:434.161500px;}
.x86{left:436.968000px;}
.x68{left:438.394500px;}
.xb0{left:439.758000px;}
.xbc{left:441.192000px;}
.xa4{left:442.380000px;}
.xeb{left:443.595000px;}
.x20{left:444.792000px;}
.xe9{left:446.004000px;}
.xd5{left:449.944500px;}
.xbb{left:451.012500px;}
.xaa{left:455.194500px;}
.xc5{left:458.605500px;}
.x21{left:459.736500px;}
.xab{left:461.166000px;}
.x83{left:465.478500px;}
.x93{left:467.275500px;}
.x75{left:468.819000px;}
.x89{left:469.864500px;}
.x80{left:472.249500px;}
.x76{left:475.543500px;}
.x8a{left:478.083000px;}
.xe2{left:479.796000px;}
.x7c{left:481.260000px;}
.xd2{left:484.332000px;}
.x42{left:487.819500px;}
.xd8{left:489.352500px;}
.x3a{left:491.059500px;}
.xd{left:492.798000px;}
.xdb{left:495.162000px;}
.xc1{left:497.341500px;}
.x3b{left:498.532500px;}
.xe{left:500.271000px;}
.x40{left:501.438000px;}
.x43{left:502.762500px;}
.x57{left:505.654500px;}
.xf{left:507.892500px;}
.xc2{left:512.286000px;}
.xcb{left:514.144500px;}
.x10{left:515.364000px;}
.x41{left:516.381000px;}
.x4a{left:521.893500px;}
.xae{left:526.141500px;}
.xed{left:528.666000px;}
.xc3{left:530.920500px;}
.x4d{left:532.845000px;}
.xea{left:536.224500px;}
.x9e{left:543.892500px;}
.x6f{left:545.940000px;}
.x4e{left:547.788000px;}
.x70{left:551.911500px;}
.xb8{left:553.317000px;}
.x9f{left:561.316500px;}
.x31{left:570.583500px;}
.xbd{left:572.737500px;}
.x15{left:574.876500px;}
.x53{left:576.324000px;}
.xa{left:581.718000px;}
.x58{left:584.125500px;}
.x16{left:586.159500px;}
.xb{left:589.189500px;}
.x54{left:590.820000px;}
.x17{left:593.632500px;}
.x59{left:598.621500px;}
.xce{left:601.080000px;}
.x5e{left:602.661000px;}
.x5a{left:604.111500px;}
.xb4{left:606.064500px;}
.x34{left:607.869000px;}
.x5f{left:610.134000px;}
.x5b{left:611.503500px;}
.xbf{left:612.612000px;}
.x97{left:617.218500px;}
.xd3{left:618.474000px;}
.x94{left:620.718000px;}
.x6b{left:624.685500px;}
.x5c{left:625.999500px;}
.x6c{left:631.410000px;}
.x26{left:633.960000px;}
.xc0{left:636.078000px;}
.xcc{left:639.469500px;}
.xc6{left:643.050000px;}
.xcd{left:646.942500px;}
.x27{left:648.904500px;}
.xde{left:652.855500px;}
.x39{left:655.393500px;}
.xdf{left:661.072500px;}
.x98{left:665.451000px;}
.xc7{left:667.374000px;}
.x2a{left:670.542000px;}
.x99{left:673.669500px;}
.x9b{left:681.819000px;}
.x2b{left:685.485000px;}
.xf2{left:687.900000px;}
.xa8{left:689.994000px;}
.x2c{left:691.237500px;}
.x84{left:693.658500px;}
.xf0{left:694.747500px;}
.xa9{left:696.718500px;}
.x7{left:701.339982px;}
.x2d{left:706.182000px;}
.x7a{left:707.572500px;}
.xee{left:709.863000px;}
.x71{left:712.080000px;}
.x9c{left:713.451000px;}
.x7e{left:715.191000px;}
.x51{left:716.653500px;}
.x72{left:720.297000px;}
.x7b{left:722.517000px;}
.x52{left:723.901500px;}
.x9d{left:726.496500px;}
.x7f{left:728.374500px;}
.xef{left:736.762500px;}
.xe3{left:740.683500px;}
.x81{left:745.612500px;}
.xf1{left:749.463000px;}
.x82{left:753.084000px;}
.x22{left:756.148500px;}
.x3e{left:758.091000px;}
.xb5{left:759.468000px;}
.x85{left:764.367000px;}
.x23{left:771.091500px;}
.x3f{left:773.034000px;}
.xb6{left:777.064500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v9{vertical-align:-11.120000pt;}
.va{vertical-align:-10.170667pt;}
.v8{vertical-align:-7.973333pt;}
.v4{vertical-align:-1.525333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.968000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:34.901333pt;}
.vd{vertical-align:35.968000pt;}
.v7{vertical-align:37.152000pt;}
.vc{vertical-align:43.941333pt;}
.v5{vertical-align:74.944000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000375pt;}
.lsb{letter-spacing:0.001007pt;}
.ls10{letter-spacing:0.002825pt;}
.ls3a{letter-spacing:0.003733pt;}
.ls48{letter-spacing:0.004267pt;}
.ls33{letter-spacing:0.242422pt;}
.ls34{letter-spacing:0.247756pt;}
.ls4b{letter-spacing:0.422084pt;}
.ls46{letter-spacing:0.443185pt;}
.ls3e{letter-spacing:0.448518pt;}
.ls2f{letter-spacing:0.665874pt;}
.ls26{letter-spacing:0.729548pt;}
.ls22{letter-spacing:0.734881pt;}
.ls4a{letter-spacing:0.929840pt;}
.ls3c{letter-spacing:1.009547pt;}
.ls6{letter-spacing:1.133683pt;}
.ls4d{letter-spacing:1.168015pt;}
.ls2d{letter-spacing:1.327207pt;}
.ls43{letter-spacing:1.328347pt;}
.ls3{letter-spacing:1.654338pt;}
.ls23{letter-spacing:1.858926pt;}
.lsc{letter-spacing:3.118133pt;}
.lse{letter-spacing:3.123467pt;}
.lsf{letter-spacing:3.134173pt;}
.lsd{letter-spacing:3.139507pt;}
.ls3b{letter-spacing:3.163682pt;}
.ls21{letter-spacing:3.506422pt;}
.ls52{letter-spacing:10.445868pt;}
.ls4{letter-spacing:10.626533pt;}
.ls45{letter-spacing:10.787096pt;}
.ls1b{letter-spacing:10.968429pt;}
.ls49{letter-spacing:11.583183pt;}
.ls2e{letter-spacing:11.593548pt;}
.ls1a{letter-spacing:11.658378pt;}
.ls50{letter-spacing:11.934996pt;}
.ls53{letter-spacing:11.943115pt;}
.ls4e{letter-spacing:11.954133pt;}
.ls51{letter-spacing:11.959467pt;}
.ls4f{letter-spacing:12.020776pt;}
.ls1c{letter-spacing:12.189067pt;}
.ls1d{letter-spacing:12.192015pt;}
.ls2c{letter-spacing:12.696429pt;}
.ls19{letter-spacing:12.722400pt;}
.ls40{letter-spacing:12.957762pt;}
.ls42{letter-spacing:12.963096pt;}
.ls9{letter-spacing:13.230333pt;}
.lsa{letter-spacing:13.283467pt;}
.ls39{letter-spacing:13.283733pt;}
.ls2b{letter-spacing:14.156580pt;}
.ls30{letter-spacing:14.561118pt;}
.ls37{letter-spacing:14.561626pt;}
.ls4c{letter-spacing:14.930617pt;}
.ls18{letter-spacing:15.395096pt;}
.ls28{letter-spacing:15.400429pt;}
.ls27{letter-spacing:16.020214pt;}
.ls1f{letter-spacing:16.125089pt;}
.ls7{letter-spacing:16.896570pt;}
.ls17{letter-spacing:18.269089pt;}
.ls8{letter-spacing:18.649987pt;}
.ls36{letter-spacing:18.723096pt;}
.ls2a{letter-spacing:18.987785pt;}
.ls35{letter-spacing:18.988292pt;}
.ls44{letter-spacing:23.501762pt;}
.ls3d{letter-spacing:26.077762pt;}
.ls24{letter-spacing:27.232267pt;}
.ls0{letter-spacing:51.035733pt;}
.ls29{letter-spacing:53.795733pt;}
.ls1{letter-spacing:62.432533pt;}
.ls2{letter-spacing:64.314231pt;}
.ls25{letter-spacing:80.974400pt;}
.ls20{letter-spacing:83.815733pt;}
.ls3f{letter-spacing:89.432429pt;}
.ls41{letter-spacing:95.096429pt;}
.ls14{letter-spacing:536.390340pt;}
.ls11{letter-spacing:563.499674pt;}
.ls1e{letter-spacing:574.639207pt;}
.ls12{letter-spacing:622.470340pt;}
.ls13{letter-spacing:654.315674pt;}
.ls15{letter-spacing:668.459674pt;}
.ls16{letter-spacing:746.278340pt;}
.ls31{letter-spacing:852.457874pt;}
.ls38{letter-spacing:858.233874pt;}
.ls47{letter-spacing:1022.905067pt;}
.ws56{word-spacing:-23.646858pt;}
.wsa8{word-spacing:-14.611813pt;}
.ws45{word-spacing:-13.283467pt;}
.ws54{word-spacing:-11.955200pt;}
.ws9c{word-spacing:-11.105013pt;}
.ws18{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsa4{word-spacing:-4.592749pt;}
.ws37{word-spacing:-2.922363pt;}
.ws44{word-spacing:-2.869229pt;}
.ws72{word-spacing:-2.486682pt;}
.wsf9{word-spacing:-2.362379pt;}
.wsfa{word-spacing:-2.343219pt;}
.ws75{word-spacing:-2.285333pt;}
.ws70{word-spacing:-2.008474pt;}
.ws96{word-spacing:-1.965953pt;}
.ws71{word-spacing:-1.817190pt;}
.wsfc{word-spacing:-1.769370pt;}
.wsca{word-spacing:-1.700284pt;}
.ws5{word-spacing:-1.696326pt;}
.wsa0{word-spacing:-1.623289pt;}
.ws28{word-spacing:-1.594016pt;}
.wsef{word-spacing:-1.530266pt;}
.ws60{word-spacing:-1.482445pt;}
.wsee{word-spacing:-1.434624pt;}
.ws11{word-spacing:-1.434614pt;}
.wsab{word-spacing:-1.328347pt;}
.wsac{word-spacing:-1.304141pt;}
.ws61{word-spacing:-1.243341pt;}
.wsad{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.ws46{word-spacing:-1.168945pt;}
.wse0{word-spacing:-1.147699pt;}
.ws47{word-spacing:-1.115811pt;}
.ws58{word-spacing:-1.062677pt;}
.ws41{word-spacing:-1.009543pt;}
.wse9{word-spacing:-1.004237pt;}
.ws48{word-spacing:-0.956410pt;}
.ws92{word-spacing:-0.903276pt;}
.ws12{word-spacing:-0.850142pt;}
.wsb9{word-spacing:-0.717312pt;}
.ws62{word-spacing:-0.690740pt;}
.wsba{word-spacing:-0.526029pt;}
.ws32{word-spacing:-0.478205pt;}
.ws7f{word-spacing:-0.425071pt;}
.ws19{word-spacing:-0.371937pt;}
.ws4b{word-spacing:-0.318803pt;}
.ws39{word-spacing:-0.265669pt;}
.ws15{word-spacing:-0.212535pt;}
.ws59{word-spacing:-0.191283pt;}
.ws9{word-spacing:-0.159402pt;}
.ws5a{word-spacing:-0.143462pt;}
.wsb{word-spacing:-0.106268pt;}
.wse2{word-spacing:-0.095642pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws6c{word-spacing:-0.047821pt;}
.wsd1{word-spacing:-0.037194pt;}
.ws53{word-spacing:-0.020873pt;}
.wsdd{word-spacing:-0.005530pt;}
.wsa2{word-spacing:-0.003222pt;}
.wsea{word-spacing:-0.002739pt;}
.ws17{word-spacing:-0.002540pt;}
.ws1{word-spacing:-0.001540pt;}
.wsa6{word-spacing:-0.000658pt;}
.ws9b{word-spacing:-0.000226pt;}
.ws95{word-spacing:-0.000198pt;}
.ws0{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.047821pt;}
.wsd{word-spacing:0.053134pt;}
.ws6d{word-spacing:0.095642pt;}
.wsa{word-spacing:0.106268pt;}
.wseb{word-spacing:0.143462pt;}
.wsa9{word-spacing:0.146861pt;}
.wsc{word-spacing:0.159402pt;}
.ws8c{word-spacing:0.191283pt;}
.ws16{word-spacing:0.212535pt;}
.wsc0{word-spacing:0.239104pt;}
.ws63{word-spacing:0.241110pt;}
.wsf5{word-spacing:0.251487pt;}
.ws10{word-spacing:0.265669pt;}
.wsf6{word-spacing:0.286925pt;}
.ws8{word-spacing:0.318803pt;}
.wsfb{word-spacing:0.334746pt;}
.ws1c{word-spacing:0.371937pt;}
.wsdc{word-spacing:0.526029pt;}
.wscb{word-spacing:0.637606pt;}
.ws13{word-spacing:0.690740pt;}
.wsd3{word-spacing:0.743874pt;}
.wse5{word-spacing:0.765133pt;}
.ws3b{word-spacing:0.797008pt;}
.wscc{word-spacing:0.850142pt;}
.wsb8{word-spacing:1.004237pt;}
.wsd5{word-spacing:1.009543pt;}
.ws23{word-spacing:1.062677pt;}
.wsbe{word-spacing:1.195520pt;}
.wse6{word-spacing:1.243341pt;}
.ws4f{word-spacing:1.275213pt;}
.wsb7{word-spacing:1.291162pt;}
.wsb0{word-spacing:1.434614pt;}
.ws9a{word-spacing:1.434624pt;}
.wse4{word-spacing:1.482445pt;}
.wsbf{word-spacing:1.530266pt;}
.wsc8{word-spacing:1.578086pt;}
.ws2b{word-spacing:1.594016pt;}
.ws3e{word-spacing:1.647150pt;}
.wsd9{word-spacing:1.673728pt;}
.ws52{word-spacing:1.700284pt;}
.ws89{word-spacing:1.721549pt;}
.ws8a{word-spacing:1.769370pt;}
.ws1f{word-spacing:1.806551pt;}
.ws5d{word-spacing:1.859685pt;}
.wsc7{word-spacing:1.865011pt;}
.ws20{word-spacing:1.912819pt;}
.ws9f{word-spacing:1.941330pt;}
.ws1e{word-spacing:1.965953pt;}
.ws88{word-spacing:2.008474pt;}
.wsaa{word-spacing:2.041958pt;}
.wsc9{word-spacing:2.056294pt;}
.ws57{word-spacing:2.072221pt;}
.wse1{word-spacing:2.104115pt;}
.wsb4{word-spacing:2.125355pt;}
.ws43{word-spacing:2.178489pt;}
.ws8b{word-spacing:2.247578pt;}
.ws27{word-spacing:2.391024pt;}
.ws81{word-spacing:2.656693pt;}
.ws3a{word-spacing:2.709827pt;}
.ws3f{word-spacing:2.762961pt;}
.wsfe{word-spacing:2.773606pt;}
.wsae{word-spacing:2.804912pt;}
.wsd8{word-spacing:2.816095pt;}
.wse3{word-spacing:2.821427pt;}
.wsf2{word-spacing:2.865152pt;}
.ws2d{word-spacing:2.869229pt;}
.ws3{word-spacing:2.869248pt;}
.wsf0{word-spacing:2.917069pt;}
.ws29{word-spacing:2.922363pt;}
.ws42{word-spacing:2.975497pt;}
.wse7{word-spacing:3.060531pt;}
.ws21{word-spacing:3.134898pt;}
.wse{word-spacing:3.185311pt;}
.wsf{word-spacing:3.188032pt;}
.ws5c{word-spacing:3.203994pt;}
.ws5f{word-spacing:3.294300pt;}
.wsa7{word-spacing:3.316069pt;}
.ws74{word-spacing:3.347434pt;}
.ws3d{word-spacing:3.400567pt;}
.wsdb{word-spacing:3.443098pt;}
.ws3c{word-spacing:3.453701pt;}
.ws5b{word-spacing:3.490918pt;}
.ws38{word-spacing:3.506835pt;}
.wsff{word-spacing:3.538739pt;}
.ws1b{word-spacing:3.559969pt;}
.ws1a{word-spacing:3.613103pt;}
.wsf8{word-spacing:3.634381pt;}
.ws4c{word-spacing:3.666237pt;}
.ws14{word-spacing:3.719371pt;}
.ws5e{word-spacing:3.772505pt;}
.wsc4{word-spacing:3.825638pt;}
.wsc3{word-spacing:3.878772pt;}
.ws31{word-spacing:3.931906pt;}
.wsd6{word-spacing:4.091308pt;}
.ws6f{word-spacing:4.144442pt;}
.ws6e{word-spacing:4.197575pt;}
.wse8{word-spacing:4.208230pt;}
.wsa3{word-spacing:4.395348pt;}
.ws4a{word-spacing:4.410111pt;}
.wsfd{word-spacing:4.447334pt;}
.ws77{word-spacing:4.463245pt;}
.ws76{word-spacing:4.470975pt;}
.wsf4{word-spacing:4.542976pt;}
.wsf3{word-spacing:4.686438pt;}
.wsf1{word-spacing:4.734259pt;}
.ws2e{word-spacing:4.782048pt;}
.ws33{word-spacing:4.941450pt;}
.ws2f{word-spacing:4.994583pt;}
.ws30{word-spacing:5.047717pt;}
.ws4d{word-spacing:5.100851pt;}
.wsd7{word-spacing:5.153985pt;}
.wsbc{word-spacing:5.355930pt;}
.ws51{word-spacing:5.366521pt;}
.ws69{word-spacing:5.419654pt;}
.ws64{word-spacing:5.525922pt;}
.wsaf{word-spacing:5.579056pt;}
.wsb3{word-spacing:5.685324pt;}
.wsbb{word-spacing:5.690675pt;}
.wsb1{word-spacing:5.844725pt;}
.wsf7{word-spacing:5.881958pt;}
.ws2a{word-spacing:5.897859pt;}
.ws50{word-spacing:6.004127pt;}
.ws68{word-spacing:6.110395pt;}
.wsde{word-spacing:6.264525pt;}
.ws80{word-spacing:6.322930pt;}
.wsd4{word-spacing:6.349481pt;}
.ws2c{word-spacing:6.429198pt;}
.ws9d{word-spacing:6.468625pt;}
.ws49{word-spacing:6.482332pt;}
.wsbd{word-spacing:6.742733pt;}
.ws36{word-spacing:6.801135pt;}
.ws6{word-spacing:6.854269pt;}
.wsdf{word-spacing:7.029658pt;}
.ws7{word-spacing:7.066804pt;}
.ws98{word-spacing:7.173072pt;}
.wsed{word-spacing:7.507866pt;}
.ws93{word-spacing:7.545009pt;}
.ws4e{word-spacing:7.704411pt;}
.ws35{word-spacing:7.757545pt;}
.ws34{word-spacing:7.810678pt;}
.wsec{word-spacing:8.131260pt;}
.ws7e{word-spacing:8.395151pt;}
.ws24{word-spacing:8.554553pt;}
.ws40{word-spacing:8.820222pt;}
.ws65{word-spacing:8.926490pt;}
.ws94{word-spacing:9.192159pt;}
.ws97{word-spacing:9.457828pt;}
.ws84{word-spacing:9.702741pt;}
.ws67{word-spacing:9.776631pt;}
.wsc2{word-spacing:9.989167pt;}
.ws7d{word-spacing:10.042301pt;}
.ws66{word-spacing:10.201702pt;}
.ws91{word-spacing:10.839309pt;}
.ws7c{word-spacing:10.998710pt;}
.ws7b{word-spacing:11.476915pt;}
.ws25{word-spacing:11.848852pt;}
.ws26{word-spacing:11.901986pt;}
.wsc1{word-spacing:11.955200pt;}
.wsb2{word-spacing:14.362245pt;}
.ws78{word-spacing:15.945370pt;}
.ws82{word-spacing:16.000735pt;}
.ws22{word-spacing:16.365231pt;}
.ws100{word-spacing:19.463066pt;}
.wsda{word-spacing:20.371661pt;}
.wsd2{word-spacing:53.750579pt;}
.ws73{word-spacing:62.306133pt;}
.ws7a{word-spacing:62.311467pt;}
.wscd{word-spacing:65.705779pt;}
.wscf{word-spacing:82.663888pt;}
.wsd0{word-spacing:94.637363pt;}
.wsce{word-spacing:104.242555pt;}
.ws55{word-spacing:139.445453pt;}
.ws79{word-spacing:734.505308pt;}
.ws8d{word-spacing:749.304115pt;}
.ws99{word-spacing:750.643098pt;}
.ws83{word-spacing:838.611818pt;}
.wsa5{word-spacing:883.191132pt;}
.ws6a{word-spacing:900.417843pt;}
.ws8e{word-spacing:900.513485pt;}
.ws8f{word-spacing:901.852467pt;}
.ws90{word-spacing:905.821594pt;}
.wsa1{word-spacing:917.296282pt;}
.ws9e{word-spacing:987.402663pt;}
.wsb5{word-spacing:1051.627213pt;}
.wsc5{word-spacing:1051.675034pt;}
.ws85{word-spacing:1051.722854pt;}
.wsb6{word-spacing:1052.966195pt;}
.wsc6{word-spacing:1053.014016pt;}
.ws86{word-spacing:1053.061837pt;}
.ws87{word-spacing:1057.030963pt;}
._3e{margin-left:-18.582201pt;}
._0{margin-left:-10.616218pt;}
._10{margin-left:-6.802675pt;}
._1{margin-left:-5.896319pt;}
._4{margin-left:-4.447334pt;}
._2c{margin-left:-3.484291pt;}
._5{margin-left:-2.438861pt;}
._3{margin-left:-0.908595pt;}
._7{width:0.969929pt;}
._2{width:2.657874pt;}
._28{width:3.766964pt;}
._29{width:4.771178pt;}
._23{width:10.903142pt;}
._30{width:11.955200pt;}
._11{width:12.859936pt;}
._1c{width:13.862620pt;}
._6{width:14.824448pt;}
._16{width:15.738263pt;}
._a{width:16.630900pt;}
._e{width:18.120887pt;}
._15{width:19.764258pt;}
._1d{width:20.775342pt;}
._8{width:21.901792pt;}
._18{width:23.113232pt;}
._f{width:24.069642pt;}
._1a{width:24.989116pt;}
._13{width:25.886854pt;}
._14{width:26.961689pt;}
._b{width:28.060001pt;}
._25{width:29.080183pt;}
._3d{width:30.094815pt;}
._17{width:31.667785pt;}
._1b{width:33.017633pt;}
._1e{width:34.414835pt;}
._12{width:36.237297pt;}
._19{width:37.353108pt;}
._9{width:38.362652pt;}
._2a{width:39.590050pt;}
._27{width:41.821673pt;}
._2b{width:44.526180pt;}
._24{width:46.746924pt;}
._3f{width:48.991647pt;}
._3c{width:54.993920pt;}
._1f{width:63.745126pt;}
._2e{width:69.016293pt;}
._36{width:73.261466pt;}
._37{width:75.700326pt;}
._32{width:76.848026pt;}
._3b{width:78.904320pt;}
._34{width:84.977562pt;}
._2f{width:89.168964pt;}
._33{width:97.171866pt;}
._38{width:100.758426pt;}
._39{width:108.761327pt;}
._31{width:111.039898pt;}
._22{width:112.401236pt;}
._35{width:121.847398pt;}
._3a{width:133.802598pt;}
._21{width:172.346163pt;}
._20{width:268.295561pt;}
._2d{width:341.057946pt;}
._c{width:886.916461pt;}
._26{width:1818.034400pt;}
._d{width:1839.287733pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fsa{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.044747pt;}
.y15{bottom:12.578910pt;}
.y2{bottom:14.236308pt;}
.y2f{bottom:56.693333pt;}
.ydb{bottom:96.544000pt;}
.y149{bottom:97.102667pt;}
.yac{bottom:102.321333pt;}
.y11d{bottom:104.186667pt;}
.y56{bottom:104.265333pt;}
.y102{bottom:105.608000pt;}
.y1ca{bottom:105.990667pt;}
.yda{bottom:114.556000pt;}
.y148{bottom:115.116000pt;}
.y2e{bottom:116.385333pt;}
.y11c{bottom:121.281333pt;}
.y55{bottom:122.277333pt;}
.y101{bottom:122.704000pt;}
.y1c9{bottom:123.205333pt;}
.y87{bottom:127.454667pt;}
.yd9{bottom:132.568000pt;}
.y147{bottom:133.128000pt;}
.y2d{bottom:134.397333pt;}
.y9d{bottom:136.222667pt;}
.y196{bottom:138.745333pt;}
.y100{bottom:139.800000pt;}
.y54{bottom:140.289333pt;}
.y1c8{bottom:140.421333pt;}
.y86{bottom:145.466667pt;}
.y11b{bottom:145.602667pt;}
.y1fb{bottom:148.497333pt;}
.yd8{bottom:150.581333pt;}
.y146{bottom:151.141333pt;}
.y2c{bottom:152.410667pt;}
.y9c{bottom:153.318667pt;}
.y1c7{bottom:157.636000pt;}
.y53{bottom:158.302667pt;}
.y195{bottom:160.225333pt;}
.yf9{bottom:160.372000pt;}
.y17a{bottom:160.725333pt;}
.y85{bottom:163.478667pt;}
.yff{bottom:164.120000pt;}
.y1fa{bottom:165.713333pt;}
.y145{bottom:169.153333pt;}
.y9b{bottom:170.414667pt;}
.y2b{bottom:170.422667pt;}
.y194{bottom:173.734667pt;}
.y1c6{bottom:174.852000pt;}
.y179{bottom:175.336000pt;}
.y52{bottom:176.314667pt;}
.yd7{bottom:177.321333pt;}
.y84{bottom:181.492000pt;}
.y1f9{bottom:182.928000pt;}
.yd6{bottom:186.609333pt;}
.y144{bottom:187.165333pt;}
.y193{bottom:187.244000pt;}
.y9a{bottom:187.814667pt;}
.y2a{bottom:188.436000pt;}
.y178{bottom:189.948000pt;}
.y1c5{bottom:192.068000pt;}
.y51{bottom:194.328000pt;}
.yf8{bottom:196.797333pt;}
.y83{bottom:199.504000pt;}
.y98{bottom:199.892000pt;}
.y1f8{bottom:200.144000pt;}
.y192{bottom:200.753333pt;}
.y177{bottom:204.560000pt;}
.y143{bottom:205.178667pt;}
.y29{bottom:206.448000pt;}
.y1c4{bottom:209.282667pt;}
.ya7{bottom:211.238667pt;}
.y50{bottom:212.340000pt;}
.yf7{bottom:213.893333pt;}
.y1f7{bottom:217.358667pt;}
.y82{bottom:217.517333pt;}
.y97{bottom:217.904000pt;}
.y176{bottom:219.172000pt;}
.y191{bottom:222.232000pt;}
.y142{bottom:223.190667pt;}
.y28{bottom:224.460000pt;}
.y1c3{bottom:226.498667pt;}
.yd5{bottom:228.028000pt;}
.ya6{bottom:229.250667pt;}
.y4f{bottom:230.352000pt;}
.yf6{bottom:230.989333pt;}
.y165{bottom:231.345333pt;}
.y175{bottom:233.784000pt;}
.y1f6{bottom:234.574667pt;}
.y81{bottom:235.529333pt;}
.y190{bottom:235.741333pt;}
.y96{bottom:235.917333pt;}
.y141{bottom:241.204000pt;}
.y27{bottom:242.473333pt;}
.yc7{bottom:242.634667pt;}
.y1c2{bottom:243.713333pt;}
.ya5{bottom:247.264000pt;}
.yf5{bottom:248.084000pt;}
.y4e{bottom:248.365333pt;}
.y174{bottom:248.396000pt;}
.y18f{bottom:249.252000pt;}
.y164{bottom:249.358667pt;}
.yd4{bottom:249.397333pt;}
.y1f5{bottom:251.790667pt;}
.y80{bottom:253.541333pt;}
.y95{bottom:253.929333pt;}
.y140{bottom:259.216000pt;}
.y26{bottom:260.485333pt;}
.yc6{bottom:260.648000pt;}
.y1c1{bottom:260.929333pt;}
.y173{bottom:263.008000pt;}
.ya4{bottom:265.276000pt;}
.y4d{bottom:266.377333pt;}
.y163{bottom:267.370667pt;}
.yd3{bottom:267.409333pt;}
.yf1{bottom:267.993333pt;}
.y1f4{bottom:269.005333pt;}
.y18e{bottom:270.730667pt;}
.y7f{bottom:271.554667pt;}
.y154{bottom:271.933333pt;}
.y94{bottom:271.941333pt;}
.yf4{bottom:272.405333pt;}
.y13f{bottom:277.228000pt;}
.y172{bottom:277.620000pt;}
.y1c0{bottom:278.145333pt;}
.y25{bottom:278.498667pt;}
.yc5{bottom:278.660000pt;}
.ya3{bottom:283.288000pt;}
.y18d{bottom:284.240000pt;}
.y4c{bottom:284.390667pt;}
.y162{bottom:285.382667pt;}
.yf0{bottom:286.005333pt;}
.y1f3{bottom:286.221333pt;}
.y7e{bottom:289.566667pt;}
.y153{bottom:289.945333pt;}
.y93{bottom:289.954667pt;}
.yd2{bottom:294.429333pt;}
.y13e{bottom:295.241333pt;}
.y1bf{bottom:295.360000pt;}
.y24{bottom:296.510667pt;}
.yc4{bottom:296.673333pt;}
.y18c{bottom:297.749333pt;}
.y171{bottom:298.898667pt;}
.ya2{bottom:301.301333pt;}
.y4b{bottom:302.402667pt;}
.y161{bottom:303.396000pt;}
.y1f2{bottom:303.437333pt;}
.y7d{bottom:307.580000pt;}
.y152{bottom:307.958667pt;}
.y92{bottom:307.966667pt;}
.y18b{bottom:311.258667pt;}
.yd1{bottom:312.441333pt;}
.y1be{bottom:312.576000pt;}
.y13d{bottom:313.253333pt;}
.y11a{bottom:315.777333pt;}
.yef{bottom:319.029333pt;}
.y4a{bottom:320.414667pt;}
.y1f1{bottom:320.652000pt;}
.y160{bottom:321.408000pt;}
.y23{bottom:322.493333pt;}
.y7c{bottom:325.592000pt;}
.y151{bottom:325.970667pt;}
.y170{bottom:327.005333pt;}
.yc3{bottom:327.784000pt;}
.y1bd{bottom:329.790667pt;}
.yd0{bottom:330.453333pt;}
.y13c{bottom:331.266667pt;}
.ya1{bottom:332.412000pt;}
.y1f0{bottom:337.868000pt;}
.y49{bottom:338.428000pt;}
.y15f{bottom:339.421333pt;}
.y18a{bottom:340.709333pt;}
.y7b{bottom:343.604000pt;}
.y150{bottom:343.982667pt;}
.yc2{bottom:344.880000pt;}
.y91{bottom:346.996000pt;}
.y1bc{bottom:347.006667pt;}
.y13b{bottom:349.278667pt;}
.ya0{bottom:349.508000pt;}
.yee{bottom:352.052000pt;}
.y1ef{bottom:355.082667pt;}
.y48{bottom:356.440000pt;}
.y16f{bottom:356.526667pt;}
.y15e{bottom:357.433333pt;}
.y189{bottom:358.721333pt;}
.ycf{bottom:359.866667pt;}
.y90{bottom:361.608000pt;}
.y7a{bottom:361.617333pt;}
.yc1{bottom:361.976000pt;}
.y14f{bottom:361.996000pt;}
.y1bb{bottom:364.222667pt;}
.y9f{bottom:367.124000pt;}
.y13a{bottom:367.290667pt;}
.yed{bottom:370.064000pt;}
.yfe{bottom:372.112000pt;}
.y1ee{bottom:372.298667pt;}
.y47{bottom:374.453333pt;}
.y16e{bottom:374.538667pt;}
.y15d{bottom:375.445333pt;}
.y8f{bottom:376.220000pt;}
.y188{bottom:376.733333pt;}
.yce{bottom:377.880000pt;}
.y79{bottom:379.629333pt;}
.y99{bottom:380.226667pt;}
.y1ba{bottom:381.437333pt;}
.y139{bottom:385.304000pt;}
.yc0{bottom:386.296000pt;}
.yec{bottom:388.077333pt;}
.y1ed{bottom:389.514667pt;}
.y22{bottom:390.412000pt;}
.y46{bottom:392.465333pt;}
.y16d{bottom:392.552000pt;}
.y14e{bottom:393.106667pt;}
.y15c{bottom:393.458667pt;}
.y187{bottom:394.746667pt;}
.ycd{bottom:395.892000pt;}
.y8e{bottom:397.500000pt;}
.y78{bottom:397.642667pt;}
.y1b9{bottom:398.653333pt;}
.yeb{bottom:406.089333pt;}
.y1ec{bottom:406.729333pt;}
.y14d{bottom:410.202667pt;}
.y45{bottom:410.477333pt;}
.y16c{bottom:410.564000pt;}
.y138{bottom:411.286667pt;}
.y15b{bottom:411.470667pt;}
.y186{bottom:412.758667pt;}
.y77{bottom:415.654667pt;}
.y1b8{bottom:415.868000pt;}
.ycc{bottom:422.021333pt;}
.y1eb{bottom:423.945333pt;}
.y21{bottom:424.364000pt;}
.y14c{bottom:427.298667pt;}
.y44{bottom:428.490667pt;}
.y16b{bottom:428.577333pt;}
.y185{bottom:430.772000pt;}
.y1b7{bottom:433.084000pt;}
.y76{bottom:433.666667pt;}
.y8d{bottom:438.889333pt;}
.yea{bottom:439.112000pt;}
.y1ea{bottom:441.160000pt;}
.y137{bottom:442.237333pt;}
.y20{bottom:442.377333pt;}
.y15a{bottom:442.582667pt;}
.y43{bottom:446.502667pt;}
.ycb{bottom:448.004000pt;}
.y184{bottom:448.784000pt;}
.y1b6{bottom:450.300000pt;}
.y14b{bottom:451.620000pt;}
.y75{bottom:451.680000pt;}
.y1e9{bottom:458.376000pt;}
.y159{bottom:459.678667pt;}
.y16a{bottom:459.688000pt;}
.y136{bottom:460.249333pt;}
.y1f{bottom:460.389333pt;}
.y42{bottom:464.516000pt;}
.y183{bottom:466.796000pt;}
.y1b5{bottom:467.514667pt;}
.y74{bottom:469.692000pt;}
.y8c{bottom:471.870667pt;}
.ye9{bottom:472.134667pt;}
.yca{bottom:474.857333pt;}
.y1e8{bottom:475.592000pt;}
.y158{bottom:476.774667pt;}
.y169{bottom:476.784000pt;}
.y135{bottom:478.262667pt;}
.y1e{bottom:478.402667pt;}
.y41{bottom:482.528000pt;}
.y1b4{bottom:484.730667pt;}
.y182{bottom:484.809333pt;}
.y73{bottom:487.704000pt;}
.y8b{bottom:489.884000pt;}
.ye8{bottom:490.148000pt;}
.yc9{bottom:491.953333pt;}
.y1e7{bottom:492.806667pt;}
.y157{bottom:493.870667pt;}
.y168{bottom:493.880000pt;}
.y1d{bottom:496.414667pt;}
.y1b3{bottom:501.945333pt;}
.y181{bottom:502.821333pt;}
.y134{bottom:504.290667pt;}
.y72{bottom:505.717333pt;}
.y8a{bottom:507.896000pt;}
.ye7{bottom:508.160000pt;}
.y40{bottom:508.510667pt;}
.yc8{bottom:509.049333pt;}
.y1e6{bottom:510.022667pt;}
.y119{bottom:513.209333pt;}
.y133{bottom:513.404000pt;}
.y1c{bottom:514.426667pt;}
.yf3{bottom:518.185333pt;}
.y156{bottom:518.190667pt;}
.y167{bottom:518.201333pt;}
.y1b2{bottom:519.161333pt;}
.y9e{bottom:520.294667pt;}
.y180{bottom:520.834667pt;}
.y71{bottom:523.729333pt;}
.ye6{bottom:526.173333pt;}
.y1e5{bottom:527.237333pt;}
.yab{bottom:527.777333pt;}
.y118{bottom:531.221333pt;}
.y1b{bottom:532.440000pt;}
.y89{bottom:533.878667pt;}
.y1b1{bottom:536.377333pt;}
.y17f{bottom:538.846667pt;}
.y3f{bottom:539.461333pt;}
.y70{bottom:541.742667pt;}
.ye5{bottom:544.185333pt;}
.y1e4{bottom:544.453333pt;}
.yaa{bottom:544.873333pt;}
.y117{bottom:549.234667pt;}
.y1a{bottom:550.452000pt;}
.y132{bottom:551.586667pt;}
.y1b0{bottom:553.592000pt;}
.y17e{bottom:556.858667pt;}
.y3e{bottom:557.473333pt;}
.y6f{bottom:559.754667pt;}
.y1e3{bottom:561.669333pt;}
.ye4{bottom:562.197333pt;}
.ya9{bottom:562.332000pt;}
.y88{bottom:564.829333pt;}
.y116{bottom:567.246667pt;}
.y19{bottom:568.465333pt;}
.y131{bottom:569.600000pt;}
.y1af{bottom:570.808000pt;}
.y17d{bottom:574.872000pt;}
.y3d{bottom:575.486667pt;}
.y6e{bottom:577.766667pt;}
.y1e2{bottom:578.884000pt;}
.yfd{bottom:580.096000pt;}
.ye3{bottom:580.210667pt;}
.y115{bottom:585.260000pt;}
.y18{bottom:586.477333pt;}
.y130{bottom:587.612000pt;}
.y1ae{bottom:588.024000pt;}
.y17c{bottom:592.884000pt;}
.y3c{bottom:593.498667pt;}
.y6d{bottom:595.780000pt;}
.y1e1{bottom:596.100000pt;}
.ye2{bottom:598.222667pt;}
.y114{bottom:603.272000pt;}
.y17{bottom:604.489333pt;}
.y1ad{bottom:605.238667pt;}
.ybf{bottom:610.896000pt;}
.y3b{bottom:611.512000pt;}
.y1e0{bottom:613.314667pt;}
.y6c{bottom:613.792000pt;}
.y12f{bottom:614.704000pt;}
.ye1{bottom:616.236000pt;}
.y1ac{bottom:622.454667pt;}
.y12e{bottom:623.816000pt;}
.ybe{bottom:628.909333pt;}
.y3a{bottom:629.524000pt;}
.y1df{bottom:630.530667pt;}
.y6b{bottom:631.805333pt;}
.y113{bottom:631.910667pt;}
.ye0{bottom:634.248000pt;}
.y14{bottom:635.985301pt;}
.y13{bottom:636.334667pt;}
.y1ab{bottom:639.669333pt;}
.ybd{bottom:646.921333pt;}
.y39{bottom:647.536000pt;}
.y1de{bottom:647.746667pt;}
.y6a{bottom:649.817333pt;}
.ydf{bottom:652.260000pt;}
.y112{bottom:653.909333pt;}
.y17b{bottom:654.892000pt;}
.y1aa{bottom:656.885333pt;}
.y12d{bottom:662.078667pt;}
.ybc{bottom:664.934667pt;}
.y1dd{bottom:664.961333pt;}
.y38{bottom:665.549333pt;}
.y69{bottom:667.829333pt;}
.y12{bottom:671.332000pt;}
.y111{bottom:671.921333pt;}
.y1a9{bottom:674.101333pt;}
.y12c{bottom:680.092000pt;}
.yde{bottom:682.044000pt;}
.y1dc{bottom:682.177333pt;}
.ybb{bottom:682.946667pt;}
.y37{bottom:683.561333pt;}
.y68{bottom:685.842667pt;}
.y11{bottom:687.472000pt;}
.y1a8{bottom:691.316000pt;}
.y110{bottom:693.918667pt;}
.y14a{bottom:697.381333pt;}
.y12b{bottom:698.104000pt;}
.ydd{bottom:699.140000pt;}
.y1db{bottom:699.392000pt;}
.yba{bottom:700.958667pt;}
.y36{bottom:701.574667pt;}
.y67{bottom:703.854667pt;}
.ya8{bottom:707.229333pt;}
.y10{bottom:707.950667pt;}
.y1a7{bottom:708.532000pt;}
.y10f{bottom:711.932000pt;}
.y12a{bottom:716.117333pt;}
.y1da{bottom:716.608000pt;}
.yb9{bottom:718.972000pt;}
.y35{bottom:719.586667pt;}
.yf{bottom:719.750667pt;}
.y66{bottom:721.868000pt;}
.ydc{bottom:723.460000pt;}
.y1a6{bottom:725.746667pt;}
.y10e{bottom:729.944000pt;}
.y1d9{bottom:733.824000pt;}
.yb8{bottom:736.984000pt;}
.y129{bottom:737.204000pt;}
.y34{bottom:737.598667pt;}
.y65{bottom:739.880000pt;}
.ye{bottom:740.230667pt;}
.y1a5{bottom:742.962667pt;}
.y128{bottom:746.317333pt;}
.y1d8{bottom:751.038667pt;}
.yb7{bottom:754.997333pt;}
.y33{bottom:755.612000pt;}
.yd{bottom:756.369333pt;}
.y64{bottom:757.892000pt;}
.y1a4{bottom:760.178667pt;}
.y10d{bottom:762.966667pt;}
.y155{bottom:763.958667pt;}
.yf2{bottom:763.960000pt;}
.y166{bottom:763.962667pt;}
.yc{bottom:768.169333pt;}
.y1d7{bottom:768.254667pt;}
.y127{bottom:769.489333pt;}
.yb6{bottom:773.009333pt;}
.y32{bottom:773.624000pt;}
.y63{bottom:775.905333pt;}
.y1a3{bottom:777.393333pt;}
.y1d6{bottom:785.469333pt;}
.yb{bottom:788.649333pt;}
.yb5{bottom:791.021333pt;}
.y62{bottom:793.917333pt;}
.y1a2{bottom:794.609333pt;}
.y10c{bottom:795.989333pt;}
.yfc{bottom:798.132000pt;}
.ya{bottom:800.449333pt;}
.y201{bottom:802.413333pt;}
.y1d5{bottom:802.685333pt;}
.y31{bottom:804.736000pt;}
.y126{bottom:805.514667pt;}
.yb4{bottom:809.034667pt;}
.y1a1{bottom:811.824000pt;}
.y61{bottom:811.930667pt;}
.y10b{bottom:814.002667pt;}
.yfb{bottom:815.228000pt;}
.y200{bottom:819.628000pt;}
.y1d4{bottom:819.901333pt;}
.y9{bottom:820.928000pt;}
.y125{bottom:823.526667pt;}
.yb2{bottom:827.046667pt;}
.y1a0{bottom:829.040000pt;}
.y60{bottom:829.942667pt;}
.yb3{bottom:831.869333pt;}
.y10a{bottom:836.000000pt;}
.y1ff{bottom:836.844000pt;}
.y1d3{bottom:837.116000pt;}
.y1fe{bottom:837.204000pt;}
.yfa{bottom:839.548000pt;}
.y8{bottom:840.698667pt;}
.y124{bottom:841.540000pt;}
.yb1{bottom:845.060000pt;}
.y19f{bottom:846.256000pt;}
.y5f{bottom:847.954667pt;}
.y109{bottom:854.012000pt;}
.y1d2{bottom:854.332000pt;}
.y7{bottom:858.710667pt;}
.y123{bottom:861.737333pt;}
.y1fd{bottom:863.018667pt;}
.yb0{bottom:863.072000pt;}
.y19e{bottom:863.470667pt;}
.y5e{bottom:865.968000pt;}
.y122{bottom:870.849333pt;}
.y1d1{bottom:871.546667pt;}
.y108{bottom:872.025333pt;}
.y1fc{bottom:876.528000pt;}
.y19d{bottom:880.686667pt;}
.yaf{bottom:881.084000pt;}
.y5d{bottom:883.980000pt;}
.y1d0{bottom:888.762667pt;}
.y107{bottom:890.037333pt;}
.y121{bottom:894.022667pt;}
.y19c{bottom:897.901333pt;}
.y6{bottom:898.178667pt;}
.yae{bottom:899.097333pt;}
.y5c{bottom:901.993333pt;}
.y1cf{bottom:905.978667pt;}
.y106{bottom:908.050667pt;}
.y19b{bottom:915.117333pt;}
.y5b{bottom:920.005333pt;}
.y105{bottom:922.077333pt;}
.y1ce{bottom:923.193333pt;}
.yad{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y120{bottom:930.048000pt;}
.y19a{bottom:932.333333pt;}
.y5a{bottom:938.017333pt;}
.y1cd{bottom:940.409333pt;}
.y11f{bottom:948.060000pt;}
.y199{bottom:949.548000pt;}
.y104{bottom:950.717333pt;}
.y4{bottom:952.217333pt;}
.y59{bottom:956.030667pt;}
.y1cc{bottom:957.624000pt;}
.y11e{bottom:966.073333pt;}
.y198{bottom:966.764000pt;}
.y103{bottom:968.729333pt;}
.y58{bottom:974.042667pt;}
.y1cb{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y197{bottom:991.949333pt;}
.y57{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h13{height:26.761523pt;}
.h7{height:27.076941pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.he{height:31.200285pt;}
.h12{height:34.430976pt;}
.h1d{height:34.717901pt;}
.h8{height:34.813542pt;}
.h17{height:35.100467pt;}
.h11{height:35.122876pt;}
.hf{height:35.212691pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h4{height:39.000258pt;}
.h14{height:41.524400pt;}
.h10{height:42.008646pt;}
.h2{height:45.271688pt;}
.h6{height:48.360277pt;}
.h5{height:68.861952pt;}
.h1a{height:74.968258pt;}
.h18{height:74.973591pt;}
.h19{height:75.129455pt;}
.h1b{height:75.134788pt;}
.h16{height:75.833455pt;}
.h15{height:77.069355pt;}
.h1c{height:77.492400pt;}
.h3{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:26.021437pt;}
.x2{left:52.049422pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x60{left:122.524000pt;}
.x4f{left:124.020000pt;}
.x5{left:129.558667pt;}
.x50{left:130.661333pt;}
.xa0{left:131.737333pt;}
.x8b{left:133.585333pt;}
.x2f{left:135.958667pt;}
.xb1{left:139.224000pt;}
.x65{left:140.489333pt;}
.xc9{left:142.252000pt;}
.x78{left:146.620000pt;}
.x28{left:147.538667pt;}
.x30{left:149.241333pt;}
.x1c{left:151.017333pt;}
.x66{left:153.773333pt;}
.x5d{left:156.520000pt;}
.x46{left:158.074667pt;}
.x79{left:159.904000pt;}
.x29{left:160.821333pt;}
.xb7{left:162.289333pt;}
.x1d{left:164.301333pt;}
.xcf{left:165.784000pt;}
.xb3{left:168.101333pt;}
.x9{left:171.060000pt;}
.x18{left:175.396000pt;}
.x2e{left:176.805333pt;}
.xd0{left:179.068000pt;}
.x6a{left:181.258667pt;}
.xa1{left:183.284000pt;}
.x74{left:184.765333pt;}
.xad{left:187.234667pt;}
.x19{left:188.678667pt;}
.xd6{left:192.572000pt;}
.x77{left:196.484000pt;}
.xd7{left:198.550667pt;}
.xf3{left:200.168000pt;}
.x4b{left:201.870667pt;}
.x8d{left:203.138667pt;}
.xec{left:206.310667pt;}
.xe0{left:207.281333pt;}
.x11{left:209.876000pt;}
.x8e{left:212.165333pt;}
.xe1{left:213.922667pt;}
.x4c{left:215.154667pt;}
.x12{left:216.518667pt;}
.x8f{left:218.065333pt;}
.x44{left:219.438667pt;}
.x24{left:220.670667pt;}
.x67{left:222.898667pt;}
.x61{left:225.138667pt;}
.x45{left:226.080000pt;}
.x69{left:227.436000pt;}
.xf4{left:229.358667pt;}
.x62{left:231.780000pt;}
.x25{left:233.953333pt;}
.x63{left:235.168000pt;}
.x1e{left:239.433333pt;}
.x73{left:240.654667pt;}
.x64{left:241.809333pt;}
.xc{left:243.168000pt;}
.x3c{left:245.013333pt;}
.x55{left:249.105333pt;}
.xdc{left:250.261333pt;}
.x48{left:251.420000pt;}
.x1f{left:252.716000pt;}
.x3d{left:260.584000pt;}
.x56{left:261.990667pt;}
.x90{left:263.766667pt;}
.x49{left:264.704000pt;}
.xbe{left:266.598667pt;}
.x87{left:268.533333pt;}
.xdd{left:270.181333pt;}
.xd1{left:275.393333pt;}
.x91{left:276.576000pt;}
.xe7{left:277.954667pt;}
.x13{left:286.476000pt;}
.xac{left:287.424000pt;}
.x95{left:289.872000pt;}
.xa5{left:291.953333pt;}
.x14{left:293.117333pt;}
.x96{left:295.849333pt;}
.xe8{left:297.182667pt;}
.xe6{left:298.346667pt;}
.xa2{left:302.313333pt;}
.x1a{left:303.205333pt;}
.xa6{left:306.078667pt;}
.x7d{left:308.948000pt;}
.x1b{left:309.846667pt;}
.xd9{left:311.102667pt;}
.xa7{left:313.382667pt;}
.x32{left:316.812000pt;}
.xda{left:317.744000pt;}
.xe4{left:320.277333pt;}
.x8c{left:321.272000pt;}
.x88{left:325.821333pt;}
.x33{left:330.096000pt;}
.x37{left:331.461333pt;}
.x38{left:338.104000pt;}
.xc8{left:341.688000pt;}
.xe5{left:342.654667pt;}
.xca{left:344.664000pt;}
.x35{left:349.088000pt;}
.xb9{left:355.354667pt;}
.x92{left:357.917333pt;}
.x9a{left:360.194667pt;}
.x36{left:362.372000pt;}
.xb2{left:363.533333pt;}
.xc4{left:366.058667pt;}
.x6d{left:370.561333pt;}
.xba{left:375.916000pt;}
.x6e{left:377.865333pt;}
.xd4{left:380.190667pt;}
.x47{left:381.750667pt;}
.xaf{left:384.918667pt;}
.xa3{left:385.921333pt;}
.x86{left:388.416000pt;}
.x68{left:389.684000pt;}
.xb0{left:390.896000pt;}
.xbc{left:392.170667pt;}
.xa4{left:393.226667pt;}
.xeb{left:394.306667pt;}
.x20{left:395.370667pt;}
.xe9{left:396.448000pt;}
.xd5{left:399.950667pt;}
.xbb{left:400.900000pt;}
.xaa{left:404.617333pt;}
.xc5{left:407.649333pt;}
.x21{left:408.654667pt;}
.xab{left:409.925333pt;}
.x83{left:413.758667pt;}
.x93{left:415.356000pt;}
.x75{left:416.728000pt;}
.x89{left:417.657333pt;}
.x80{left:419.777333pt;}
.x76{left:422.705333pt;}
.x8a{left:424.962667pt;}
.xe2{left:426.485333pt;}
.x7c{left:427.786667pt;}
.xd2{left:430.517333pt;}
.x42{left:433.617333pt;}
.xd8{left:434.980000pt;}
.x3a{left:436.497333pt;}
.xd{left:438.042667pt;}
.xdb{left:440.144000pt;}
.xc1{left:442.081333pt;}
.x3b{left:443.140000pt;}
.xe{left:444.685333pt;}
.x40{left:445.722667pt;}
.x43{left:446.900000pt;}
.x57{left:449.470667pt;}
.xf{left:451.460000pt;}
.xc2{left:455.365333pt;}
.xcb{left:457.017333pt;}
.x10{left:458.101333pt;}
.x41{left:459.005333pt;}
.x4a{left:463.905333pt;}
.xae{left:467.681333pt;}
.xed{left:469.925333pt;}
.xc3{left:471.929333pt;}
.x4d{left:473.640000pt;}
.xea{left:476.644000pt;}
.x9e{left:483.460000pt;}
.x6f{left:485.280000pt;}
.x4e{left:486.922667pt;}
.x70{left:490.588000pt;}
.xb8{left:491.837333pt;}
.x9f{left:498.948000pt;}
.x31{left:507.185333pt;}
.xbd{left:509.100000pt;}
.x15{left:511.001333pt;}
.x53{left:512.288000pt;}
.xa{left:517.082667pt;}
.x58{left:519.222667pt;}
.x16{left:521.030667pt;}
.xb{left:523.724000pt;}
.x54{left:525.173333pt;}
.x17{left:527.673333pt;}
.x59{left:532.108000pt;}
.xce{left:534.293333pt;}
.x5e{left:535.698667pt;}
.x5a{left:536.988000pt;}
.xb4{left:538.724000pt;}
.x34{left:540.328000pt;}
.x5f{left:542.341333pt;}
.x5b{left:543.558667pt;}
.xbf{left:544.544000pt;}
.x97{left:548.638667pt;}
.xd3{left:549.754667pt;}
.x94{left:551.749333pt;}
.x6b{left:555.276000pt;}
.x5c{left:556.444000pt;}
.x6c{left:561.253333pt;}
.x26{left:563.520000pt;}
.xc0{left:565.402667pt;}
.xcc{left:568.417333pt;}
.xc6{left:571.600000pt;}
.xcd{left:575.060000pt;}
.x27{left:576.804000pt;}
.xde{left:580.316000pt;}
.x39{left:582.572000pt;}
.xdf{left:587.620000pt;}
.x98{left:591.512000pt;}
.xc7{left:593.221333pt;}
.x2a{left:596.037333pt;}
.x99{left:598.817333pt;}
.x9b{left:606.061333pt;}
.x2b{left:609.320000pt;}
.xf2{left:611.466667pt;}
.xa8{left:613.328000pt;}
.x2c{left:614.433333pt;}
.x84{left:616.585333pt;}
.xf0{left:617.553333pt;}
.xa9{left:619.305333pt;}
.x7{left:623.413317pt;}
.x2d{left:627.717333pt;}
.x7a{left:628.953333pt;}
.xee{left:630.989333pt;}
.x71{left:632.960000pt;}
.x9c{left:634.178667pt;}
.x7e{left:635.725333pt;}
.x51{left:637.025333pt;}
.x72{left:640.264000pt;}
.x7b{left:642.237333pt;}
.x52{left:643.468000pt;}
.x9d{left:645.774667pt;}
.x7f{left:647.444000pt;}
.xef{left:654.900000pt;}
.xe3{left:658.385333pt;}
.x81{left:662.766667pt;}
.xf1{left:666.189333pt;}
.x82{left:669.408000pt;}
.x22{left:672.132000pt;}
.x3e{left:673.858667pt;}
.xb5{left:675.082667pt;}
.x85{left:679.437333pt;}
.x23{left:685.414667pt;}
.x3f{left:687.141333pt;}
.xb6{left:690.724000pt;}
}




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