
    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_8c026a0d3a36a08e6c1fd566.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_7cd32827a1096b33c10b9c7f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3c7d0d54e0e2309a4ca7fcef.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb009153b336ac9cfb1f792d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.803000;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_98ddcdd39e5be7f46ae4c2c2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.683000;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_b551fe3aba96155be1a08869.woff')format("woff");}.ff6{font-family:ff6;line-height:0.689000;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_08a57dcdea1de063a5d0f52a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9f2425e550b530bddc49e0c5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.873000;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_873dbfa55d21ce02e274dd5d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.703000;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_bf23144355b02791decf0b24.woff')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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_cd56e4837431e0e9ba4bb3dc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.995117;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_79000a2287b492605746150d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{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);}
.m19{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);}
.m16{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);}
.m23{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);}
.m14{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);}
.ma{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);}
.m6{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);}
.m1f{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);}
.m20{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);}
.m1{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);}
.m18{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);}
.m8{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);}
.me{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);}
.m27{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);}
.m17{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);}
.m29{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);}
.m1c{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);}
.m25{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);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.mc{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);}
.m12{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);}
.m15{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);}
.m1e{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);}
.m11{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);}
.m1b{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);}
.m21{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);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m9{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);}
.m26{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);}
.mb{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);}
.m22{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);}
.m10{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);}
.m4{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);}
.mf{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);}
.m1a{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);}
.m2{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);}
.md{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.364000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:28.398000px;}
.v5{vertical-align:35.862000px;}
.v7{vertical-align:56.592000px;}
.v6{vertical-align:71.730000px;}
.ls2a{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000435px;}
.ls8{letter-spacing:0.000608px;}
.ls32{letter-spacing:0.000800px;}
.ls2b{letter-spacing:0.001584px;}
.ls11{letter-spacing:0.002212px;}
.ls18{letter-spacing:0.002219px;}
.ls1c{letter-spacing:0.003527px;}
.ls19{letter-spacing:0.005686px;}
.ls26{letter-spacing:0.010800px;}
.ls29{letter-spacing:0.021600px;}
.ls25{letter-spacing:0.027000px;}
.ls27{letter-spacing:0.140400px;}
.ls28{letter-spacing:0.151200px;}
.ls1a{letter-spacing:0.594916px;}
.ls12{letter-spacing:0.648088px;}
.ls14{letter-spacing:0.717483px;}
.ls23{letter-spacing:11.951700px;}
.ls20{letter-spacing:11.952798px;}
.ls3{letter-spacing:11.954850px;}
.ls21{letter-spacing:11.958798px;}
.ls22{letter-spacing:12.552600px;}
.ls36{letter-spacing:13.286305px;}
.ls2f{letter-spacing:13.424147px;}
.ls2c{letter-spacing:13.448400px;}
.ls2d{letter-spacing:13.454400px;}
.ls35{letter-spacing:13.547367px;}
.ls2e{letter-spacing:13.547379px;}
.ls33{letter-spacing:13.556485px;}
.ls30{letter-spacing:13.699942px;}
.ls34{letter-spacing:13.715369px;}
.lse{letter-spacing:14.689751px;}
.ls10{letter-spacing:14.695873px;}
.lsd{letter-spacing:14.934649px;}
.ls6{letter-spacing:14.937767px;}
.lsf{letter-spacing:14.944200px;}
.ls31{letter-spacing:15.038635px;}
.ls5{letter-spacing:15.063451px;}
.ls9{letter-spacing:15.242778px;}
.ls13{letter-spacing:15.657483px;}
.ls15{letter-spacing:15.663483px;}
.lsa{letter-spacing:15.689400px;}
.ls16{letter-spacing:15.691246px;}
.lsc{letter-spacing:21.435729px;}
.lsb{letter-spacing:27.241612px;}
.ls0{letter-spacing:57.415200px;}
.ls1{letter-spacing:62.761200px;}
.ls2{letter-spacing:64.321654px;}
.ls1d{letter-spacing:99.931200px;}
.ls1b{letter-spacing:120.193200px;}
.ls1e{letter-spacing:134.233200px;}
.ls1f{letter-spacing:224.767200px;}
.ls17{letter-spacing:226.780766px;}
.ls24{letter-spacing:1991.685534px;}
.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;}
}
.ws5d{word-spacing:-14.943900px;}
.wsca{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws4c{word-spacing:-3.347434px;}
.ws93{word-spacing:-3.048556px;}
.ws4d{word-spacing:-2.988780px;}
.ws52{word-spacing:-2.929004px;}
.ws3e{word-spacing:-2.570351px;}
.ws32{word-spacing:-2.510575px;}
.ws5f{word-spacing:-2.331248px;}
.wsc3{word-spacing:-2.259533px;}
.ws49{word-spacing:-2.151922px;}
.ws3f{word-spacing:-2.092146px;}
.ws9d{word-spacing:-1.972595px;}
.ws7a{word-spacing:-1.912819px;}
.ws53{word-spacing:-1.853044px;}
.wsa3{word-spacing:-1.793268px;}
.wsbf{word-spacing:-1.775347px;}
.wsb0{word-spacing:-1.733492px;}
.ws23{word-spacing:-1.673717px;}
.ws64{word-spacing:-1.554166px;}
.ws77{word-spacing:-1.494390px;}
.ws30{word-spacing:-1.434614px;}
.ws5c{word-spacing:-1.374839px;}
.ws5e{word-spacing:-1.255288px;}
.ws19{word-spacing:-1.075961px;}
.ws48{word-spacing:-0.956410px;}
.ws3c{word-spacing:-0.896634px;}
.ws36{word-spacing:-0.717307px;}
.wsdf{word-spacing:-0.699379px;}
.ws9f{word-spacing:-0.657532px;}
.ws1b{word-spacing:-0.597756px;}
.ws17{word-spacing:-0.537980px;}
.wsa6{word-spacing:-0.478205px;}
.ws44{word-spacing:-0.418429px;}
.ws22{word-spacing:-0.358654px;}
.ws7b{word-spacing:-0.322790px;}
.ws11{word-spacing:-0.298878px;}
.wsb7{word-spacing:-0.268992px;}
.ws29{word-spacing:-0.239102px;}
.wsc1{word-spacing:-0.215194px;}
.wsb{word-spacing:-0.179327px;}
.wse6{word-spacing:-0.161395px;}
.ws21{word-spacing:-0.119551px;}
.wsdd{word-spacing:-0.107597px;}
.ws28{word-spacing:-0.059776px;}
.ws82{word-spacing:-0.053798px;}
.ws1f{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.wse3{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.ws1{word-spacing:0.083686px;}
.ws97{word-spacing:0.095641px;}
.wsbc{word-spacing:0.107597px;}
.wsc{word-spacing:0.119551px;}
.ws84{word-spacing:0.143462px;}
.wsb5{word-spacing:0.161395px;}
.wsa2{word-spacing:0.162000px;}
.ws13{word-spacing:0.179327px;}
.wsa1{word-spacing:0.183600px;}
.ws85{word-spacing:0.191282px;}
.wsa0{word-spacing:0.194400px;}
.ws96{word-spacing:0.215194px;}
.ws14{word-spacing:0.239102px;}
.wsb4{word-spacing:0.268992px;}
.ws98{word-spacing:0.286924px;}
.ws1a{word-spacing:0.298878px;}
.wse5{word-spacing:0.322790px;}
.wsd{word-spacing:0.358654px;}
.ws4b{word-spacing:0.418429px;}
.ws6f{word-spacing:0.478205px;}
.ws31{word-spacing:0.597756px;}
.ws73{word-spacing:0.633090px;}
.wsc0{word-spacing:0.645581px;}
.ws41{word-spacing:0.657532px;}
.ws7e{word-spacing:0.745912px;}
.ws8b{word-spacing:0.747934px;}
.ws27{word-spacing:0.777083px;}
.ws6e{word-spacing:0.836858px;}
.ws94{word-spacing:0.896634px;}
.wsa8{word-spacing:0.956410px;}
.ws16{word-spacing:1.016185px;}
.ws68{word-spacing:1.075961px;}
.ws91{word-spacing:1.195512px;}
.wsd6{word-spacing:1.237363px;}
.ws4f{word-spacing:1.255288px;}
.ws3d{word-spacing:1.315063px;}
.wsa4{word-spacing:1.374839px;}
.ws24{word-spacing:1.434614px;}
.wsa5{word-spacing:1.494390px;}
.ws72{word-spacing:1.554166px;}
.ws43{word-spacing:1.613941px;}
.wsd8{word-spacing:1.613952px;}
.ws9c{word-spacing:1.673717px;}
.wsab{word-spacing:1.733492px;}
.wsb9{word-spacing:1.775347px;}
.ws87{word-spacing:1.793268px;}
.ws86{word-spacing:1.853044px;}
.ws51{word-spacing:1.972595px;}
.wsaa{word-spacing:2.032370px;}
.wsc5{word-spacing:2.092146px;}
.ws37{word-spacing:2.211697px;}
.ws46{word-spacing:2.271473px;}
.wsc2{word-spacing:2.300658px;}
.ws45{word-spacing:2.331248px;}
.ws2d{word-spacing:2.391024px;}
.ws59{word-spacing:2.450800px;}
.wscb{word-spacing:2.474726px;}
.ws6{word-spacing:2.510252px;}
.ws35{word-spacing:2.510575px;}
.ws67{word-spacing:2.570351px;}
.wsf{word-spacing:2.630126px;}
.ws71{word-spacing:2.689902px;}
.wsba{word-spacing:2.797517px;}
.ws18{word-spacing:2.809453px;}
.ws8{word-spacing:2.869236px;}
.ws33{word-spacing:2.929004px;}
.wsb6{word-spacing:2.960757px;}
.ws54{word-spacing:2.988780px;}
.wsd3{word-spacing:3.012710px;}
.ws47{word-spacing:3.048556px;}
.ws2e{word-spacing:3.108331px;}
.wsb2{word-spacing:3.120307px;}
.wsac{word-spacing:3.168107px;}
.wse8{word-spacing:3.219658px;}
.wse0{word-spacing:3.220061px;}
.ws40{word-spacing:3.227882px;}
.wsbe{word-spacing:3.227904px;}
.wsbd{word-spacing:3.281702px;}
.wsad{word-spacing:3.287658px;}
.ws34{word-spacing:3.347434px;}
.ws78{word-spacing:3.389299px;}
.ws76{word-spacing:3.407209px;}
.wsbb{word-spacing:3.443098px;}
.ws79{word-spacing:3.466985px;}
.wsea{word-spacing:3.496896px;}
.wsa7{word-spacing:3.526760px;}
.ws1c{word-spacing:3.577037px;}
.ws15{word-spacing:3.646312px;}
.ws5a{word-spacing:3.706087px;}
.wsb1{word-spacing:3.765863px;}
.ws8a{word-spacing:3.819686px;}
.ws10{word-spacing:3.825638px;}
.ws42{word-spacing:3.885414px;}
.wsb3{word-spacing:3.981082px;}
.ws4a{word-spacing:4.004965px;}
.ws75{word-spacing:4.124516px;}
.ws66{word-spacing:4.184292px;}
.ws58{word-spacing:4.244068px;}
.ws62{word-spacing:4.303843px;}
.ws20{word-spacing:4.303872px;}
.ws9e{word-spacing:4.423394px;}
.ws69{word-spacing:4.483170px;}
.ws89{word-spacing:4.542946px;}
.ws56{word-spacing:4.602721px;}
.wsd1{word-spacing:4.626662px;}
.ws92{word-spacing:4.662497px;}
.wscf{word-spacing:4.665022px;}
.ws2f{word-spacing:4.782048px;}
.ws38{word-spacing:5.080926px;}
.ws5b{word-spacing:5.140702px;}
.ws57{word-spacing:5.260253px;}
.wse{word-spacing:5.320028px;}
.ws90{word-spacing:5.379804px;}
.ws12{word-spacing:5.499355px;}
.ws88{word-spacing:5.678682px;}
.ws70{word-spacing:5.738458px;}
.ws65{word-spacing:5.798233px;}
.ws61{word-spacing:5.858009px;}
.wsaf{word-spacing:5.977560px;}
.ws55{word-spacing:6.156887px;}
.ws9b{word-spacing:6.395989px;}
.ws81{word-spacing:6.455765px;}
.ws2c{word-spacing:6.515540px;}
.ws74{word-spacing:6.814418px;}
.ws9a{word-spacing:6.874194px;}
.ws99{word-spacing:6.933970px;}
.ws4e{word-spacing:6.993745px;}
.ws50{word-spacing:7.053521px;}
.wsb8{word-spacing:7.101389px;}
.wse9{word-spacing:7.208986px;}
.ws2b{word-spacing:7.471950px;}
.ws60{word-spacing:7.651277px;}
.ws6c{word-spacing:7.711052px;}
.ws6d{word-spacing:7.770828px;}
.wsa9{word-spacing:7.830604px;}
.ws3b{word-spacing:7.950155px;}
.ws26{word-spacing:8.009930px;}
.ws63{word-spacing:8.069706px;}
.ws95{word-spacing:8.189257px;}
.wsae{word-spacing:8.308808px;}
.wsc4{word-spacing:9.623872px;}
.wsc7{word-spacing:9.743423px;}
.wsc8{word-spacing:9.982525px;}
.ws25{word-spacing:10.042301px;}
.ws6b{word-spacing:10.281403px;}
.ws3{word-spacing:10.414541px;}
.ws9{word-spacing:10.699832px;}
.wsc6{word-spacing:11.716018px;}
.wsa{word-spacing:11.775793px;}
.ws1d{word-spacing:11.907442px;}
.ws80{word-spacing:12.313774px;}
.wse2{word-spacing:13.190224px;}
.wse7{word-spacing:13.234406px;}
.wsde{word-spacing:13.288205px;}
.wsce{word-spacing:13.354768px;}
.wsc9{word-spacing:13.387958px;}
.wsd9{word-spacing:13.395802px;}
.wse4{word-spacing:13.456776px;}
.wscd{word-spacing:13.481924px;}
.wse1{word-spacing:13.646860px;}
.wsda{word-spacing:13.662470px;}
.ws2a{word-spacing:14.645022px;}
.ws3a{word-spacing:14.884124px;}
.wsd4{word-spacing:16.408512px;}
.wscc{word-spacing:16.611485px;}
.wsd5{word-spacing:16.615661px;}
.wsdc{word-spacing:16.623706px;}
.wsdb{word-spacing:16.838899px;}
.wsd2{word-spacing:16.946496px;}
.wsd0{word-spacing:18.022464px;}
.wsd7{word-spacing:20.766182px;}
.ws2{word-spacing:28.455541px;}
.ws8f{word-spacing:108.193836px;}
.ws8e{word-spacing:123.137736px;}
.ws8c{word-spacing:184.409425px;}
.ws8d{word-spacing:232.554008px;}
.ws7d{word-spacing:290.747100px;}
.ws7f{word-spacing:344.192486px;}
.ws6a{word-spacing:360.519503px;}
.ws7c{word-spacing:367.188833px;}
.ws83{word-spacing:621.666240px;}
._4{margin-left:-9.898906px;}
._12{margin-left:-7.340448px;}
._7{margin-left:-6.336214px;}
._6{margin-left:-5.308087px;}
._1{margin-left:-3.849538px;}
._1e{margin-left:-2.630133px;}
._2{margin-left:-1.506341px;}
._41{width:1.187756px;}
._5{width:2.996447px;}
._1a{width:4.483170px;}
._0{width:12.971268px;}
._15{width:14.238544px;}
._17{width:15.709041px;}
._2a{width:16.737175px;}
._16{width:17.825080px;}
._b{width:18.889090px;}
._c{width:20.275879px;}
._9{width:21.674617px;}
._e{width:23.252708px;}
._18{width:24.866650px;}
._3{width:25.943736px;}
._f{width:27.867380px;}
._8{width:29.768249px;}
._d{width:31.501741px;}
._1b{width:32.517926px;}
._2b{width:34.502472px;}
._a{width:35.578433px;}
._19{width:37.527126px;}
._2c{width:39.643180px;}
._14{width:41.018012px;}
._13{width:43.038432px;}
._52{width:61.868160px;}
._34{width:73.643539px;}
._3f{width:91.742040px;}
._1f{width:92.915426px;}
._51{width:96.537594px;}
._40{width:111.612996px;}
._4e{width:119.718085px;}
._1d{width:126.880047px;}
._49{width:131.814569px;}
._20{width:147.048345px;}
._2d{width:151.232268px;}
._4d{width:164.981070px;}
._38{width:168.109481px;}
._32{width:170.384705px;}
._42{width:172.379224px;}
._48{width:177.079682px;}
._4a{width:193.195224px;}
._4c{width:196.303563px;}
._3c{width:202.779902px;}
._3a{width:206.514914px;}
._46{width:208.354354px;}
._2e{width:209.481124px;}
._33{width:212.071151px;}
._4b{width:217.870654px;}
._47{width:220.644248px;}
._3e{width:224.457378px;}
._45{width:229.969265px;}
._43{width:235.000237px;}
._37{width:241.134770px;}
._21{width:243.027196px;}
._29{width:251.918921px;}
._31{width:259.964084px;}
._30{width:263.132191px;}
._50{width:291.724211px;}
._25{width:293.809766px;}
._39{width:294.997360px;}
._2f{width:305.692418px;}
._44{width:323.267256px;}
._3d{width:328.945127px;}
._3b{width:331.037273px;}
._35{width:332.950092px;}
._1c{width:373.096321px;}
._23{width:380.747617px;}
._28{width:385.816601px;}
._26{width:392.750588px;}
._24{width:394.089565px;}
._27{width:405.375226px;}
._22{width:411.974469px;}
._4f{width:482.570979px;}
._10{width:1899.987000px;}
._36{width:2541.735000px;}
._11{width:2565.645000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:49.829400px;}
.fs8{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y191{bottom:8.443954px;}
.y190{bottom:22.753290px;}
.y41{bottom:45.921000px;}
.y19{bottom:100.260000px;}
.y165{bottom:100.383000px;}
.y10c{bottom:101.523000px;}
.y201{bottom:101.911500px;}
.y13c{bottom:102.598500px;}
.y11a{bottom:102.988500px;}
.y75{bottom:111.924000px;}
.yd6{bottom:113.299500px;}
.y18e{bottom:113.626500px;}
.y1ca{bottom:117.796500px;}
.y18{bottom:118.147500px;}
.ycc{bottom:118.365000px;}
.y22f{bottom:120.450000px;}
.y164{bottom:121.273500px;}
.y200{bottom:121.410000px;}
.y10b{bottom:122.415000px;}
.y13b{bottom:123.489000px;}
.y119{bottom:123.880500px;}
.y74{bottom:132.816000px;}
.ya3{bottom:134.191500px;}
.y18d{bottom:134.518500px;}
.ye8{bottom:134.773500px;}
.y17{bottom:136.035000px;}
.y1c9{bottom:138.688500px;}
.ycb{bottom:139.255500px;}
.y22e{bottom:139.600500px;}
.y1ff{bottom:140.908500px;}
.y163{bottom:142.165500px;}
.y10a{bottom:143.307000px;}
.y13a{bottom:144.381000px;}
.y118{bottom:144.772500px;}
.y1a5{bottom:150.675000px;}
.y73{bottom:153.706500px;}
.y16{bottom:153.922500px;}
.ya2{bottom:155.083500px;}
.y18c{bottom:155.410500px;}
.ye7{bottom:155.664000px;}
.y22d{bottom:158.751000px;}
.y1c8{bottom:159.579000px;}
.yca{bottom:160.147500px;}
.y1fe{bottom:160.407000px;}
.y162{bottom:163.057500px;}
.y109{bottom:164.199000px;}
.y139{bottom:165.273000px;}
.y117{bottom:165.663000px;}
.y1a4{bottom:171.567000px;}
.y15{bottom:171.811500px;}
.y72{bottom:174.598500px;}
.ya1{bottom:175.974000px;}
.y18b{bottom:176.301000px;}
.ye6{bottom:176.556000px;}
.y22c{bottom:177.901500px;}
.yd5{bottom:180.457500px;}
.yc9{bottom:181.039500px;}
.y161{bottom:183.948000px;}
.y1c7{bottom:184.954500px;}
.y108{bottom:185.089500px;}
.y138{bottom:186.165000px;}
.y116{bottom:186.555000px;}
.y1fd{bottom:188.872500px;}
.y14{bottom:189.699000px;}
.y1a3{bottom:192.457500px;}
.y71{bottom:195.490500px;}
.ya0{bottom:196.866000px;}
.y22b{bottom:197.053500px;}
.y18a{bottom:197.193000px;}
.ye5{bottom:197.448000px;}
.y40{bottom:199.716000px;}
.yc8{bottom:201.930000px;}
.y160{bottom:204.840000px;}
.yd4{bottom:204.889500px;}
.y107{bottom:205.981500px;}
.y137{bottom:207.055500px;}
.y115{bottom:207.447000px;}
.y13{bottom:207.586500px;}
.y1fc{bottom:208.371000px;}
.y1a2{bottom:213.349500px;}
.y22a{bottom:216.204000px;}
.y70{bottom:216.381000px;}
.y9f{bottom:217.758000px;}
.y189{bottom:218.085000px;}
.ye4{bottom:218.338500px;}
.y1c6{bottom:220.296000px;}
.y3f{bottom:220.608000px;}
.yc7{bottom:222.822000px;}
.y12{bottom:225.475500px;}
.y15f{bottom:225.732000px;}
.y106{bottom:226.873500px;}
.y1fb{bottom:227.869500px;}
.y114{bottom:228.339000px;}
.y136{bottom:232.431000px;}
.y1a1{bottom:234.241500px;}
.y229{bottom:235.354500px;}
.y6f{bottom:237.273000px;}
.y9e{bottom:238.648500px;}
.y188{bottom:238.975500px;}
.ye3{bottom:239.230500px;}
.y1c5{bottom:241.188000px;}
.yc6{bottom:243.714000px;}
.y15e{bottom:246.622500px;}
.y1fa{bottom:247.369500px;}
.y105{bottom:247.764000px;}
.y113{bottom:249.229500px;}
.y135{bottom:249.840000px;}
.y11{bottom:252.330000px;}
.y228{bottom:254.505000px;}
.y1a0{bottom:255.132000px;}
.y6e{bottom:258.165000px;}
.y3e{bottom:259.432500px;}
.y9d{bottom:259.540500px;}
.y187{bottom:259.867500px;}
.ye2{bottom:260.122500px;}
.y1c4{bottom:262.080000px;}
.yc5{bottom:264.606000px;}
.y1f9{bottom:266.868000px;}
.y15d{bottom:267.514500px;}
.y104{bottom:268.656000px;}
.y112{bottom:270.121500px;}
.y10{bottom:270.217500px;}
.y227{bottom:273.655500px;}
.y19f{bottom:276.024000px;}
.y6d{bottom:279.055500px;}
.y3d{bottom:280.324500px;}
.y9c{bottom:280.432500px;}
.y186{bottom:280.759500px;}
.ye1{bottom:281.013000px;}
.y1c3{bottom:282.970500px;}
.yc4{bottom:285.496500px;}
.y1f8{bottom:286.366500px;}
.yf{bottom:288.105000px;}
.y15c{bottom:288.406500px;}
.y111{bottom:291.013500px;}
.y226{bottom:292.806000px;}
.y103{bottom:294.030000px;}
.y19e{bottom:296.916000px;}
.y134{bottom:297.319500px;}
.y6c{bottom:299.947500px;}
.y3c{bottom:301.215000px;}
.y9b{bottom:301.323000px;}
.y185{bottom:301.650000px;}
.ye0{bottom:301.905000px;}
.y1c2{bottom:303.862500px;}
.ye{bottom:305.994000px;}
.y131{bottom:306.285000px;}
.yc3{bottom:306.388500px;}
.y15b{bottom:309.297000px;}
.y130{bottom:315.252000px;}
.y225{bottom:316.440000px;}
.y19d{bottom:317.808000px;}
.y6b{bottom:320.839500px;}
.y3b{bottom:322.107000px;}
.y9a{bottom:322.215000px;}
.y184{bottom:322.542000px;}
.ydf{bottom:322.797000px;}
.y1f7{bottom:323.797500px;}
.yd{bottom:323.881500px;}
.y132{bottom:324.219000px;}
.y1c1{bottom:324.754500px;}
.y110{bottom:326.640000px;}
.yc2{bottom:327.280500px;}
.y102{bottom:329.373000px;}
.y15a{bottom:330.189000px;}
.y255{bottom:331.038000px;}
.y133{bottom:333.184500px;}
.y19c{bottom:338.698500px;}
.y6a{bottom:341.730000px;}
.yc{bottom:341.769000px;}
.y3a{bottom:342.999000px;}
.y183{bottom:343.434000px;}
.yde{bottom:343.687500px;}
.y1f6{bottom:344.689500px;}
.y1c0{bottom:345.645000px;}
.y10f{bottom:345.873000px;}
.y99{bottom:347.590500px;}
.yc1{bottom:348.171000px;}
.y254{bottom:350.188500px;}
.y101{bottom:350.265000px;}
.y159{bottom:351.081000px;}
.y12f{bottom:351.117000px;}
.y224{bottom:355.263000px;}
.y19b{bottom:359.590500px;}
.yb{bottom:359.658000px;}
.y69{bottom:362.622000px;}
.y39{bottom:363.889500px;}
.y182{bottom:364.324500px;}
.ydd{bottom:364.579500px;}
.y1f5{bottom:365.581500px;}
.y1bf{bottom:366.537000px;}
.y12d{bottom:369.051000px;}
.yc0{bottom:369.063000px;}
.y253{bottom:369.339000px;}
.y100{bottom:371.155500px;}
.y223{bottom:376.155000px;}
.ya{bottom:377.545500px;}
.y19a{bottom:380.482500px;}
.y98{bottom:382.932000px;}
.y68{bottom:383.514000px;}
.y38{bottom:384.781500px;}
.y181{bottom:385.216500px;}
.ydc{bottom:385.471500px;}
.y1f4{bottom:386.472000px;}
.y12e{bottom:386.983500px;}
.y1be{bottom:387.429000px;}
.ybf{bottom:389.955000px;}
.yff{bottom:392.047500px;}
.y9{bottom:395.433000px;}
.y222{bottom:397.047000px;}
.y158{bottom:402.042000px;}
.y97{bottom:403.824000px;}
.y67{bottom:404.406000px;}
.y12c{bottom:404.916000px;}
.y37{bottom:405.673500px;}
.y199{bottom:405.856500px;}
.y180{bottom:406.108500px;}
.ydb{bottom:406.363500px;}
.y1f3{bottom:407.364000px;}
.y1bd{bottom:408.321000px;}
.ybe{bottom:410.845500px;}
.y252{bottom:412.371000px;}
.yfe{bottom:412.939500px;}
.y8{bottom:413.322000px;}
.y1d7{bottom:415.329000px;}
.y221{bottom:417.939000px;}
.y157{bottom:419.974500px;}
.y12a{bottom:422.848500px;}
.y96{bottom:424.716000px;}
.y66{bottom:425.296500px;}
.y36{bottom:426.564000px;}
.y17f{bottom:427.000500px;}
.yda{bottom:427.254000px;}
.y1f2{bottom:428.256000px;}
.y1bc{bottom:429.211500px;}
.y251{bottom:431.521500px;}
.ybd{bottom:431.737500px;}
.yfd{bottom:433.831500px;}
.y7{bottom:437.187000px;}
.y156{bottom:437.907000px;}
.y220{bottom:438.829500px;}
.y12b{bottom:440.781000px;}
.y198{bottom:441.199500px;}
.y95{bottom:445.606500px;}
.y65{bottom:446.188500px;}
.y35{bottom:447.456000px;}
.y17e{bottom:447.891000px;}
.yd9{bottom:448.146000px;}
.y1f1{bottom:449.146500px;}
.y1bb{bottom:450.103500px;}
.y1d6{bottom:450.672000px;}
.ybc{bottom:452.629500px;}
.yfc{bottom:454.722000px;}
.y6{bottom:455.074500px;}
.y129{bottom:458.713500px;}
.y21f{bottom:459.721500px;}
.y197{bottom:462.090000px;}
.y154{bottom:463.042500px;}
.y94{bottom:466.498500px;}
.y64{bottom:467.080500px;}
.y34{bottom:468.348000px;}
.yd8{bottom:469.038000px;}
.y250{bottom:469.822500px;}
.y1f0{bottom:470.038500px;}
.y1ba{bottom:470.995500px;}
.y1d5{bottom:471.562500px;}
.y153{bottom:472.009500px;}
.y5{bottom:472.963500px;}
.ybb{bottom:473.520000px;}
.yfb{bottom:475.614000px;}
.y126{bottom:476.647500px;}
.y21e{bottom:480.613500px;}
.y155{bottom:480.975000px;}
.y196{bottom:482.982000px;}
.y125{bottom:485.613000px;}
.y93{bottom:487.390500px;}
.y63{bottom:487.971000px;}
.y24f{bottom:488.973000px;}
.y33{bottom:489.238500px;}
.yd7{bottom:489.928500px;}
.y17d{bottom:490.087500px;}
.y4{bottom:490.851000px;}
.y1ef{bottom:490.930500px;}
.y1b9{bottom:491.886000px;}
.y1d4{bottom:492.454500px;}
.yba{bottom:494.412000px;}
.y128{bottom:494.580000px;}
.yfa{bottom:496.506000px;}
.y21d{bottom:501.504000px;}
.y195{bottom:503.874000px;}
.y17c{bottom:504.283500px;}
.y24e{bottom:508.123500px;}
.y92{bottom:508.281000px;}
.y62{bottom:508.863000px;}
.y32{bottom:510.130500px;}
.y1ee{bottom:511.822500px;}
.y127{bottom:512.512500px;}
.y1b8{bottom:512.778000px;}
.y1d3{bottom:513.346500px;}
.y3{bottom:514.716000px;}
.yb9{bottom:515.304000px;}
.y152{bottom:516.630000px;}
.yf9{bottom:517.396500px;}
.y21c{bottom:522.396000px;}
.y194{bottom:524.764500px;}
.y17b{bottom:525.444000px;}
.y24d{bottom:527.274000px;}
.y91{bottom:529.173000px;}
.y61{bottom:529.755000px;}
.y124{bottom:530.445000px;}
.y31{bottom:531.022500px;}
.y2{bottom:532.605000px;}
.y1ed{bottom:532.713000px;}
.y1b7{bottom:533.670000px;}
.y1d2{bottom:534.237000px;}
.y151{bottom:535.863000px;}
.yb8{bottom:536.194500px;}
.yf8{bottom:538.288500px;}
.y17a{bottom:539.640000px;}
.y21b{bottom:543.288000px;}
.y24c{bottom:546.424500px;}
.y122{bottom:548.377500px;}
.y90{bottom:550.065000px;}
.y193{bottom:550.140000px;}
.y1{bottom:550.492500px;}
.y60{bottom:550.645500px;}
.y30{bottom:551.914500px;}
.y1ec{bottom:553.605000px;}
.y179{bottom:553.837500px;}
.y1b6{bottom:554.560500px;}
.y1d1{bottom:555.129000px;}
.yb7{bottom:557.086500px;}
.yf7{bottom:559.180500px;}
.y24b{bottom:565.575000px;}
.y123{bottom:566.310000px;}
.y21a{bottom:568.662000px;}
.y8f{bottom:570.955500px;}
.y5f{bottom:571.537500px;}
.y2f{bottom:572.805000px;}
.y150{bottom:572.967000px;}
.y1eb{bottom:574.497000px;}
.y178{bottom:575.443500px;}
.y1b5{bottom:575.452500px;}
.y1d0{bottom:576.021000px;}
.yb6{bottom:577.978500px;}
.yf6{bottom:580.071000px;}
.y24a{bottom:584.725500px;}
.y192{bottom:585.768000px;}
.y120{bottom:591.445500px;}
.y8e{bottom:591.847500px;}
.y5e{bottom:592.429500px;}
.y2e{bottom:593.697000px;}
.y14f{bottom:593.857500px;}
.y219{bottom:594.037500px;}
.y1ea{bottom:595.387500px;}
.y1b4{bottom:596.344500px;}
.y1cf{bottom:596.913000px;}
.yb5{bottom:598.870500px;}
.y11f{bottom:600.412500px;}
.yf5{bottom:600.963000px;}
.y249{bottom:603.876000px;}
.y177{bottom:608.689500px;}
.y121{bottom:609.378000px;}
.y18f{bottom:611.185500px;}
.y8d{bottom:612.739500px;}
.y5d{bottom:613.320000px;}
.y2d{bottom:614.589000px;}
.y14e{bottom:614.749500px;}
.y218{bottom:614.928000px;}
.y1e9{bottom:616.279500px;}
.y1ce{bottom:617.803500px;}
.yb4{bottom:619.761000px;}
.y1b3{bottom:621.718500px;}
.yf4{bottom:621.855000px;}
.y248{bottom:623.026500px;}
.y176{bottom:627.922500px;}
.y8c{bottom:633.631500px;}
.y5c{bottom:634.212000px;}
.y2c{bottom:635.479500px;}
.y14d{bottom:635.641500px;}
.y217{bottom:635.820000px;}
.y1e8{bottom:637.171500px;}
.y1cd{bottom:638.695500px;}
.yb3{bottom:640.653000px;}
.y247{bottom:642.177000px;}
.yf3{bottom:642.745500px;}
.y11e{bottom:645.033000px;}
.y8b{bottom:654.522000px;}
.y5b{bottom:655.104000px;}
.y2b{bottom:656.371500px;}
.y14c{bottom:656.533500px;}
.y216{bottom:656.712000px;}
.y1b2{bottom:657.061500px;}
.y1e7{bottom:658.062000px;}
.y1cc{bottom:659.587500px;}
.y246{bottom:661.327500px;}
.yb2{bottom:661.545000px;}
.yf2{bottom:663.637500px;}
.y11d{bottom:664.266000px;}
.y175{bottom:665.026500px;}
.y5a{bottom:673.266000px;}
.y8a{bottom:675.414000px;}
.y59{bottom:675.996000px;}
.y2a{bottom:677.263500px;}
.y14b{bottom:677.424000px;}
.y215{bottom:677.602500px;}
.y1b1{bottom:677.953500px;}
.y1e6{bottom:678.954000px;}
.y1cb{bottom:680.478000px;}
.yb1{bottom:682.435500px;}
.yf1{bottom:684.529500px;}
.y174{bottom:685.918500px;}
.y89{bottom:696.306000px;}
.y58{bottom:696.886500px;}
.y29{bottom:698.154000px;}
.y14a{bottom:698.316000px;}
.y214{bottom:698.494500px;}
.y1b0{bottom:698.844000px;}
.y245{bottom:699.628500px;}
.y1e5{bottom:699.846000px;}
.y11c{bottom:701.370000px;}
.yd3{bottom:703.327500px;}
.yf0{bottom:705.420000px;}
.y173{bottom:706.809000px;}
.yb0{bottom:707.811000px;}
.y88{bottom:717.196500px;}
.y57{bottom:717.778500px;}
.y244{bottom:718.779000px;}
.y28{bottom:719.046000px;}
.y213{bottom:719.386500px;}
.y1af{bottom:719.736000px;}
.y1e4{bottom:720.736500px;}
.y11b{bottom:722.262000px;}
.y149{bottom:723.690000px;}
.yd2{bottom:724.219500px;}
.yef{bottom:726.312000px;}
.y172{bottom:727.701000px;}
.y243{bottom:737.929500px;}
.y87{bottom:738.088500px;}
.y56{bottom:738.670500px;}
.y27{bottom:739.938000px;}
.y212{bottom:740.277000px;}
.y1ae{bottom:740.628000px;}
.y148{bottom:741.100500px;}
.y1e3{bottom:741.628500px;}
.yaf{bottom:743.152500px;}
.yd1{bottom:745.110000px;}
.y171{bottom:748.593000px;}
.y242{bottom:757.081500px;}
.y86{bottom:758.980500px;}
.y55{bottom:759.561000px;}
.y26{bottom:760.828500px;}
.y211{bottom:761.169000px;}
.y1ad{bottom:761.518500px;}
.y1e2{bottom:762.520500px;}
.y10e{bottom:763.462500px;}
.yae{bottom:764.044500px;}
.yd0{bottom:766.002000px;}
.y170{bottom:769.483500px;}
.yee{bottom:776.152500px;}
.y241{bottom:776.232000px;}
.y147{bottom:778.947000px;}
.y85{bottom:779.871000px;}
.y54{bottom:780.453000px;}
.y25{bottom:781.720500px;}
.y1ac{bottom:782.410500px;}
.y1e1{bottom:783.411000px;}
.yad{bottom:784.936500px;}
.y210{bottom:786.544500px;}
.ycf{bottom:786.894000px;}
.y10d{bottom:787.894500px;}
.yed{bottom:790.350000px;}
.y16f{bottom:790.375500px;}
.y146{bottom:793.144500px;}
.y240{bottom:795.382500px;}
.y84{bottom:800.763000px;}
.y53{bottom:801.345000px;}
.y1ab{bottom:803.302500px;}
.y1e0{bottom:804.303000px;}
.yec{bottom:804.546000px;}
.yac{bottom:805.827000px;}
.y145{bottom:807.340500px;}
.yce{bottom:807.784500px;}
.y16e{bottom:811.267500px;}
.y24{bottom:811.578000px;}
.y20f{bottom:811.918500px;}
.y23f{bottom:814.533000px;}
.y144{bottom:821.538000px;}
.y83{bottom:821.655000px;}
.y52{bottom:822.235500px;}
.y1aa{bottom:824.193000px;}
.y1df{bottom:825.195000px;}
.yeb{bottom:825.945000px;}
.yab{bottom:826.719000px;}
.y16d{bottom:832.158000px;}
.yea{bottom:833.043000px;}
.ycd{bottom:833.160000px;}
.y23e{bottom:833.683500px;}
.y82{bottom:842.545500px;}
.y51{bottom:843.127500px;}
.y143{bottom:843.819000px;}
.y1a9{bottom:845.085000px;}
.y1de{bottom:846.087000px;}
.yaa{bottom:847.611000px;}
.y20e{bottom:850.743000px;}
.y23{bottom:851.598000px;}
.y23d{bottom:852.834000px;}
.y16c{bottom:853.050000px;}
.y142{bottom:861.751500px;}
.y81{bottom:863.437500px;}
.y50{bottom:864.019500px;}
.y1a8{bottom:865.977000px;}
.y1dd{bottom:866.977500px;}
.ya9{bottom:868.503000px;}
.y23c{bottom:871.984500px;}
.y22{bottom:872.077500px;}
.ye9{bottom:873.181500px;}
.y16b{bottom:873.942000px;}
.y20d{bottom:879.208500px;}
.y141{bottom:879.684000px;}
.y21{bottom:883.878000px;}
.y80{bottom:884.329500px;}
.y4f{bottom:884.910000px;}
.y1a7{bottom:886.867500px;}
.y1dc{bottom:887.869500px;}
.ya8{bottom:889.393500px;}
.y23b{bottom:891.135000px;}
.y16a{bottom:894.834000px;}
.y20c{bottom:898.707000px;}
.y20{bottom:904.357500px;}
.y140{bottom:904.819500px;}
.y7f{bottom:905.220000px;}
.y4e{bottom:905.802000px;}
.y1db{bottom:908.761500px;}
.ya7{bottom:910.285500px;}
.y1a6{bottom:912.243000px;}
.y13f{bottom:913.785000px;}
.y169{bottom:915.724500px;}
.y4d{bottom:926.694000px;}
.y20b{bottom:927.172500px;}
.y23a{bottom:929.436000px;}
.y1da{bottom:929.652000px;}
.y7e{bottom:930.595500px;}
.ya6{bottom:931.177500px;}
.y168{bottom:936.616500px;}
.y20a{bottom:946.671000px;}
.y4c{bottom:947.584500px;}
.y239{bottom:948.586500px;}
.y1f{bottom:949.033500px;}
.y1d9{bottom:950.544000px;}
.ya5{bottom:952.068000px;}
.y7d{bottom:955.027500px;}
.y13e{bottom:958.405500px;}
.y167{bottom:961.990500px;}
.y209{bottom:966.169500px;}
.y238{bottom:967.737000px;}
.y4b{bottom:968.476500px;}
.y1e{bottom:969.925500px;}
.ya4{bottom:972.960000px;}
.y1d8{bottom:975.918000px;}
.y13d{bottom:977.638500px;}
.y166{bottom:979.401000px;}
.y208{bottom:985.668000px;}
.y237{bottom:986.887500px;}
.y4a{bottom:989.368500px;}
.y7c{bottom:993.852000px;}
.y207{bottom:1005.166500px;}
.y236{bottom:1006.038000px;}
.y1d{bottom:1008.748500px;}
.y49{bottom:1010.260500px;}
.y7b{bottom:1014.742500px;}
.y235{bottom:1025.188500px;}
.y48{bottom:1031.151000px;}
.y206{bottom:1033.632000px;}
.y7a{bottom:1035.634500px;}
.y1c{bottom:1040.086500px;}
.y234{bottom:1044.339000px;}
.y47{bottom:1052.043000px;}
.y205{bottom:1053.130500px;}
.y79{bottom:1056.526500px;}
.y233{bottom:1063.489500px;}
.y1b{bottom:1071.424500px;}
.y204{bottom:1072.629000px;}
.y46{bottom:1072.935000px;}
.y78{bottom:1077.417000px;}
.y232{bottom:1082.640000px;}
.y45{bottom:1093.825500px;}
.y77{bottom:1098.309000px;}
.y203{bottom:1101.094500px;}
.y231{bottom:1101.790500px;}
.y1a{bottom:1102.761000px;}
.y44{bottom:1114.717500px;}
.y76{bottom:1119.201000px;}
.y202{bottom:1120.593000px;}
.y230{bottom:1120.941000px;}
.y43{bottom:1140.091500px;}
.y42{bottom:1200.196500px;}
.h14{height:23.145170px;}
.h6{height:32.565965px;}
.hf{height:34.574294px;}
.h2{height:37.993262px;}
.h1d{height:39.287109px;}
.hb{height:41.250077px;}
.hc{height:41.482876px;}
.h18{height:41.842920px;}
.h1a{height:42.460829px;}
.h8{height:43.217759px;}
.h7{height:43.421105px;}
.h1c{height:43.710293px;}
.h3{height:43.815515px;}
.hd{height:48.848947px;}
.ha{height:51.861658px;}
.h9{height:54.276245px;}
.h5{height:54.541601px;}
.h19{height:62.946077px;}
.h17{height:62.952077px;}
.he{height:62.972294px;}
.h4{height:77.792486px;}
.h10{height:79.079759px;}
.h11{height:79.085759px;}
.h16{height:89.437601px;}
.h12{height:90.144245px;}
.h15{height:114.947759px;}
.h13{height:126.006245px;}
.h1b{height:174.894000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:755.084400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x52{left:62.541000px;}
.x4c{left:64.705500px;}
.x5d{left:69.060000px;}
.x66{left:70.212000px;}
.x72{left:73.344000px;}
.x4b{left:75.625500px;}
.x73{left:79.158902px;}
.x70{left:81.688500px;}
.x5b{left:83.368500px;}
.x65{left:84.520500px;}
.x8e{left:85.848000px;}
.x71{left:105.652500px;}
.x4a{left:107.934000px;}
.x58{left:123.754500px;}
.x64{left:124.905000px;}
.x49{left:126.309000px;}
.x54{left:175.831500px;}
.x1c{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x4f{left:253.999500px;}
.x51{left:266.452500px;}
.x3{left:269.914500px;}
.x6{left:278.137500px;}
.x5c{left:280.369500px;}
.x5{left:281.479500px;}
.x8d{left:284.184000px;}
.x7{left:285.610500px;}
.x61{left:291.531000px;}
.x2e{left:296.056500px;}
.x2f{left:310.999500px;}
.x50{left:313.990500px;}
.x17{left:317.934000px;}
.x7a{left:319.333500px;}
.x20{left:320.659500px;}
.x56{left:322.609500px;}
.x18{left:325.407000px;}
.x21{left:328.132500px;}
.xe{left:335.230500px;}
.xf{left:342.702000px;}
.x4d{left:344.875500px;}
.x3b{left:351.771000px;}
.x26{left:355.173000px;}
.x27{left:362.646000px;}
.x3c{left:366.714000px;}
.x4e{left:373.384500px;}
.x75{left:381.241500px;}
.x10{left:384.610500px;}
.x76{left:388.713000px;}
.x62{left:392.181000px;}
.x11{left:394.761000px;}
.x77{left:400.339500px;}
.x1f{left:407.581500px;}
.x6f{left:411.469500px;}
.x7b{left:415.099500px;}
.x7c{left:418.779000px;}
.x7d{left:433.722000px;}
.x1d{left:447.133500px;}
.x24{left:450.450000px;}
.x89{left:456.636000px;}
.x25{left:457.921500px;}
.x1e{left:462.078000px;}
.x59{left:465.796500px;}
.x55{left:468.196500px;}
.x42{left:469.582500px;}
.x8a{left:471.580500px;}
.x8b{left:479.281500px;}
.x43{left:484.527000px;}
.x33{left:487.693500px;}
.x32{left:496.422000px;}
.xa{left:501.498000px;}
.x34{left:502.636500px;}
.x16{left:504.456000px;}
.xb{left:508.971000px;}
.x8{left:511.270500px;}
.x6d{left:515.311500px;}
.x9{left:518.743500px;}
.x8c{left:524.725500px;}
.x35{left:528.852000px;}
.x44{left:530.407500px;}
.x3d{left:535.003500px;}
.x2c{left:541.579500px;}
.x36{left:543.796500px;}
.x45{left:545.350500px;}
.x46{left:548.152500px;}
.x3e{left:549.946500px;}
.x2d{left:556.524000px;}
.x47{left:563.097000px;}
.x30{left:567.624000px;}
.x79{left:578.310000px;}
.x31{left:582.568500px;}
.x2a{left:588.678000px;}
.x81{left:600.762000px;}
.x2b{left:603.621000px;}
.x63{left:609.322500px;}
.x83{left:614.632500px;}
.x82{left:615.705000px;}
.x19{left:619.728000px;}
.x53{left:625.672500px;}
.x84{left:629.577000px;}
.x12{left:634.027500px;}
.x1a{left:638.352000px;}
.x13{left:641.500500px;}
.x78{left:649.789500px;}
.x1b{left:653.296500px;}
.x5a{left:654.750000px;}
.x37{left:659.332500px;}
.x38{left:674.275500px;}
.x28{left:676.194000px;}
.x40{left:688.657500px;}
.x29{left:691.137000px;}
.x41{left:700.950000px;}
.x57{left:709.647000px;}
.x7e{left:721.992000px;}
.x22{left:723.886500px;}
.x23{left:731.359500px;}
.x5e{left:736.636500px;}
.x7f{left:740.596500px;}
.x6b{left:747.016500px;}
.x39{left:749.490000px;}
.x6e{left:751.002000px;}
.x5f{left:752.464500px;}
.x80{left:755.541000px;}
.x60{left:761.991000px;}
.x6c{left:763.035000px;}
.x3a{left:764.434500px;}
.x67{left:771.334500px;}
.x86{left:773.092500px;}
.x69{left:780.912000px;}
.x68{left:789.870000px;}
.x14{left:792.148500px;}
.x6a{left:795.310500px;}
.x74{left:797.533500px;}
.x15{left:799.620000px;}
.x3f{left:805.693500px;}
.x48{left:818.046000px;}
.x85{left:821.583000px;}
.xc{left:825.327000px;}
.x87{left:826.365000px;}
.xd{left:832.798500px;}
.x88{left:833.838000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:25.242667pt;}
.v5{vertical-align:31.877333pt;}
.v7{vertical-align:50.304000pt;}
.v6{vertical-align:63.760000pt;}
.ls2a{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000387pt;}
.ls8{letter-spacing:0.000540pt;}
.ls32{letter-spacing:0.000711pt;}
.ls2b{letter-spacing:0.001408pt;}
.ls11{letter-spacing:0.001966pt;}
.ls18{letter-spacing:0.001972pt;}
.ls1c{letter-spacing:0.003135pt;}
.ls19{letter-spacing:0.005055pt;}
.ls26{letter-spacing:0.009600pt;}
.ls29{letter-spacing:0.019200pt;}
.ls25{letter-spacing:0.024000pt;}
.ls27{letter-spacing:0.124800pt;}
.ls28{letter-spacing:0.134400pt;}
.ls1a{letter-spacing:0.528814pt;}
.ls12{letter-spacing:0.576078pt;}
.ls14{letter-spacing:0.637762pt;}
.ls23{letter-spacing:10.623733pt;}
.ls20{letter-spacing:10.624709pt;}
.ls3{letter-spacing:10.626533pt;}
.ls21{letter-spacing:10.630043pt;}
.ls22{letter-spacing:11.157867pt;}
.ls36{letter-spacing:11.810049pt;}
.ls2f{letter-spacing:11.932576pt;}
.ls2c{letter-spacing:11.954133pt;}
.ls2d{letter-spacing:11.959467pt;}
.ls35{letter-spacing:12.042104pt;}
.ls2e{letter-spacing:12.042115pt;}
.ls33{letter-spacing:12.050209pt;}
.ls30{letter-spacing:12.177726pt;}
.ls34{letter-spacing:12.191440pt;}
.lse{letter-spacing:13.057556pt;}
.ls10{letter-spacing:13.062999pt;}
.lsd{letter-spacing:13.275244pt;}
.ls6{letter-spacing:13.278015pt;}
.lsf{letter-spacing:13.283733pt;}
.ls31{letter-spacing:13.367676pt;}
.ls5{letter-spacing:13.389734pt;}
.ls9{letter-spacing:13.549136pt;}
.ls13{letter-spacing:13.917762pt;}
.ls15{letter-spacing:13.923096pt;}
.lsa{letter-spacing:13.946133pt;}
.ls16{letter-spacing:13.947774pt;}
.lsc{letter-spacing:19.053982pt;}
.lsb{letter-spacing:24.214766pt;}
.ls0{letter-spacing:51.035733pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.ls1d{letter-spacing:88.827733pt;}
.ls1b{letter-spacing:106.838400pt;}
.ls1e{letter-spacing:119.318400pt;}
.ls1f{letter-spacing:199.793067pt;}
.ls17{letter-spacing:201.582903pt;}
.ls24{letter-spacing:1770.387141pt;}
.ws5d{word-spacing:-13.283467pt;}
.wsca{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws4c{word-spacing:-2.975497pt;}
.ws93{word-spacing:-2.709827pt;}
.ws4d{word-spacing:-2.656693pt;}
.ws52{word-spacing:-2.603559pt;}
.ws3e{word-spacing:-2.284756pt;}
.ws32{word-spacing:-2.231622pt;}
.ws5f{word-spacing:-2.072221pt;}
.wsc3{word-spacing:-2.008474pt;}
.ws49{word-spacing:-1.912819pt;}
.ws3f{word-spacing:-1.859685pt;}
.ws9d{word-spacing:-1.753418pt;}
.ws7a{word-spacing:-1.700284pt;}
.ws53{word-spacing:-1.647150pt;}
.wsa3{word-spacing:-1.594016pt;}
.wsbf{word-spacing:-1.578086pt;}
.wsb0{word-spacing:-1.540882pt;}
.ws23{word-spacing:-1.487748pt;}
.ws64{word-spacing:-1.381481pt;}
.ws77{word-spacing:-1.328347pt;}
.ws30{word-spacing:-1.275213pt;}
.ws5c{word-spacing:-1.222079pt;}
.ws5e{word-spacing:-1.115811pt;}
.ws19{word-spacing:-0.956410pt;}
.ws48{word-spacing:-0.850142pt;}
.ws3c{word-spacing:-0.797008pt;}
.ws36{word-spacing:-0.637606pt;}
.wsdf{word-spacing:-0.621670pt;}
.ws9f{word-spacing:-0.584473pt;}
.ws1b{word-spacing:-0.531339pt;}
.ws17{word-spacing:-0.478205pt;}
.wsa6{word-spacing:-0.425071pt;}
.ws44{word-spacing:-0.371937pt;}
.ws22{word-spacing:-0.318803pt;}
.ws7b{word-spacing:-0.286925pt;}
.ws11{word-spacing:-0.265669pt;}
.wsb7{word-spacing:-0.239104pt;}
.ws29{word-spacing:-0.212535pt;}
.wsc1{word-spacing:-0.191283pt;}
.wsb{word-spacing:-0.159402pt;}
.wse6{word-spacing:-0.143462pt;}
.ws21{word-spacing:-0.106268pt;}
.wsdd{word-spacing:-0.095642pt;}
.ws28{word-spacing:-0.053134pt;}
.ws82{word-spacing:-0.047821pt;}
.ws1f{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.wse3{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.ws1{word-spacing:0.074387pt;}
.ws97{word-spacing:0.085014pt;}
.wsbc{word-spacing:0.095642pt;}
.wsc{word-spacing:0.106268pt;}
.ws84{word-spacing:0.127522pt;}
.wsb5{word-spacing:0.143462pt;}
.wsa2{word-spacing:0.144000pt;}
.ws13{word-spacing:0.159402pt;}
.wsa1{word-spacing:0.163200pt;}
.ws85{word-spacing:0.170029pt;}
.wsa0{word-spacing:0.172800pt;}
.ws96{word-spacing:0.191283pt;}
.ws14{word-spacing:0.212535pt;}
.wsb4{word-spacing:0.239104pt;}
.ws98{word-spacing:0.255043pt;}
.ws1a{word-spacing:0.265669pt;}
.wse5{word-spacing:0.286925pt;}
.wsd{word-spacing:0.318803pt;}
.ws4b{word-spacing:0.371937pt;}
.ws6f{word-spacing:0.425071pt;}
.ws31{word-spacing:0.531339pt;}
.ws73{word-spacing:0.562746pt;}
.wsc0{word-spacing:0.573850pt;}
.ws41{word-spacing:0.584473pt;}
.ws7e{word-spacing:0.663033pt;}
.ws8b{word-spacing:0.664830pt;}
.ws27{word-spacing:0.690740pt;}
.ws6e{word-spacing:0.743874pt;}
.ws94{word-spacing:0.797008pt;}
.wsa8{word-spacing:0.850142pt;}
.ws16{word-spacing:0.903276pt;}
.ws68{word-spacing:0.956410pt;}
.ws91{word-spacing:1.062677pt;}
.wsd6{word-spacing:1.099878pt;}
.ws4f{word-spacing:1.115811pt;}
.ws3d{word-spacing:1.168945pt;}
.wsa4{word-spacing:1.222079pt;}
.ws24{word-spacing:1.275213pt;}
.wsa5{word-spacing:1.328347pt;}
.ws72{word-spacing:1.381481pt;}
.ws43{word-spacing:1.434614pt;}
.wsd8{word-spacing:1.434624pt;}
.ws9c{word-spacing:1.487748pt;}
.wsab{word-spacing:1.540882pt;}
.wsb9{word-spacing:1.578086pt;}
.ws87{word-spacing:1.594016pt;}
.ws86{word-spacing:1.647150pt;}
.ws51{word-spacing:1.753418pt;}
.wsaa{word-spacing:1.806551pt;}
.wsc5{word-spacing:1.859685pt;}
.ws37{word-spacing:1.965953pt;}
.ws46{word-spacing:2.019087pt;}
.wsc2{word-spacing:2.045029pt;}
.ws45{word-spacing:2.072221pt;}
.ws2d{word-spacing:2.125355pt;}
.ws59{word-spacing:2.178489pt;}
.wscb{word-spacing:2.199757pt;}
.ws6{word-spacing:2.231335pt;}
.ws35{word-spacing:2.231622pt;}
.ws67{word-spacing:2.284756pt;}
.wsf{word-spacing:2.337890pt;}
.ws71{word-spacing:2.391024pt;}
.wsba{word-spacing:2.486682pt;}
.ws18{word-spacing:2.497292pt;}
.ws8{word-spacing:2.550432pt;}
.ws33{word-spacing:2.603559pt;}
.wsb6{word-spacing:2.631784pt;}
.ws54{word-spacing:2.656693pt;}
.wsd3{word-spacing:2.677965pt;}
.ws47{word-spacing:2.709827pt;}
.ws2e{word-spacing:2.762961pt;}
.wsb2{word-spacing:2.773606pt;}
.wsac{word-spacing:2.816095pt;}
.wse8{word-spacing:2.861918pt;}
.wse0{word-spacing:2.862276pt;}
.ws40{word-spacing:2.869229pt;}
.wsbe{word-spacing:2.869248pt;}
.wsbd{word-spacing:2.917069pt;}
.wsad{word-spacing:2.922363pt;}
.ws34{word-spacing:2.975497pt;}
.ws78{word-spacing:3.012710pt;}
.ws76{word-spacing:3.028630pt;}
.wsbb{word-spacing:3.060531pt;}
.ws79{word-spacing:3.081764pt;}
.wsea{word-spacing:3.108352pt;}
.wsa7{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.179589pt;}
.ws15{word-spacing:3.241166pt;}
.ws5a{word-spacing:3.294300pt;}
.wsb1{word-spacing:3.347434pt;}
.ws8a{word-spacing:3.395277pt;}
.ws10{word-spacing:3.400567pt;}
.ws42{word-spacing:3.453701pt;}
.wsb3{word-spacing:3.538739pt;}
.ws4a{word-spacing:3.559969pt;}
.ws75{word-spacing:3.666237pt;}
.ws66{word-spacing:3.719371pt;}
.ws58{word-spacing:3.772505pt;}
.ws62{word-spacing:3.825638pt;}
.ws20{word-spacing:3.825664pt;}
.ws9e{word-spacing:3.931906pt;}
.ws69{word-spacing:3.985040pt;}
.ws89{word-spacing:4.038174pt;}
.ws56{word-spacing:4.091308pt;}
.wsd1{word-spacing:4.112589pt;}
.ws92{word-spacing:4.144442pt;}
.wscf{word-spacing:4.146686pt;}
.ws2f{word-spacing:4.250709pt;}
.ws38{word-spacing:4.516379pt;}
.ws5b{word-spacing:4.569513pt;}
.ws57{word-spacing:4.675780pt;}
.wse{word-spacing:4.728914pt;}
.ws90{word-spacing:4.782048pt;}
.ws12{word-spacing:4.888316pt;}
.ws88{word-spacing:5.047717pt;}
.ws70{word-spacing:5.100851pt;}
.ws65{word-spacing:5.153985pt;}
.ws61{word-spacing:5.207119pt;}
.wsaf{word-spacing:5.313387pt;}
.ws55{word-spacing:5.472788pt;}
.ws9b{word-spacing:5.685324pt;}
.ws81{word-spacing:5.738458pt;}
.ws2c{word-spacing:5.791591pt;}
.ws74{word-spacing:6.057261pt;}
.ws9a{word-spacing:6.110395pt;}
.ws99{word-spacing:6.163529pt;}
.ws4e{word-spacing:6.216662pt;}
.ws50{word-spacing:6.269796pt;}
.wsb8{word-spacing:6.312346pt;}
.wse9{word-spacing:6.407987pt;}
.ws2b{word-spacing:6.641733pt;}
.ws60{word-spacing:6.801135pt;}
.ws6c{word-spacing:6.854269pt;}
.ws6d{word-spacing:6.907403pt;}
.wsa9{word-spacing:6.960537pt;}
.ws3b{word-spacing:7.066804pt;}
.ws26{word-spacing:7.119938pt;}
.ws63{word-spacing:7.173072pt;}
.ws95{word-spacing:7.279340pt;}
.wsae{word-spacing:7.385607pt;}
.wsc4{word-spacing:8.554553pt;}
.wsc7{word-spacing:8.660820pt;}
.wsc8{word-spacing:8.873356pt;}
.ws25{word-spacing:8.926490pt;}
.ws6b{word-spacing:9.139025pt;}
.ws3{word-spacing:9.257370pt;}
.ws9{word-spacing:9.510962pt;}
.wsc6{word-spacing:10.414238pt;}
.wsa{word-spacing:10.467372pt;}
.ws1d{word-spacing:10.584393pt;}
.ws80{word-spacing:10.945577pt;}
.wse2{word-spacing:11.724643pt;}
.wse7{word-spacing:11.763917pt;}
.wsde{word-spacing:11.811738pt;}
.wsce{word-spacing:11.870905pt;}
.wsc9{word-spacing:11.900407pt;}
.wsd9{word-spacing:11.907379pt;}
.wse4{word-spacing:11.961579pt;}
.wscd{word-spacing:11.983933pt;}
.wse1{word-spacing:12.130542pt;}
.wsda{word-spacing:12.144418pt;}
.ws2a{word-spacing:13.017797pt;}
.ws3a{word-spacing:13.230333pt;}
.wsd4{word-spacing:14.585344pt;}
.wscc{word-spacing:14.765764pt;}
.wsd5{word-spacing:14.769476pt;}
.wsdc{word-spacing:14.776627pt;}
.wsdb{word-spacing:14.967910pt;}
.wsd2{word-spacing:15.063552pt;}
.wsd0{word-spacing:16.019968pt;}
.wsd7{word-spacing:18.458829pt;}
.ws2{word-spacing:25.293814pt;}
.ws8f{word-spacing:96.172299pt;}
.ws8e{word-spacing:109.455765pt;}
.ws8c{word-spacing:163.919489pt;}
.ws8d{word-spacing:206.714674pt;}
.ws7d{word-spacing:258.441867pt;}
.ws7f{word-spacing:305.948877pt;}
.ws6a{word-spacing:320.461781pt;}
.ws7c{word-spacing:326.390074pt;}
.ws83{word-spacing:552.592213pt;}
._4{margin-left:-8.799027pt;}
._12{margin-left:-6.524843pt;}
._7{margin-left:-5.632190pt;}
._6{margin-left:-4.718299pt;}
._1{margin-left:-3.421811pt;}
._1e{margin-left:-2.337896pt;}
._2{margin-left:-1.338970pt;}
._41{width:1.055783pt;}
._5{width:2.663508pt;}
._1a{width:3.985040pt;}
._0{width:11.530016pt;}
._15{width:12.656483pt;}
._17{width:13.963592pt;}
._2a{width:14.877489pt;}
._16{width:15.844515pt;}
._b{width:16.790302pt;}
._c{width:18.023004pt;}
._9{width:19.266326pt;}
._e{width:20.669074pt;}
._18{width:22.103689pt;}
._3{width:23.061099pt;}
._f{width:24.771005pt;}
._8{width:26.460666pt;}
._d{width:28.001548pt;}
._1b{width:28.904823pt;}
._2b{width:30.668864pt;}
._a{width:31.625274pt;}
._19{width:33.357445pt;}
._2c{width:35.238382pt;}
._14{width:36.460455pt;}
._13{width:38.256384pt;}
._52{width:54.993920pt;}
._34{width:65.460924pt;}
._3f{width:81.548480pt;}
._1f{width:82.591490pt;}
._51{width:85.811195pt;}
._40{width:99.211552pt;}
._4e{width:106.416075pt;}
._1d{width:112.782264pt;}
._49{width:117.168506pt;}
._20{width:130.709640pt;}
._2d{width:134.428683pt;}
._4d{width:146.649840pt;}
._38{width:149.430650pt;}
._32{width:151.453071pt;}
._42{width:153.225977pt;}
._48{width:157.404162pt;}
._4a{width:171.729088pt;}
._4c{width:174.492056pt;}
._3c{width:180.248802pt;}
._3a{width:183.568813pt;}
._46{width:185.203870pt;}
._2e{width:186.205443pt;}
._33{width:188.507690pt;}
._4b{width:193.662803pt;}
._47{width:196.128221pt;}
._3e{width:199.517669pt;}
._45{width:204.417125pt;}
._43{width:208.889099pt;}
._37{width:214.342018pt;}
._21{width:216.024174pt;}
._29{width:223.927930pt;}
._31{width:231.079186pt;}
._30{width:233.895281pt;}
._50{width:259.310409pt;}
._25{width:261.164237pt;}
._39{width:262.219875pt;}
._2f{width:271.726594pt;}
._44{width:287.348672pt;}
._3d{width:292.395668pt;}
._3b{width:294.255354pt;}
._35{width:295.955637pt;}
._1c{width:331.641174pt;}
._23{width:338.442326pt;}
._28{width:342.948090pt;}
._26{width:349.111634pt;}
._24{width:350.301835pt;}
._27{width:360.333534pt;}
._22{width:366.199528pt;}
._4f{width:428.951981pt;}
._10{width:1688.877333pt;}
._36{width:2259.320000pt;}
._11{width:2280.573333pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:44.292800pt;}
.fs8{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y191{bottom:7.505737pt;}
.y190{bottom:20.225146pt;}
.y41{bottom:40.818667pt;}
.y19{bottom:89.120000pt;}
.y165{bottom:89.229333pt;}
.y10c{bottom:90.242667pt;}
.y201{bottom:90.588000pt;}
.y13c{bottom:91.198667pt;}
.y11a{bottom:91.545333pt;}
.y75{bottom:99.488000pt;}
.yd6{bottom:100.710667pt;}
.y18e{bottom:101.001333pt;}
.y1ca{bottom:104.708000pt;}
.y18{bottom:105.020000pt;}
.ycc{bottom:105.213333pt;}
.y22f{bottom:107.066667pt;}
.y164{bottom:107.798667pt;}
.y200{bottom:107.920000pt;}
.y10b{bottom:108.813333pt;}
.y13b{bottom:109.768000pt;}
.y119{bottom:110.116000pt;}
.y74{bottom:118.058667pt;}
.ya3{bottom:119.281333pt;}
.y18d{bottom:119.572000pt;}
.ye8{bottom:119.798667pt;}
.y17{bottom:120.920000pt;}
.y1c9{bottom:123.278667pt;}
.ycb{bottom:123.782667pt;}
.y22e{bottom:124.089333pt;}
.y1ff{bottom:125.252000pt;}
.y163{bottom:126.369333pt;}
.y10a{bottom:127.384000pt;}
.y13a{bottom:128.338667pt;}
.y118{bottom:128.686667pt;}
.y1a5{bottom:133.933333pt;}
.y73{bottom:136.628000pt;}
.y16{bottom:136.820000pt;}
.ya2{bottom:137.852000pt;}
.y18c{bottom:138.142667pt;}
.ye7{bottom:138.368000pt;}
.y22d{bottom:141.112000pt;}
.y1c8{bottom:141.848000pt;}
.yca{bottom:142.353333pt;}
.y1fe{bottom:142.584000pt;}
.y162{bottom:144.940000pt;}
.y109{bottom:145.954667pt;}
.y139{bottom:146.909333pt;}
.y117{bottom:147.256000pt;}
.y1a4{bottom:152.504000pt;}
.y15{bottom:152.721333pt;}
.y72{bottom:155.198667pt;}
.ya1{bottom:156.421333pt;}
.y18b{bottom:156.712000pt;}
.ye6{bottom:156.938667pt;}
.y22c{bottom:158.134667pt;}
.yd5{bottom:160.406667pt;}
.yc9{bottom:160.924000pt;}
.y161{bottom:163.509333pt;}
.y1c7{bottom:164.404000pt;}
.y108{bottom:164.524000pt;}
.y138{bottom:165.480000pt;}
.y116{bottom:165.826667pt;}
.y1fd{bottom:167.886667pt;}
.y14{bottom:168.621333pt;}
.y1a3{bottom:171.073333pt;}
.y71{bottom:173.769333pt;}
.ya0{bottom:174.992000pt;}
.y22b{bottom:175.158667pt;}
.y18a{bottom:175.282667pt;}
.ye5{bottom:175.509333pt;}
.y40{bottom:177.525333pt;}
.yc8{bottom:179.493333pt;}
.y160{bottom:182.080000pt;}
.yd4{bottom:182.124000pt;}
.y107{bottom:183.094667pt;}
.y137{bottom:184.049333pt;}
.y115{bottom:184.397333pt;}
.y13{bottom:184.521333pt;}
.y1fc{bottom:185.218667pt;}
.y1a2{bottom:189.644000pt;}
.y22a{bottom:192.181333pt;}
.y70{bottom:192.338667pt;}
.y9f{bottom:193.562667pt;}
.y189{bottom:193.853333pt;}
.ye4{bottom:194.078667pt;}
.y1c6{bottom:195.818667pt;}
.y3f{bottom:196.096000pt;}
.yc7{bottom:198.064000pt;}
.y12{bottom:200.422667pt;}
.y15f{bottom:200.650667pt;}
.y106{bottom:201.665333pt;}
.y1fb{bottom:202.550667pt;}
.y114{bottom:202.968000pt;}
.y136{bottom:206.605333pt;}
.y1a1{bottom:208.214667pt;}
.y229{bottom:209.204000pt;}
.y6f{bottom:210.909333pt;}
.y9e{bottom:212.132000pt;}
.y188{bottom:212.422667pt;}
.ye3{bottom:212.649333pt;}
.y1c5{bottom:214.389333pt;}
.yc6{bottom:216.634667pt;}
.y15e{bottom:219.220000pt;}
.y1fa{bottom:219.884000pt;}
.y105{bottom:220.234667pt;}
.y113{bottom:221.537333pt;}
.y135{bottom:222.080000pt;}
.y11{bottom:224.293333pt;}
.y228{bottom:226.226667pt;}
.y1a0{bottom:226.784000pt;}
.y6e{bottom:229.480000pt;}
.y3e{bottom:230.606667pt;}
.y9d{bottom:230.702667pt;}
.y187{bottom:230.993333pt;}
.ye2{bottom:231.220000pt;}
.y1c4{bottom:232.960000pt;}
.yc5{bottom:235.205333pt;}
.y1f9{bottom:237.216000pt;}
.y15d{bottom:237.790667pt;}
.y104{bottom:238.805333pt;}
.y112{bottom:240.108000pt;}
.y10{bottom:240.193333pt;}
.y227{bottom:243.249333pt;}
.y19f{bottom:245.354667pt;}
.y6d{bottom:248.049333pt;}
.y3d{bottom:249.177333pt;}
.y9c{bottom:249.273333pt;}
.y186{bottom:249.564000pt;}
.ye1{bottom:249.789333pt;}
.y1c3{bottom:251.529333pt;}
.yc4{bottom:253.774667pt;}
.y1f8{bottom:254.548000pt;}
.yf{bottom:256.093333pt;}
.y15c{bottom:256.361333pt;}
.y111{bottom:258.678667pt;}
.y226{bottom:260.272000pt;}
.y103{bottom:261.360000pt;}
.y19e{bottom:263.925333pt;}
.y134{bottom:264.284000pt;}
.y6c{bottom:266.620000pt;}
.y3c{bottom:267.746667pt;}
.y9b{bottom:267.842667pt;}
.y185{bottom:268.133333pt;}
.ye0{bottom:268.360000pt;}
.y1c2{bottom:270.100000pt;}
.ye{bottom:271.994667pt;}
.y131{bottom:272.253333pt;}
.yc3{bottom:272.345333pt;}
.y15b{bottom:274.930667pt;}
.y130{bottom:280.224000pt;}
.y225{bottom:281.280000pt;}
.y19d{bottom:282.496000pt;}
.y6b{bottom:285.190667pt;}
.y3b{bottom:286.317333pt;}
.y9a{bottom:286.413333pt;}
.y184{bottom:286.704000pt;}
.ydf{bottom:286.930667pt;}
.y1f7{bottom:287.820000pt;}
.yd{bottom:287.894667pt;}
.y132{bottom:288.194667pt;}
.y1c1{bottom:288.670667pt;}
.y110{bottom:290.346667pt;}
.yc2{bottom:290.916000pt;}
.y102{bottom:292.776000pt;}
.y15a{bottom:293.501333pt;}
.y255{bottom:294.256000pt;}
.y133{bottom:296.164000pt;}
.y19c{bottom:301.065333pt;}
.y6a{bottom:303.760000pt;}
.yc{bottom:303.794667pt;}
.y3a{bottom:304.888000pt;}
.y183{bottom:305.274667pt;}
.yde{bottom:305.500000pt;}
.y1f6{bottom:306.390667pt;}
.y1c0{bottom:307.240000pt;}
.y10f{bottom:307.442667pt;}
.y99{bottom:308.969333pt;}
.yc1{bottom:309.485333pt;}
.y254{bottom:311.278667pt;}
.y101{bottom:311.346667pt;}
.y159{bottom:312.072000pt;}
.y12f{bottom:312.104000pt;}
.y224{bottom:315.789333pt;}
.y19b{bottom:319.636000pt;}
.yb{bottom:319.696000pt;}
.y69{bottom:322.330667pt;}
.y39{bottom:323.457333pt;}
.y182{bottom:323.844000pt;}
.ydd{bottom:324.070667pt;}
.y1f5{bottom:324.961333pt;}
.y1bf{bottom:325.810667pt;}
.y12d{bottom:328.045333pt;}
.yc0{bottom:328.056000pt;}
.y253{bottom:328.301333pt;}
.y100{bottom:329.916000pt;}
.y223{bottom:334.360000pt;}
.ya{bottom:335.596000pt;}
.y19a{bottom:338.206667pt;}
.y98{bottom:340.384000pt;}
.y68{bottom:340.901333pt;}
.y38{bottom:342.028000pt;}
.y181{bottom:342.414667pt;}
.ydc{bottom:342.641333pt;}
.y1f4{bottom:343.530667pt;}
.y12e{bottom:343.985333pt;}
.y1be{bottom:344.381333pt;}
.ybf{bottom:346.626667pt;}
.yff{bottom:348.486667pt;}
.y9{bottom:351.496000pt;}
.y222{bottom:352.930667pt;}
.y158{bottom:357.370667pt;}
.y97{bottom:358.954667pt;}
.y67{bottom:359.472000pt;}
.y12c{bottom:359.925333pt;}
.y37{bottom:360.598667pt;}
.y199{bottom:360.761333pt;}
.y180{bottom:360.985333pt;}
.ydb{bottom:361.212000pt;}
.y1f3{bottom:362.101333pt;}
.y1bd{bottom:362.952000pt;}
.ybe{bottom:365.196000pt;}
.y252{bottom:366.552000pt;}
.yfe{bottom:367.057333pt;}
.y8{bottom:367.397333pt;}
.y1d7{bottom:369.181333pt;}
.y221{bottom:371.501333pt;}
.y157{bottom:373.310667pt;}
.y12a{bottom:375.865333pt;}
.y96{bottom:377.525333pt;}
.y66{bottom:378.041333pt;}
.y36{bottom:379.168000pt;}
.y17f{bottom:379.556000pt;}
.yda{bottom:379.781333pt;}
.y1f2{bottom:380.672000pt;}
.y1bc{bottom:381.521333pt;}
.y251{bottom:383.574667pt;}
.ybd{bottom:383.766667pt;}
.yfd{bottom:385.628000pt;}
.y7{bottom:388.610667pt;}
.y156{bottom:389.250667pt;}
.y220{bottom:390.070667pt;}
.y12b{bottom:391.805333pt;}
.y198{bottom:392.177333pt;}
.y95{bottom:396.094667pt;}
.y65{bottom:396.612000pt;}
.y35{bottom:397.738667pt;}
.y17e{bottom:398.125333pt;}
.yd9{bottom:398.352000pt;}
.y1f1{bottom:399.241333pt;}
.y1bb{bottom:400.092000pt;}
.y1d6{bottom:400.597333pt;}
.ybc{bottom:402.337333pt;}
.yfc{bottom:404.197333pt;}
.y6{bottom:404.510667pt;}
.y129{bottom:407.745333pt;}
.y21f{bottom:408.641333pt;}
.y197{bottom:410.746667pt;}
.y154{bottom:411.593333pt;}
.y94{bottom:414.665333pt;}
.y64{bottom:415.182667pt;}
.y34{bottom:416.309333pt;}
.yd8{bottom:416.922667pt;}
.y250{bottom:417.620000pt;}
.y1f0{bottom:417.812000pt;}
.y1ba{bottom:418.662667pt;}
.y1d5{bottom:419.166667pt;}
.y153{bottom:419.564000pt;}
.y5{bottom:420.412000pt;}
.ybb{bottom:420.906667pt;}
.yfb{bottom:422.768000pt;}
.y126{bottom:423.686667pt;}
.y21e{bottom:427.212000pt;}
.y155{bottom:427.533333pt;}
.y196{bottom:429.317333pt;}
.y125{bottom:431.656000pt;}
.y93{bottom:433.236000pt;}
.y63{bottom:433.752000pt;}
.y24f{bottom:434.642667pt;}
.y33{bottom:434.878667pt;}
.yd7{bottom:435.492000pt;}
.y17d{bottom:435.633333pt;}
.y4{bottom:436.312000pt;}
.y1ef{bottom:436.382667pt;}
.y1b9{bottom:437.232000pt;}
.y1d4{bottom:437.737333pt;}
.yba{bottom:439.477333pt;}
.y128{bottom:439.626667pt;}
.yfa{bottom:441.338667pt;}
.y21d{bottom:445.781333pt;}
.y195{bottom:447.888000pt;}
.y17c{bottom:448.252000pt;}
.y24e{bottom:451.665333pt;}
.y92{bottom:451.805333pt;}
.y62{bottom:452.322667pt;}
.y32{bottom:453.449333pt;}
.y1ee{bottom:454.953333pt;}
.y127{bottom:455.566667pt;}
.y1b8{bottom:455.802667pt;}
.y1d3{bottom:456.308000pt;}
.y3{bottom:457.525333pt;}
.yb9{bottom:458.048000pt;}
.y152{bottom:459.226667pt;}
.yf9{bottom:459.908000pt;}
.y21c{bottom:464.352000pt;}
.y194{bottom:466.457333pt;}
.y17b{bottom:467.061333pt;}
.y24d{bottom:468.688000pt;}
.y91{bottom:470.376000pt;}
.y61{bottom:470.893333pt;}
.y124{bottom:471.506667pt;}
.y31{bottom:472.020000pt;}
.y2{bottom:473.426667pt;}
.y1ed{bottom:473.522667pt;}
.y1b7{bottom:474.373333pt;}
.y1d2{bottom:474.877333pt;}
.y151{bottom:476.322667pt;}
.yb8{bottom:476.617333pt;}
.yf8{bottom:478.478667pt;}
.y17a{bottom:479.680000pt;}
.y21b{bottom:482.922667pt;}
.y24c{bottom:485.710667pt;}
.y122{bottom:487.446667pt;}
.y90{bottom:488.946667pt;}
.y193{bottom:489.013333pt;}
.y1{bottom:489.326667pt;}
.y60{bottom:489.462667pt;}
.y30{bottom:490.590667pt;}
.y1ec{bottom:492.093333pt;}
.y179{bottom:492.300000pt;}
.y1b6{bottom:492.942667pt;}
.y1d1{bottom:493.448000pt;}
.yb7{bottom:495.188000pt;}
.yf7{bottom:497.049333pt;}
.y24b{bottom:502.733333pt;}
.y123{bottom:503.386667pt;}
.y21a{bottom:505.477333pt;}
.y8f{bottom:507.516000pt;}
.y5f{bottom:508.033333pt;}
.y2f{bottom:509.160000pt;}
.y150{bottom:509.304000pt;}
.y1eb{bottom:510.664000pt;}
.y178{bottom:511.505333pt;}
.y1b5{bottom:511.513333pt;}
.y1d0{bottom:512.018667pt;}
.yb6{bottom:513.758667pt;}
.yf6{bottom:515.618667pt;}
.y24a{bottom:519.756000pt;}
.y192{bottom:520.682667pt;}
.y120{bottom:525.729333pt;}
.y8e{bottom:526.086667pt;}
.y5e{bottom:526.604000pt;}
.y2e{bottom:527.730667pt;}
.y14f{bottom:527.873333pt;}
.y219{bottom:528.033333pt;}
.y1ea{bottom:529.233333pt;}
.y1b4{bottom:530.084000pt;}
.y1cf{bottom:530.589333pt;}
.yb5{bottom:532.329333pt;}
.y11f{bottom:533.700000pt;}
.yf5{bottom:534.189333pt;}
.y249{bottom:536.778667pt;}
.y177{bottom:541.057333pt;}
.y121{bottom:541.669333pt;}
.y18f{bottom:543.276000pt;}
.y8d{bottom:544.657333pt;}
.y5d{bottom:545.173333pt;}
.y2d{bottom:546.301333pt;}
.y14e{bottom:546.444000pt;}
.y218{bottom:546.602667pt;}
.y1e9{bottom:547.804000pt;}
.y1ce{bottom:549.158667pt;}
.yb4{bottom:550.898667pt;}
.y1b3{bottom:552.638667pt;}
.yf4{bottom:552.760000pt;}
.y248{bottom:553.801333pt;}
.y176{bottom:558.153333pt;}
.y8c{bottom:563.228000pt;}
.y5c{bottom:563.744000pt;}
.y2c{bottom:564.870667pt;}
.y14d{bottom:565.014667pt;}
.y217{bottom:565.173333pt;}
.y1e8{bottom:566.374667pt;}
.y1cd{bottom:567.729333pt;}
.yb3{bottom:569.469333pt;}
.y247{bottom:570.824000pt;}
.yf3{bottom:571.329333pt;}
.y11e{bottom:573.362667pt;}
.y8b{bottom:581.797333pt;}
.y5b{bottom:582.314667pt;}
.y2b{bottom:583.441333pt;}
.y14c{bottom:583.585333pt;}
.y216{bottom:583.744000pt;}
.y1b2{bottom:584.054667pt;}
.y1e7{bottom:584.944000pt;}
.y1cc{bottom:586.300000pt;}
.y246{bottom:587.846667pt;}
.yb2{bottom:588.040000pt;}
.yf2{bottom:589.900000pt;}
.y11d{bottom:590.458667pt;}
.y175{bottom:591.134667pt;}
.y5a{bottom:598.458667pt;}
.y8a{bottom:600.368000pt;}
.y59{bottom:600.885333pt;}
.y2a{bottom:602.012000pt;}
.y14b{bottom:602.154667pt;}
.y215{bottom:602.313333pt;}
.y1b1{bottom:602.625333pt;}
.y1e6{bottom:603.514667pt;}
.y1cb{bottom:604.869333pt;}
.yb1{bottom:606.609333pt;}
.yf1{bottom:608.470667pt;}
.y174{bottom:609.705333pt;}
.y89{bottom:618.938667pt;}
.y58{bottom:619.454667pt;}
.y29{bottom:620.581333pt;}
.y14a{bottom:620.725333pt;}
.y214{bottom:620.884000pt;}
.y1b0{bottom:621.194667pt;}
.y245{bottom:621.892000pt;}
.y1e5{bottom:622.085333pt;}
.y11c{bottom:623.440000pt;}
.yd3{bottom:625.180000pt;}
.yf0{bottom:627.040000pt;}
.y173{bottom:628.274667pt;}
.yb0{bottom:629.165333pt;}
.y88{bottom:637.508000pt;}
.y57{bottom:638.025333pt;}
.y244{bottom:638.914667pt;}
.y28{bottom:639.152000pt;}
.y213{bottom:639.454667pt;}
.y1af{bottom:639.765333pt;}
.y1e4{bottom:640.654667pt;}
.y11b{bottom:642.010667pt;}
.y149{bottom:643.280000pt;}
.yd2{bottom:643.750667pt;}
.yef{bottom:645.610667pt;}
.y172{bottom:646.845333pt;}
.y243{bottom:655.937333pt;}
.y87{bottom:656.078667pt;}
.y56{bottom:656.596000pt;}
.y27{bottom:657.722667pt;}
.y212{bottom:658.024000pt;}
.y1ae{bottom:658.336000pt;}
.y148{bottom:658.756000pt;}
.y1e3{bottom:659.225333pt;}
.yaf{bottom:660.580000pt;}
.yd1{bottom:662.320000pt;}
.y171{bottom:665.416000pt;}
.y242{bottom:672.961333pt;}
.y86{bottom:674.649333pt;}
.y55{bottom:675.165333pt;}
.y26{bottom:676.292000pt;}
.y211{bottom:676.594667pt;}
.y1ad{bottom:676.905333pt;}
.y1e2{bottom:677.796000pt;}
.y10e{bottom:678.633333pt;}
.yae{bottom:679.150667pt;}
.yd0{bottom:680.890667pt;}
.y170{bottom:683.985333pt;}
.yee{bottom:689.913333pt;}
.y241{bottom:689.984000pt;}
.y147{bottom:692.397333pt;}
.y85{bottom:693.218667pt;}
.y54{bottom:693.736000pt;}
.y25{bottom:694.862667pt;}
.y1ac{bottom:695.476000pt;}
.y1e1{bottom:696.365333pt;}
.yad{bottom:697.721333pt;}
.y210{bottom:699.150667pt;}
.ycf{bottom:699.461333pt;}
.y10d{bottom:700.350667pt;}
.yed{bottom:702.533333pt;}
.y16f{bottom:702.556000pt;}
.y146{bottom:705.017333pt;}
.y240{bottom:707.006667pt;}
.y84{bottom:711.789333pt;}
.y53{bottom:712.306667pt;}
.y1ab{bottom:714.046667pt;}
.y1e0{bottom:714.936000pt;}
.yec{bottom:715.152000pt;}
.yac{bottom:716.290667pt;}
.y145{bottom:717.636000pt;}
.yce{bottom:718.030667pt;}
.y16e{bottom:721.126667pt;}
.y24{bottom:721.402667pt;}
.y20f{bottom:721.705333pt;}
.y23f{bottom:724.029333pt;}
.y144{bottom:730.256000pt;}
.y83{bottom:730.360000pt;}
.y52{bottom:730.876000pt;}
.y1aa{bottom:732.616000pt;}
.y1df{bottom:733.506667pt;}
.yeb{bottom:734.173333pt;}
.yab{bottom:734.861333pt;}
.y16d{bottom:739.696000pt;}
.yea{bottom:740.482667pt;}
.ycd{bottom:740.586667pt;}
.y23e{bottom:741.052000pt;}
.y82{bottom:748.929333pt;}
.y51{bottom:749.446667pt;}
.y143{bottom:750.061333pt;}
.y1a9{bottom:751.186667pt;}
.y1de{bottom:752.077333pt;}
.yaa{bottom:753.432000pt;}
.y20e{bottom:756.216000pt;}
.y23{bottom:756.976000pt;}
.y23d{bottom:758.074667pt;}
.y16c{bottom:758.266667pt;}
.y142{bottom:766.001333pt;}
.y81{bottom:767.500000pt;}
.y50{bottom:768.017333pt;}
.y1a8{bottom:769.757333pt;}
.y1dd{bottom:770.646667pt;}
.ya9{bottom:772.002667pt;}
.y23c{bottom:775.097333pt;}
.y22{bottom:775.180000pt;}
.ye9{bottom:776.161333pt;}
.y16b{bottom:776.837333pt;}
.y20d{bottom:781.518667pt;}
.y141{bottom:781.941333pt;}
.y21{bottom:785.669333pt;}
.y80{bottom:786.070667pt;}
.y4f{bottom:786.586667pt;}
.y1a7{bottom:788.326667pt;}
.y1dc{bottom:789.217333pt;}
.ya8{bottom:790.572000pt;}
.y23b{bottom:792.120000pt;}
.y16a{bottom:795.408000pt;}
.y20c{bottom:798.850667pt;}
.y20{bottom:803.873333pt;}
.y140{bottom:804.284000pt;}
.y7f{bottom:804.640000pt;}
.y4e{bottom:805.157333pt;}
.y1db{bottom:807.788000pt;}
.ya7{bottom:809.142667pt;}
.y1a6{bottom:810.882667pt;}
.y13f{bottom:812.253333pt;}
.y169{bottom:813.977333pt;}
.y4d{bottom:823.728000pt;}
.y20b{bottom:824.153333pt;}
.y23a{bottom:826.165333pt;}
.y1da{bottom:826.357333pt;}
.y7e{bottom:827.196000pt;}
.ya6{bottom:827.713333pt;}
.y168{bottom:832.548000pt;}
.y20a{bottom:841.485333pt;}
.y4c{bottom:842.297333pt;}
.y239{bottom:843.188000pt;}
.y1f{bottom:843.585333pt;}
.y1d9{bottom:844.928000pt;}
.ya5{bottom:846.282667pt;}
.y7d{bottom:848.913333pt;}
.y13e{bottom:851.916000pt;}
.y167{bottom:855.102667pt;}
.y209{bottom:858.817333pt;}
.y238{bottom:860.210667pt;}
.y4b{bottom:860.868000pt;}
.y1e{bottom:862.156000pt;}
.ya4{bottom:864.853333pt;}
.y1d8{bottom:867.482667pt;}
.y13d{bottom:869.012000pt;}
.y166{bottom:870.578667pt;}
.y208{bottom:876.149333pt;}
.y237{bottom:877.233333pt;}
.y4a{bottom:879.438667pt;}
.y7c{bottom:883.424000pt;}
.y207{bottom:893.481333pt;}
.y236{bottom:894.256000pt;}
.y1d{bottom:896.665333pt;}
.y49{bottom:898.009333pt;}
.y7b{bottom:901.993333pt;}
.y235{bottom:911.278667pt;}
.y48{bottom:916.578667pt;}
.y206{bottom:918.784000pt;}
.y7a{bottom:920.564000pt;}
.y1c{bottom:924.521333pt;}
.y234{bottom:928.301333pt;}
.y47{bottom:935.149333pt;}
.y205{bottom:936.116000pt;}
.y79{bottom:939.134667pt;}
.y233{bottom:945.324000pt;}
.y1b{bottom:952.377333pt;}
.y204{bottom:953.448000pt;}
.y46{bottom:953.720000pt;}
.y78{bottom:957.704000pt;}
.y232{bottom:962.346667pt;}
.y45{bottom:972.289333pt;}
.y77{bottom:976.274667pt;}
.y203{bottom:978.750667pt;}
.y231{bottom:979.369333pt;}
.y1a{bottom:980.232000pt;}
.y44{bottom:990.860000pt;}
.y76{bottom:994.845333pt;}
.y202{bottom:996.082667pt;}
.y230{bottom:996.392000pt;}
.y43{bottom:1013.414667pt;}
.y42{bottom:1066.841333pt;}
.h14{height:20.573485pt;}
.h6{height:28.947524pt;}
.hf{height:30.732706pt;}
.h2{height:33.771789pt;}
.h1d{height:34.921875pt;}
.hb{height:36.666735pt;}
.hc{height:36.873667pt;}
.h18{height:37.193707pt;}
.h1a{height:37.742959pt;}
.h8{height:38.415786pt;}
.h7{height:38.596538pt;}
.h1c{height:38.853594pt;}
.h3{height:38.947124pt;}
.hd{height:43.421286pt;}
.ha{height:46.099251pt;}
.h9{height:48.245551pt;}
.h5{height:48.481423pt;}
.h19{height:55.952068pt;}
.h17{height:55.957402pt;}
.he{height:55.975372pt;}
.h4{height:69.148877pt;}
.h10{height:70.293119pt;}
.h11{height:70.298452pt;}
.h16{height:79.500090pt;}
.h12{height:80.128218pt;}
.h15{height:102.175786pt;}
.h13{height:112.005551pt;}
.h1b{height:155.461333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:671.186133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x52{left:55.592000pt;}
.x4c{left:57.516000pt;}
.x5d{left:61.386667pt;}
.x66{left:62.410667pt;}
.x72{left:65.194667pt;}
.x4b{left:67.222667pt;}
.x73{left:70.363469pt;}
.x70{left:72.612000pt;}
.x5b{left:74.105333pt;}
.x65{left:75.129333pt;}
.x8e{left:76.309333pt;}
.x71{left:93.913333pt;}
.x4a{left:95.941333pt;}
.x58{left:110.004000pt;}
.x64{left:111.026667pt;}
.x49{left:112.274667pt;}
.x54{left:156.294667pt;}
.x1c{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x4f{left:225.777333pt;}
.x51{left:236.846667pt;}
.x3{left:239.924000pt;}
.x6{left:247.233333pt;}
.x5c{left:249.217333pt;}
.x5{left:250.204000pt;}
.x8d{left:252.608000pt;}
.x7{left:253.876000pt;}
.x61{left:259.138667pt;}
.x2e{left:263.161333pt;}
.x2f{left:276.444000pt;}
.x50{left:279.102667pt;}
.x17{left:282.608000pt;}
.x7a{left:283.852000pt;}
.x20{left:285.030667pt;}
.x56{left:286.764000pt;}
.x18{left:289.250667pt;}
.x21{left:291.673333pt;}
.xe{left:297.982667pt;}
.xf{left:304.624000pt;}
.x4d{left:306.556000pt;}
.x3b{left:312.685333pt;}
.x26{left:315.709333pt;}
.x27{left:322.352000pt;}
.x3c{left:325.968000pt;}
.x4e{left:331.897333pt;}
.x75{left:338.881333pt;}
.x10{left:341.876000pt;}
.x76{left:345.522667pt;}
.x62{left:348.605333pt;}
.x11{left:350.898667pt;}
.x77{left:355.857333pt;}
.x1f{left:362.294667pt;}
.x6f{left:365.750667pt;}
.x7b{left:368.977333pt;}
.x7c{left:372.248000pt;}
.x7d{left:385.530667pt;}
.x1d{left:397.452000pt;}
.x24{left:400.400000pt;}
.x89{left:405.898667pt;}
.x25{left:407.041333pt;}
.x1e{left:410.736000pt;}
.x59{left:414.041333pt;}
.x55{left:416.174667pt;}
.x42{left:417.406667pt;}
.x8a{left:419.182667pt;}
.x8b{left:426.028000pt;}
.x43{left:430.690667pt;}
.x33{left:433.505333pt;}
.x32{left:441.264000pt;}
.xa{left:445.776000pt;}
.x34{left:446.788000pt;}
.x16{left:448.405333pt;}
.xb{left:452.418667pt;}
.x8{left:454.462667pt;}
.x6d{left:458.054667pt;}
.x9{left:461.105333pt;}
.x8c{left:466.422667pt;}
.x35{left:470.090667pt;}
.x44{left:471.473333pt;}
.x3d{left:475.558667pt;}
.x2c{left:481.404000pt;}
.x36{left:483.374667pt;}
.x45{left:484.756000pt;}
.x46{left:487.246667pt;}
.x3e{left:488.841333pt;}
.x2d{left:494.688000pt;}
.x47{left:500.530667pt;}
.x30{left:504.554667pt;}
.x79{left:514.053333pt;}
.x31{left:517.838667pt;}
.x2a{left:523.269333pt;}
.x81{left:534.010667pt;}
.x2b{left:536.552000pt;}
.x63{left:541.620000pt;}
.x83{left:546.340000pt;}
.x82{left:547.293333pt;}
.x19{left:550.869333pt;}
.x53{left:556.153333pt;}
.x84{left:559.624000pt;}
.x12{left:563.580000pt;}
.x1a{left:567.424000pt;}
.x13{left:570.222667pt;}
.x78{left:577.590667pt;}
.x1b{left:580.708000pt;}
.x5a{left:582.000000pt;}
.x37{left:586.073333pt;}
.x38{left:599.356000pt;}
.x28{left:601.061333pt;}
.x40{left:612.140000pt;}
.x29{left:614.344000pt;}
.x41{left:623.066667pt;}
.x57{left:630.797333pt;}
.x7e{left:641.770667pt;}
.x22{left:643.454667pt;}
.x23{left:650.097333pt;}
.x5e{left:654.788000pt;}
.x7f{left:658.308000pt;}
.x6b{left:664.014667pt;}
.x39{left:666.213333pt;}
.x6e{left:667.557333pt;}
.x5f{left:668.857333pt;}
.x80{left:671.592000pt;}
.x60{left:677.325333pt;}
.x6c{left:678.253333pt;}
.x3a{left:679.497333pt;}
.x67{left:685.630667pt;}
.x86{left:687.193333pt;}
.x69{left:694.144000pt;}
.x68{left:702.106667pt;}
.x14{left:704.132000pt;}
.x6a{left:706.942667pt;}
.x74{left:708.918667pt;}
.x15{left:710.773333pt;}
.x3f{left:716.172000pt;}
.x48{left:727.152000pt;}
.x85{left:730.296000pt;}
.xc{left:733.624000pt;}
.x87{left:734.546667pt;}
.xd{left:740.265333pt;}
.x88{left:741.189333pt;}
}




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