
    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_77df3241afaad92fcdb49daf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e19d51772b7c59b8ea2f2bbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_3870fb6113b4d4c4a6755995.woff2')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_dd8fe260fc2b64a451e6a3e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.841000;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_1fbe1a0b6eba1a080729b662.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.799000;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_83f93dbd62139054a0d231f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_b4f5534e2234f09d599e2c96.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014160;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_4da843e78e33ecd826a3436a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_3f3b09f50c0fd357060d5e62.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.216309;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_60b3eb8e83d31c6dbf47fc9f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.216309;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_d2b7341f84907866ff7bbe76.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_9515ef116e331688817875ce.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m20{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);}
.m7{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);}
.m8{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);}
.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);}
.m1b{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);}
.m18{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);}
.mb{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);}
.m22{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);}
.m9{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);}
.m13{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);}
.m1a{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);}
.m17{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);}
.m6{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);}
.m19{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);}
.ma{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);}
.m11{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);}
.m25{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);}
.md{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);}
.m27{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);}
.m16{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);}
.m5{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);}
.m4{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);}
.m29{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);}
.m21{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);}
.m24{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);}
.m1d{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);}
.m28{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);}
.m14{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);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m1e{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m15{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);}
.m3{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls7{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000009px;}
.ls3c{letter-spacing:0.000089px;}
.ls38{letter-spacing:0.000253px;}
.ls28{letter-spacing:0.000406px;}
.ls2f{letter-spacing:0.000800px;}
.ls4{letter-spacing:0.001933px;}
.ls3{letter-spacing:0.001952px;}
.ls1d{letter-spacing:0.002520px;}
.ls30{letter-spacing:0.002892px;}
.ls42{letter-spacing:0.003530px;}
.ls39{letter-spacing:0.003646px;}
.ls37{letter-spacing:0.004800px;}
.ls1c{letter-spacing:0.030000px;}
.ls1b{letter-spacing:0.180000px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls26{letter-spacing:12.387135px;}
.ls3d{letter-spacing:13.160636px;}
.ls2e{letter-spacing:13.173190px;}
.ls2b{letter-spacing:13.253957px;}
.ls27{letter-spacing:13.290557px;}
.ls23{letter-spacing:13.344019px;}
.ls29{letter-spacing:13.375671px;}
.ls2a{letter-spacing:13.410101px;}
.ls40{letter-spacing:13.445084px;}
.ls22{letter-spacing:13.448400px;}
.ls24{letter-spacing:13.448806px;}
.ls21{letter-spacing:13.454400px;}
.ls32{letter-spacing:13.464686px;}
.ls36{letter-spacing:13.505083px;}
.ls3f{letter-spacing:13.517100px;}
.ls3b{letter-spacing:13.586764px;}
.ls1f{letter-spacing:13.626388px;}
.ls43{letter-spacing:13.690930px;}
.ls34{letter-spacing:13.721829px;}
.lsd{letter-spacing:14.070386px;}
.ls25{letter-spacing:14.138635px;}
.ls20{letter-spacing:14.238635px;}
.lsb{letter-spacing:14.303039px;}
.lsc{letter-spacing:14.309161px;}
.ls3a{letter-spacing:14.444518px;}
.ls10{letter-spacing:14.561497px;}
.lsf{letter-spacing:14.567386px;}
.ls11{letter-spacing:14.579162px;}
.lse{letter-spacing:14.585050px;}
.ls35{letter-spacing:14.909224px;}
.ls18{letter-spacing:14.924887px;}
.ls16{letter-spacing:15.141727px;}
.ls17{letter-spacing:15.153959px;}
.ls15{letter-spacing:15.160076px;}
.ls13{letter-spacing:15.644335px;}
.ls41{letter-spacing:15.809224px;}
.ls14{letter-spacing:15.891394px;}
.ls33{letter-spacing:16.550400px;}
.ls2d{letter-spacing:16.932753px;}
.ls19{letter-spacing:17.226688px;}
.ls1a{letter-spacing:17.232571px;}
.ls9{letter-spacing:17.385512px;}
.lsa{letter-spacing:17.391394px;}
.ls1{letter-spacing:17.929200px;}
.ls12{letter-spacing:18.009041px;}
.ls8{letter-spacing:18.073747px;}
.ls31{letter-spacing:18.497459px;}
.ls3e{letter-spacing:19.162165px;}
.ls2{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls1e{letter-spacing:849.090000px;}
.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;}
}
.ws93{word-spacing:-15.032520px;}
.ws92{word-spacing:-13.500000px;}
.ws9a{word-spacing:-13.449600px;}
.ws91{word-spacing:-12.150000px;}
.ws90{word-spacing:-11.970000px;}
.wse{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws8f{word-spacing:-3.227882px;}
.ws6a{word-spacing:-3.108331px;}
.ws30{word-spacing:-2.869229px;}
.ws5c{word-spacing:-2.809453px;}
.ws5a{word-spacing:-2.510575px;}
.ws65{word-spacing:-2.450800px;}
.ws1d{word-spacing:-2.271473px;}
.ws46{word-spacing:-2.151922px;}
.ws80{word-spacing:-2.032370px;}
.ws15{word-spacing:-1.990541px;}
.wsdb{word-spacing:-1.775347px;}
.ws3a{word-spacing:-1.673717px;}
.wsac{word-spacing:-1.398758px;}
.ws1f{word-spacing:-1.195512px;}
.ws12{word-spacing:-1.183565px;}
.ws5b{word-spacing:-1.135736px;}
.wsad{word-spacing:-1.075968px;}
.ws8a{word-spacing:-1.016185px;}
.wsf0{word-spacing:-0.968371px;}
.wse2{word-spacing:-0.914573px;}
.ws4e{word-spacing:-0.896634px;}
.ws101{word-spacing:-0.699379px;}
.ws82{word-spacing:-0.657532px;}
.ws11{word-spacing:-0.591782px;}
.ws87{word-spacing:-0.478205px;}
.ws50{word-spacing:-0.383441px;}
.ws103{word-spacing:-0.376589px;}
.ws3b{word-spacing:-0.358654px;}
.wsd9{word-spacing:-0.322790px;}
.ws23{word-spacing:-0.298878px;}
.wsba{word-spacing:-0.268992px;}
.ws2e{word-spacing:-0.239102px;}
.ws13{word-spacing:-0.215194px;}
.ws4a{word-spacing:-0.181652px;}
.ws2c{word-spacing:-0.179327px;}
.wsb1{word-spacing:-0.161395px;}
.ws20{word-spacing:-0.119551px;}
.wsa1{word-spacing:-0.107597px;}
.ws2a{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.053798px;}
.wsd{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws57{word-spacing:-0.027815px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.053798px;}
.ws21{word-spacing:0.059776px;}
.wsa5{word-spacing:0.107597px;}
.ws1b{word-spacing:0.119551px;}
.ws95{word-spacing:0.161395px;}
.ws1c{word-spacing:0.179327px;}
.ws17{word-spacing:0.215194px;}
.ws19{word-spacing:0.239102px;}
.ws98{word-spacing:0.268992px;}
.ws29{word-spacing:0.298878px;}
.wsb8{word-spacing:0.322790px;}
.ws3c{word-spacing:0.358654px;}
.ws32{word-spacing:0.418429px;}
.ws10{word-spacing:0.430387px;}
.wsa7{word-spacing:0.484186px;}
.ws8c{word-spacing:0.537980px;}
.wsbc{word-spacing:0.537984px;}
.ws9c{word-spacing:0.591782px;}
.ws31{word-spacing:0.597756px;}
.wsd7{word-spacing:0.645581px;}
.wsa9{word-spacing:0.699379px;}
.ws55{word-spacing:0.703068px;}
.ws37{word-spacing:0.717307px;}
.wsec{word-spacing:0.753178px;}
.ws9e{word-spacing:0.806976px;}
.ws6b{word-spacing:0.836858px;}
.wse7{word-spacing:0.860774px;}
.ws24{word-spacing:0.896634px;}
.ws7f{word-spacing:0.956410px;}
.wsed{word-spacing:0.968371px;}
.ws2f{word-spacing:1.016185px;}
.wsa4{word-spacing:1.022170px;}
.ws45{word-spacing:1.075961px;}
.wscc{word-spacing:1.075968px;}
.wsab{word-spacing:1.129766px;}
.ws44{word-spacing:1.135736px;}
.wsbe{word-spacing:1.237363px;}
.ws28{word-spacing:1.255288px;}
.ws1a{word-spacing:1.315063px;}
.ws64{word-spacing:1.434614px;}
.ws66{word-spacing:1.494390px;}
.wsee{word-spacing:1.560154px;}
.ws5e{word-spacing:1.613941px;}
.wsff{word-spacing:1.667750px;}
.ws84{word-spacing:1.673717px;}
.ws7c{word-spacing:1.733492px;}
.wsb0{word-spacing:1.829146px;}
.ws7a{word-spacing:1.912819px;}
.ws68{word-spacing:1.972595px;}
.ws79{word-spacing:2.032370px;}
.ws77{word-spacing:2.092146px;}
.ws81{word-spacing:2.151922px;}
.ws7e{word-spacing:2.211697px;}
.ws71{word-spacing:2.271473px;}
.ws73{word-spacing:2.285421px;}
.wsb3{word-spacing:2.313331px;}
.ws58{word-spacing:2.331248px;}
.ws102{word-spacing:2.367130px;}
.ws53{word-spacing:2.391024px;}
.wsdf{word-spacing:2.420928px;}
.ws3d{word-spacing:2.465760px;}
.ws67{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws6e{word-spacing:2.570351px;}
.wsea{word-spacing:2.582323px;}
.wsf6{word-spacing:2.636122px;}
.wsd0{word-spacing:2.743718px;}
.ws33{word-spacing:2.749678px;}
.wsfb{word-spacing:2.797517px;}
.ws69{word-spacing:2.809453px;}
.ws36{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.ws56{word-spacing:2.988780px;}
.ws1e{word-spacing:3.108331px;}
.wse1{word-spacing:3.120307px;}
.ws42{word-spacing:3.168107px;}
.ws9f{word-spacing:3.174106px;}
.wsd8{word-spacing:3.218112px;}
.ws104{word-spacing:3.219571px;}
.wsf4{word-spacing:3.220570px;}
.wsa6{word-spacing:3.221443px;}
.wsef{word-spacing:3.223642px;}
.wsb4{word-spacing:3.223901px;}
.wsfd{word-spacing:3.224707px;}
.ws96{word-spacing:3.224822px;}
.ws88{word-spacing:3.227882px;}
.wsa3{word-spacing:3.227904px;}
.ws52{word-spacing:3.287658px;}
.wsb5{word-spacing:3.335501px;}
.wsc3{word-spacing:3.389299px;}
.wse8{word-spacing:3.443098px;}
.ws89{word-spacing:3.466985px;}
.wsd2{word-spacing:3.496896px;}
.ws18{word-spacing:3.586536px;}
.wsc0{word-spacing:3.604493px;}
.wsb7{word-spacing:3.658291px;}
.ws2d{word-spacing:3.706087px;}
.ws47{word-spacing:3.765863px;}
.ws27{word-spacing:3.825638px;}
.wsfa{word-spacing:3.873485px;}
.ws60{word-spacing:3.945190px;}
.wsdc{word-spacing:3.981082px;}
.wscf{word-spacing:4.034880px;}
.ws59{word-spacing:4.064741px;}
.ws3e{word-spacing:4.124516px;}
.wsc1{word-spacing:4.142477px;}
.ws106{word-spacing:4.250074px;}
.ws40{word-spacing:4.303843px;}
.ws61{word-spacing:4.363619px;}
.ws41{word-spacing:4.423394px;}
.wsf7{word-spacing:4.519066px;}
.ws105{word-spacing:4.626662px;}
.wsa{word-spacing:4.770079px;}
.ws9b{word-spacing:4.788058px;}
.wsb{word-spacing:4.853765px;}
.ws85{word-spacing:4.961375px;}
.ws8d{word-spacing:5.140702px;}
.ws5d{word-spacing:5.200477px;}
.ws86{word-spacing:5.260253px;}
.ws4d{word-spacing:5.320028px;}
.wsd3{word-spacing:5.379840px;}
.ws22{word-spacing:5.439580px;}
.wsf3{word-spacing:5.487437px;}
.ws38{word-spacing:5.499355px;}
.ws76{word-spacing:5.618906px;}
.wsf9{word-spacing:5.702630px;}
.ws35{word-spacing:5.798233px;}
.ws7d{word-spacing:5.858009px;}
.ws70{word-spacing:5.917784px;}
.ws25{word-spacing:6.097111px;}
.ws4c{word-spacing:6.216662px;}
.ws26{word-spacing:6.276438px;}
.ws48{word-spacing:6.395989px;}
.ws6d{word-spacing:6.515540px;}
.ws6c{word-spacing:6.575316px;}
.wsc4{word-spacing:6.617203px;}
.ws62{word-spacing:7.053521px;}
.ws8e{word-spacing:7.232848px;}
.ws94{word-spacing:7.292623px;}
.ws63{word-spacing:7.651277px;}
.ws6f{word-spacing:7.711052px;}
.ws8{word-spacing:7.782761px;}
.ws8b{word-spacing:7.830604px;}
.ws78{word-spacing:7.890379px;}
.wse9{word-spacing:8.231155px;}
.ws75{word-spacing:8.308808px;}
.ws5f{word-spacing:8.906564px;}
.ws7b{word-spacing:9.803198px;}
.ws83{word-spacing:10.161852px;}
.ws2{word-spacing:10.422511px;}
.wse4{word-spacing:10.598285px;}
.ws2b{word-spacing:11.910812px;}
.ws6{word-spacing:12.176255px;}
.wsd4{word-spacing:13.126810px;}
.wscb{word-spacing:13.180608px;}
.wsb2{word-spacing:13.234406px;}
.wsa2{word-spacing:13.288205px;}
.wsde{word-spacing:13.342003px;}
.wsbb{word-spacing:13.386653px;}
.wsfc{word-spacing:13.388410px;}
.wsc8{word-spacing:13.389158px;}
.wsbd{word-spacing:13.389226px;}
.wsf2{word-spacing:13.389350px;}
.wsf1{word-spacing:13.391520px;}
.wsae{word-spacing:13.391587px;}
.wsc5{word-spacing:13.392336px;}
.wsbf{word-spacing:13.392979px;}
.wsa0{word-spacing:13.393488px;}
.ws97{word-spacing:13.395802px;}
.ws43{word-spacing:13.569061px;}
.ws99{word-spacing:13.610995px;}
.wse3{word-spacing:13.664794px;}
.ws9d{word-spacing:13.987584px;}
.wscd{word-spacing:14.471770px;}
.ws4f{word-spacing:14.526553px;}
.ws49{word-spacing:14.708152px;}
.ws51{word-spacing:14.771438px;}
.ws3f{word-spacing:14.984403px;}
.ws4b{word-spacing:15.029181px;}
.ws54{word-spacing:15.828753px;}
.ws7{word-spacing:16.109478px;}
.wsd1{word-spacing:16.139520px;}
.wsaf{word-spacing:16.569907px;}
.wsce{word-spacing:16.614624px;}
.wseb{word-spacing:16.615373px;}
.wsfe{word-spacing:16.616736px;}
.wsc7{word-spacing:16.617034px;}
.wsc9{word-spacing:16.617475px;}
.wsc2{word-spacing:16.617830px;}
.wsb6{word-spacing:16.618608px;}
.wsca{word-spacing:16.619453px;}
.wsc6{word-spacing:16.620355px;}
.wsda{word-spacing:16.620518px;}
.wsd5{word-spacing:16.621373px;}
.wse6{word-spacing:16.621536px;}
.wsd6{word-spacing:16.623571px;}
.wsaa{word-spacing:16.623706px;}
.ws100{word-spacing:16.677504px;}
.wsf5{word-spacing:16.785101px;}
.wsb9{word-spacing:17.107891px;}
.ws74{word-spacing:17.177239px;}
.ws72{word-spacing:17.177928px;}
.wsdd{word-spacing:17.376883px;}
.ws34{word-spacing:18.470660px;}
.wsa8{word-spacing:18.560448px;}
.wse5{word-spacing:20.443392px;}
.ws39{word-spacing:20.562806px;}
.wse0{word-spacing:24.370675px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
.wsf8{word-spacing:30.665088px;}
._20{margin-left:-7.764928px;}
._6{margin-left:-6.168857px;}
._7{margin-left:-4.407535px;}
._d{margin-left:-2.857278px;}
._0{margin-left:-1.506341px;}
._19{width:1.147680px;}
._5{width:2.996713px;}
._1b{width:4.027418px;}
._1c{width:6.353640px;}
._1d{width:7.557078px;}
._22{width:11.022797px;}
._1{width:12.218098px;}
._12{width:13.760339px;}
._9{width:15.278746px;}
._8{width:16.785101px;}
._b{width:17.944631px;}
._f{width:19.803744px;}
._23{width:20.814460px;}
._c{width:21.818094px;}
._a{width:22.953830px;}
._15{width:24.747098px;}
._2{width:25.940136px;}
._16{width:26.970746px;}
._13{width:28.871615px;}
._3{width:30.587087px;}
._4{width:33.355008px;}
._18{width:35.805584px;}
._e{width:37.359750px;}
._17{width:38.674813px;}
._14{width:40.228979px;}
._1f{width:61.868160px;}
._1e{width:88.767360px;}
._10{width:995.766482px;}
._1a{width:2177.790000px;}
._21{width:2568.080700px;}
._11{width:2591.990700px;}
.fc3{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc2{color:rgb(163,137,204);}
.fc1{color:rgb(89,70,125);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs2{font-size:41.576040px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs7{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs8{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs4{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.yf2{bottom:-514.875000px;}
.y10b{bottom:-447.465000px;}
.y10a{bottom:-416.775000px;}
.y109{bottom:-390.495000px;}
.y108{bottom:-364.215000px;}
.y107{bottom:-337.845000px;}
.y106{bottom:-320.475000px;}
.y105{bottom:-303.165000px;}
.y104{bottom:-267.525000px;}
.y103{bottom:-248.265000px;}
.y102{bottom:-229.095000px;}
.y101{bottom:-209.835000px;}
.y100{bottom:-190.575000px;}
.yff{bottom:-171.405000px;}
.yfe{bottom:-152.145000px;}
.yfd{bottom:-132.975000px;}
.yfc{bottom:-113.715000px;}
.yfb{bottom:-94.455000px;}
.yfa{bottom:-70.785000px;}
.yf9{bottom:-33.975000px;}
.yf8{bottom:-16.605000px;}
.y0{bottom:0.000000px;}
.yf7{bottom:5.805000px;}
.y18{bottom:9.575340px;}
.y15{bottom:15.759303px;}
.y17{bottom:22.047018px;}
.y45{bottom:31.890000px;}
.y16{bottom:34.521342px;}
.yc9{bottom:102.261000px;}
.y15c{bottom:104.503500px;}
.y13{bottom:104.646000px;}
.y79{bottom:106.296000px;}
.y123{bottom:108.655500px;}
.yc8{bottom:121.090500px;}
.y15b{bottom:121.762500px;}
.y12{bottom:122.535000px;}
.y78{bottom:125.125500px;}
.y122{bottom:125.916000px;}
.y98{bottom:126.022500px;}
.y44{bottom:128.355000px;}
.y15a{bottom:139.023000px;}
.yc7{bottom:139.920000px;}
.y11{bottom:140.422500px;}
.y121{bottom:143.176500px;}
.y97{bottom:144.852000px;}
.y43{bottom:147.184500px;}
.y77{bottom:148.438500px;}
.y159{bottom:156.283500px;}
.y10{bottom:158.310000px;}
.yc6{bottom:158.749500px;}
.y120{bottom:160.437000px;}
.y96{bottom:163.681500px;}
.y42{bottom:166.014000px;}
.y158{bottom:173.544000px;}
.yf{bottom:176.199000px;}
.yc5{bottom:177.579000px;}
.y76{bottom:182.062500px;}
.y11f{bottom:182.181000px;}
.y95{bottom:182.511000px;}
.y41{bottom:184.843500px;}
.y157{bottom:190.804500px;}
.ye{bottom:194.086500px;}
.y75{bottom:200.892000px;}
.y94{bottom:201.340500px;}
.y40{bottom:203.673000px;}
.y156{bottom:208.065000px;}
.yd{bottom:211.974000px;}
.y11e{bottom:215.805000px;}
.y74{bottom:219.721500px;}
.y93{bottom:220.170000px;}
.y3f{bottom:222.502500px;}
.y155{bottom:225.325500px;}
.yc{bottom:229.863000px;}
.yc4{bottom:234.516000px;}
.yee{bottom:234.964500px;}
.y73{bottom:238.551000px;}
.y92{bottom:238.999500px;}
.y3e{bottom:241.332000px;}
.y11d{bottom:242.344500px;}
.y154{bottom:242.586000px;}
.yc3{bottom:253.345500px;}
.yed{bottom:253.794000px;}
.y72{bottom:257.380500px;}
.y91{bottom:257.829000px;}
.y153{bottom:259.846500px;}
.y3d{bottom:260.161500px;}
.y11c{bottom:268.885500px;}
.yc2{bottom:272.175000px;}
.yec{bottom:272.623500px;}
.y71{bottom:276.210000px;}
.y90{bottom:276.658500px;}
.y152{bottom:277.105500px;}
.y3c{bottom:278.991000px;}
.yc1{bottom:291.004500px;}
.yeb{bottom:291.453000px;}
.y151{bottom:294.366000px;}
.y70{bottom:295.039500px;}
.y11b{bottom:295.426500px;}
.y8f{bottom:295.488000px;}
.y3b{bottom:297.820500px;}
.yb{bottom:299.892000px;}
.yc0{bottom:309.834000px;}
.yea{bottom:310.282500px;}
.y150{bottom:311.626500px;}
.y11a{bottom:313.000500px;}
.y6f{bottom:313.869000px;}
.y8e{bottom:314.317500px;}
.y3a{bottom:316.650000px;}
.ya{bottom:317.779500px;}
.ybf{bottom:328.663500px;}
.y14f{bottom:328.887000px;}
.ye9{bottom:329.112000px;}
.y119{bottom:330.574500px;}
.y6e{bottom:332.698500px;}
.y8d{bottom:333.145500px;}
.y39{bottom:335.479500px;}
.y9{bottom:335.667000px;}
.y14e{bottom:346.147500px;}
.ybe{bottom:347.493000px;}
.ye8{bottom:347.940000px;}
.y6d{bottom:351.528000px;}
.y8c{bottom:351.975000px;}
.y8{bottom:353.556000px;}
.y38{bottom:354.309000px;}
.y14d{bottom:363.408000px;}
.y118{bottom:366.081000px;}
.ybd{bottom:366.322500px;}
.ye7{bottom:366.769500px;}
.y6c{bottom:370.357500px;}
.y8b{bottom:370.804500px;}
.y37{bottom:373.138500px;}
.y14c{bottom:380.668500px;}
.y7{bottom:381.904500px;}
.y117{bottom:384.910500px;}
.ybc{bottom:385.152000px;}
.ye6{bottom:385.599000px;}
.y6b{bottom:389.187000px;}
.y8a{bottom:389.634000px;}
.y36{bottom:391.968000px;}
.y14b{bottom:397.929000px;}
.y116{bottom:403.740000px;}
.ybb{bottom:403.981500px;}
.ye5{bottom:404.428500px;}
.y6a{bottom:408.015000px;}
.y89{bottom:408.463500px;}
.y6{bottom:408.759000px;}
.y35{bottom:410.797500px;}
.y14a{bottom:415.188000px;}
.y115{bottom:422.569500px;}
.yba{bottom:422.811000px;}
.ye4{bottom:423.258000px;}
.y5{bottom:426.646500px;}
.y69{bottom:426.844500px;}
.y88{bottom:427.293000px;}
.y34{bottom:429.627000px;}
.y149{bottom:432.448500px;}
.y114{bottom:441.399000px;}
.yb9{bottom:441.639000px;}
.ye3{bottom:442.087500px;}
.y4{bottom:444.534000px;}
.y68{bottom:445.674000px;}
.y87{bottom:446.122500px;}
.y33{bottom:448.456500px;}
.y148{bottom:449.709000px;}
.y113{bottom:460.228500px;}
.yb8{bottom:460.468500px;}
.ye2{bottom:460.917000px;}
.y3{bottom:462.423000px;}
.y67{bottom:464.503500px;}
.y86{bottom:464.952000px;}
.y147{bottom:466.969500px;}
.y32{bottom:467.286000px;}
.y112{bottom:479.058000px;}
.yb7{bottom:479.298000px;}
.ye1{bottom:479.746500px;}
.y2{bottom:480.310500px;}
.y66{bottom:483.333000px;}
.y85{bottom:483.781500px;}
.y146{bottom:484.230000px;}
.y31{bottom:486.115500px;}
.y111{bottom:497.887500px;}
.yb6{bottom:498.127500px;}
.y1{bottom:498.198000px;}
.ye0{bottom:498.576000px;}
.y145{bottom:501.490500px;}
.y65{bottom:502.162500px;}
.y84{bottom:502.611000px;}
.y30{bottom:504.945000px;}
.yf6{bottom:506.865000px;}
.y110{bottom:516.717000px;}
.yb5{bottom:516.957000px;}
.ydf{bottom:517.405500px;}
.y144{bottom:518.751000px;}
.y64{bottom:520.992000px;}
.y83{bottom:521.440500px;}
.y2f{bottom:523.774500px;}
.yf5{bottom:526.155000px;}
.y10f{bottom:535.546500px;}
.yb4{bottom:535.786500px;}
.y143{bottom:536.011500px;}
.yde{bottom:536.235000px;}
.y63{bottom:539.821500px;}
.y82{bottom:540.270000px;}
.yf4{bottom:545.415000px;}
.y2e{bottom:547.086000px;}
.y142{bottom:553.272000px;}
.yb3{bottom:554.616000px;}
.ydd{bottom:555.064500px;}
.y62{bottom:558.651000px;}
.y10e{bottom:558.859500px;}
.y81{bottom:559.099500px;}
.yf3{bottom:564.585000px;}
.y141{bottom:570.531000px;}
.yb2{bottom:573.445500px;}
.ydc{bottom:573.894000px;}
.y61{bottom:577.480500px;}
.y80{bottom:577.929000px;}
.y140{bottom:587.791500px;}
.y10d{bottom:589.285500px;}
.yb1{bottom:592.275000px;}
.ydb{bottom:592.723500px;}
.y7f{bottom:596.758500px;}
.y60{bottom:600.793500px;}
.y13f{bottom:605.052000px;}
.y10c{bottom:608.518500px;}
.yb0{bottom:611.104500px;}
.yda{bottom:611.553000px;}
.y7e{bottom:615.588000px;}
.yf1{bottom:619.305000px;}
.y2d{bottom:622.237500px;}
.y13e{bottom:622.312500px;}
.yf0{bottom:628.935000px;}
.yd9{bottom:630.382500px;}
.yef{bottom:630.948000px;}
.y5f{bottom:634.417500px;}
.y13d{bottom:639.573000px;}
.yd8{bottom:649.212000px;}
.y5e{bottom:653.247000px;}
.y13c{bottom:656.833500px;}
.y2c{bottom:659.626500px;}
.yaf{bottom:668.041500px;}
.y5d{bottom:672.076500px;}
.y13b{bottom:674.094000px;}
.y2b{bottom:679.083000px;}
.yae{bottom:686.871000px;}
.y5c{bottom:690.906000px;}
.y13a{bottom:691.354500px;}
.y2a{bottom:698.541000px;}
.yad{bottom:705.700500px;}
.y139{bottom:708.613500px;}
.y5b{bottom:709.735500px;}
.y29{bottom:717.997500px;}
.yac{bottom:724.530000px;}
.y138{bottom:725.874000px;}
.y7d{bottom:728.565000px;}
.y5a{bottom:733.047000px;}
.y28{bottom:737.455500px;}
.y137{bottom:743.134500px;}
.yab{bottom:743.359500px;}
.y7c{bottom:747.394500px;}
.y27{bottom:756.912000px;}
.y136{bottom:760.395000px;}
.yaa{bottom:762.189000px;}
.y7b{bottom:766.224000px;}
.y59{bottom:766.671000px;}
.y26{bottom:776.368500px;}
.y135{bottom:777.655500px;}
.ya9{bottom:781.018500px;}
.yd7{bottom:785.053500px;}
.y58{bottom:785.500500px;}
.y7a{bottom:789.535500px;}
.y15f{bottom:790.357500px;}
.y134{bottom:794.916000px;}
.y25{bottom:795.826500px;}
.ya8{bottom:799.848000px;}
.yd6{bottom:803.883000px;}
.y57{bottom:804.330000px;}
.y15e{bottom:807.618000px;}
.y133{bottom:812.176500px;}
.y24{bottom:815.283000px;}
.ya7{bottom:818.677500px;}
.yd5{bottom:822.712500px;}
.y56{bottom:823.159500px;}
.y15d{bottom:824.878500px;}
.y132{bottom:829.437000px;}
.ya6{bottom:837.507000px;}
.yd4{bottom:841.540500px;}
.y55{bottom:841.989000px;}
.y131{bottom:846.697500px;}
.y23{bottom:853.869000px;}
.ya5{bottom:856.335000px;}
.yd3{bottom:860.370000px;}
.y54{bottom:860.818500px;}
.y130{bottom:863.956500px;}
.y22{bottom:870.007500px;}
.ya4{bottom:875.164500px;}
.yd2{bottom:879.199500px;}
.y53{bottom:879.648000px;}
.y12f{bottom:881.217000px;}
.y21{bottom:890.487000px;}
.ya3{bottom:893.994000px;}
.yd1{bottom:898.029000px;}
.y52{bottom:898.477500px;}
.y20{bottom:906.627000px;}
.ya2{bottom:912.823500px;}
.y12e{bottom:915.738000px;}
.yd0{bottom:916.858500px;}
.y51{bottom:917.307000px;}
.y1f{bottom:918.426000px;}
.ya1{bottom:931.653000px;}
.y12d{bottom:932.998500px;}
.y1e{bottom:934.566000px;}
.ycf{bottom:935.688000px;}
.y50{bottom:936.136500px;}
.y12c{bottom:950.259000px;}
.ya0{bottom:950.482500px;}
.yce{bottom:954.517500px;}
.y4f{bottom:954.966000px;}
.y1d{bottom:955.045500px;}
.y12b{bottom:967.519500px;}
.y9f{bottom:969.312000px;}
.ycd{bottom:973.347000px;}
.y4e{bottom:973.795500px;}
.y12a{bottom:984.780000px;}
.y9e{bottom:988.141500px;}
.ycc{bottom:992.176500px;}
.y4d{bottom:992.625000px;}
.y1c{bottom:999.721500px;}
.y129{bottom:1002.040500px;}
.y9d{bottom:1006.971000px;}
.ycb{bottom:1011.006000px;}
.y4c{bottom:1011.454500px;}
.y128{bottom:1019.299500px;}
.y9c{bottom:1025.800500px;}
.y4b{bottom:1030.284000px;}
.yca{bottom:1034.319000px;}
.y1b{bottom:1036.485000px;}
.y127{bottom:1036.560000px;}
.y9b{bottom:1044.630000px;}
.y4a{bottom:1049.113500px;}
.y126{bottom:1053.820500px;}
.y9a{bottom:1063.459500px;}
.y1a{bottom:1064.728500px;}
.y49{bottom:1067.943000px;}
.y125{bottom:1071.081000px;}
.y99{bottom:1082.289000px;}
.y48{bottom:1086.772500px;}
.y124{bottom:1088.341500px;}
.y19{bottom:1092.972000px;}
.y47{bottom:1105.602000px;}
.y14{bottom:1136.460000px;}
.y46{bottom:1168.366500px;}
.h9{height:31.131341px;}
.h5{height:32.637191px;}
.h2{height:36.319550px;}
.h16{height:37.551283px;}
.hc{height:38.734848px;}
.hb{height:41.508281px;}
.he{height:43.038432px;}
.ha{height:43.660208px;}
.h6{height:43.815515px;}
.h14{height:44.268047px;}
.h11{height:44.279648px;}
.hd{height:46.697011px;}
.h15{height:49.117939px;}
.h13{height:49.939453px;}
.h3{height:50.930649px;}
.hf{height:51.885221px;}
.h8{height:54.411312px;}
.h12{height:55.599258px;}
.h7{height:77.469696px;}
.h4{height:94.491000px;}
.h10{height:489.598500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:148.125981px;}
.w3{width:485.671500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x92{left:-186.217500px;}
.x0{left:0.000000px;}
.x3{left:2.362275px;}
.x93{left:9.382500px;}
.x95{left:41.242500px;}
.x1{left:53.574000px;}
.x2{left:59.946413px;}
.x97{left:85.848000px;}
.xa9{left:136.066500px;}
.xaa{left:144.978000px;}
.xb3{left:238.488000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x5{left:269.914500px;}
.x9{left:281.479500px;}
.x6e{left:290.857500px;}
.x81{left:292.317000px;}
.x16{left:293.445000px;}
.x8c{left:297.603000px;}
.x17{left:300.916500px;}
.x6f{left:305.800500px;}
.x82{left:307.261500px;}
.x7{left:308.494500px;}
.x65{left:310.780500px;}
.x8d{left:312.547500px;}
.x4d{left:314.478000px;}
.x8b{left:317.340000px;}
.x8{left:319.890000px;}
.x5a{left:326.527500px;}
.x4e{left:329.422500px;}
.x49{left:332.880000px;}
.x73{left:336.622500px;}
.x5b{left:341.470500px;}
.x55{left:344.206500px;}
.x4b{left:346.228500px;}
.x4a{left:347.824500px;}
.x74{left:351.565500px;}
.x7d{left:355.101000px;}
.x4c{left:361.173000px;}
.x6a{left:365.199000px;}
.x7e{left:370.045500px;}
.x6b{left:380.143500px;}
.x6c{left:383.823000px;}
.x96{left:390.756000px;}
.x6d{left:398.767500px;}
.x22{left:437.175000px;}
.x14{left:439.272000px;}
.x15{left:446.743500px;}
.x23{left:452.119500px;}
.x31{left:454.584000px;}
.x24{left:459.442500px;}
.x4f{left:460.581000px;}
.x43{left:467.500500px;}
.x83{left:471.180000px;}
.x25{left:474.385500px;}
.x50{left:475.524000px;}
.x94{left:478.882500px;}
.x44{left:482.445000px;}
.x84{left:486.124500px;}
.x3f{left:487.989000px;}
.x47{left:491.719500px;}
.x80{left:498.363000px;}
.x71{left:500.260500px;}
.x40{left:502.932000px;}
.x48{left:506.664000px;}
.x60{left:508.230000px;}
.x68{left:509.487000px;}
.x53{left:511.548000px;}
.x66{left:514.105500px;}
.x72{left:515.203500px;}
.x51{left:516.307500px;}
.x61{left:523.174500px;}
.x12{left:525.004500px;}
.x54{left:526.491000px;}
.x67{left:529.050000px;}
.x52{left:531.252000px;}
.x13{left:532.476000px;}
.x58{left:538.153500px;}
.x69{left:543.132000px;}
.x59{left:553.098000px;}
.xa{left:565.819500px;}
.x7a{left:569.227500px;}
.xb{left:573.291000px;}
.xc{left:577.102500px;}
.x41{left:580.630500px;}
.xd{left:584.574000px;}
.x7b{left:587.964000px;}
.x7f{left:589.285500px;}
.x18{left:592.231500px;}
.x42{left:595.573500px;}
.x87{left:598.021500px;}
.x1b{left:599.775000px;}
.x7c{left:602.908500px;}
.x26{left:605.044500px;}
.x70{left:609.759000px;}
.x88{left:612.964500px;}
.x1c{left:614.719500px;}
.x89{left:616.776000px;}
.x27{left:619.989000px;}
.x2e{left:624.264000px;}
.x8a{left:631.719000px;}
.x77{left:633.091500px;}
.x3b{left:634.213500px;}
.x56{left:636.625500px;}
.x75{left:637.998000px;}
.x2f{left:639.208500px;}
.xab{left:642.163500px;}
.x5e{left:645.633000px;}
.x78{left:648.034500px;}
.x3c{left:649.158000px;}
.x57{left:651.570000px;}
.x76{left:652.941000px;}
.x8e{left:654.141000px;}
.x63{left:655.977000px;}
.x5f{left:660.576000px;}
.x9e{left:663.243000px;}
.x62{left:664.989000px;}
.x8f{left:669.085500px;}
.x64{left:670.921500px;}
.x90{left:672.870000px;}
.x98{left:674.059500px;}
.x3d{left:675.178500px;}
.x5c{left:682.969500px;}
.x85{left:685.185000px;}
.x91{left:687.813000px;}
.x3e{left:690.123000px;}
.x19{left:694.891500px;}
.x5d{left:697.914000px;}
.x86{left:700.129500px;}
.xae{left:702.949500px;}
.x37{left:704.284500px;}
.x1a{left:709.836000px;}
.x79{left:712.324500px;}
.xa0{left:715.630500px;}
.x38{left:719.229000px;}
.x39{left:722.911500px;}
.x1d{left:724.558500px;}
.x1e{left:728.361000px;}
.xb0{left:732.571500px;}
.x9c{left:735.136500px;}
.x3a{left:737.856000px;}
.xa8{left:740.764500px;}
.x1f{left:743.305500px;}
.xa4{left:748.989000px;}
.x2a{left:751.461000px;}
.x45{left:753.225000px;}
.x99{left:755.124000px;}
.xaf{left:756.439500px;}
.xad{left:757.579500px;}
.xb1{left:759.471000px;}
.x9d{left:762.034500px;}
.xa1{left:763.701000px;}
.x2b{left:766.404000px;}
.x46{left:768.168000px;}
.x2c{left:770.215500px;}
.x20{left:771.705000px;}
.x32{left:775.027500px;}
.xa6{left:778.113000px;}
.x36{left:782.289000px;}
.x9a{left:783.369000px;}
.x2d{left:785.160000px;}
.x21{left:786.649500px;}
.xa3{left:788.047500px;}
.x33{left:789.970500px;}
.xb2{left:791.253000px;}
.xac{left:796.176000px;}
.x34{left:797.293500px;}
.x10{left:798.562500px;}
.x30{left:800.505000px;}
.xa7{left:805.012500px;}
.x11{left:806.035500px;}
.x9b{left:810.268500px;}
.x35{left:812.238000px;}
.x28{left:814.119000px;}
.xa5{left:815.299500px;}
.x29{left:817.807500px;}
.xa2{left:823.630500px;}
.xe{left:825.432000px;}
.xf{left:832.903500px;}
.x9f{left:837.211500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000008pt;}
.ls3c{letter-spacing:0.000079pt;}
.ls38{letter-spacing:0.000225pt;}
.ls28{letter-spacing:0.000361pt;}
.ls2f{letter-spacing:0.000711pt;}
.ls4{letter-spacing:0.001718pt;}
.ls3{letter-spacing:0.001735pt;}
.ls1d{letter-spacing:0.002240pt;}
.ls30{letter-spacing:0.002571pt;}
.ls42{letter-spacing:0.003138pt;}
.ls39{letter-spacing:0.003241pt;}
.ls37{letter-spacing:0.004267pt;}
.ls1c{letter-spacing:0.026667pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls26{letter-spacing:11.010786pt;}
.ls3d{letter-spacing:11.698343pt;}
.ls2e{letter-spacing:11.709502pt;}
.ls2b{letter-spacing:11.781295pt;}
.ls27{letter-spacing:11.813829pt;}
.ls23{letter-spacing:11.861350pt;}
.ls29{letter-spacing:11.889486pt;}
.ls2a{letter-spacing:11.920090pt;}
.ls40{letter-spacing:11.951186pt;}
.ls22{letter-spacing:11.954133pt;}
.ls24{letter-spacing:11.954495pt;}
.ls21{letter-spacing:11.959467pt;}
.ls32{letter-spacing:11.968610pt;}
.ls36{letter-spacing:12.004518pt;}
.ls3f{letter-spacing:12.015200pt;}
.ls3b{letter-spacing:12.077123pt;}
.ls1f{letter-spacing:12.112345pt;}
.ls43{letter-spacing:12.169715pt;}
.ls34{letter-spacing:12.197181pt;}
.lsd{letter-spacing:12.507010pt;}
.ls25{letter-spacing:12.567676pt;}
.ls20{letter-spacing:12.656565pt;}
.lsb{letter-spacing:12.713812pt;}
.lsc{letter-spacing:12.719254pt;}
.ls3a{letter-spacing:12.839571pt;}
.ls10{letter-spacing:12.943553pt;}
.lsf{letter-spacing:12.948787pt;}
.ls11{letter-spacing:12.959255pt;}
.lse{letter-spacing:12.964489pt;}
.ls35{letter-spacing:13.252643pt;}
.ls18{letter-spacing:13.266566pt;}
.ls16{letter-spacing:13.459313pt;}
.ls17{letter-spacing:13.470186pt;}
.ls15{letter-spacing:13.475623pt;}
.ls13{letter-spacing:13.906076pt;}
.ls41{letter-spacing:14.052643pt;}
.ls14{letter-spacing:14.125684pt;}
.ls33{letter-spacing:14.711467pt;}
.ls2d{letter-spacing:15.051336pt;}
.ls19{letter-spacing:15.312612pt;}
.ls1a{letter-spacing:15.317841pt;}
.ls9{letter-spacing:15.453788pt;}
.lsa{letter-spacing:15.459017pt;}
.ls1{letter-spacing:15.937067pt;}
.ls12{letter-spacing:16.008037pt;}
.ls8{letter-spacing:16.065553pt;}
.ls31{letter-spacing:16.442186pt;}
.ls3e{letter-spacing:17.033035pt;}
.ls2{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls1e{letter-spacing:754.746667pt;}
.ws93{word-spacing:-13.362240pt;}
.ws92{word-spacing:-12.000000pt;}
.ws9a{word-spacing:-11.955200pt;}
.ws91{word-spacing:-10.800000pt;}
.ws90{word-spacing:-10.640000pt;}
.wse{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws8f{word-spacing:-2.869229pt;}
.ws6a{word-spacing:-2.762961pt;}
.ws30{word-spacing:-2.550426pt;}
.ws5c{word-spacing:-2.497292pt;}
.ws5a{word-spacing:-2.231622pt;}
.ws65{word-spacing:-2.178489pt;}
.ws1d{word-spacing:-2.019087pt;}
.ws46{word-spacing:-1.912819pt;}
.ws80{word-spacing:-1.806551pt;}
.ws15{word-spacing:-1.769370pt;}
.wsdb{word-spacing:-1.578086pt;}
.ws3a{word-spacing:-1.487748pt;}
.wsac{word-spacing:-1.243341pt;}
.ws1f{word-spacing:-1.062677pt;}
.ws12{word-spacing:-1.052058pt;}
.ws5b{word-spacing:-1.009543pt;}
.wsad{word-spacing:-0.956416pt;}
.ws8a{word-spacing:-0.903276pt;}
.wsf0{word-spacing:-0.860774pt;}
.wse2{word-spacing:-0.812954pt;}
.ws4e{word-spacing:-0.797008pt;}
.ws101{word-spacing:-0.621670pt;}
.ws82{word-spacing:-0.584473pt;}
.ws11{word-spacing:-0.526029pt;}
.ws87{word-spacing:-0.425071pt;}
.ws50{word-spacing:-0.340837pt;}
.ws103{word-spacing:-0.334746pt;}
.ws3b{word-spacing:-0.318803pt;}
.wsd9{word-spacing:-0.286925pt;}
.ws23{word-spacing:-0.265669pt;}
.wsba{word-spacing:-0.239104pt;}
.ws2e{word-spacing:-0.212535pt;}
.ws13{word-spacing:-0.191283pt;}
.ws4a{word-spacing:-0.161468pt;}
.ws2c{word-spacing:-0.159402pt;}
.wsb1{word-spacing:-0.143462pt;}
.ws20{word-spacing:-0.106268pt;}
.wsa1{word-spacing:-0.095642pt;}
.ws2a{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.047821pt;}
.wsd{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws57{word-spacing:-0.024724pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.047821pt;}
.ws21{word-spacing:0.053134pt;}
.wsa5{word-spacing:0.095642pt;}
.ws1b{word-spacing:0.106268pt;}
.ws95{word-spacing:0.143462pt;}
.ws1c{word-spacing:0.159402pt;}
.ws17{word-spacing:0.191283pt;}
.ws19{word-spacing:0.212535pt;}
.ws98{word-spacing:0.239104pt;}
.ws29{word-spacing:0.265669pt;}
.wsb8{word-spacing:0.286925pt;}
.ws3c{word-spacing:0.318803pt;}
.ws32{word-spacing:0.371937pt;}
.ws10{word-spacing:0.382566pt;}
.wsa7{word-spacing:0.430387pt;}
.ws8c{word-spacing:0.478205pt;}
.wsbc{word-spacing:0.478208pt;}
.ws9c{word-spacing:0.526029pt;}
.ws31{word-spacing:0.531339pt;}
.wsd7{word-spacing:0.573850pt;}
.wsa9{word-spacing:0.621670pt;}
.ws55{word-spacing:0.624949pt;}
.ws37{word-spacing:0.637606pt;}
.wsec{word-spacing:0.669491pt;}
.ws9e{word-spacing:0.717312pt;}
.ws6b{word-spacing:0.743874pt;}
.wse7{word-spacing:0.765133pt;}
.ws24{word-spacing:0.797008pt;}
.ws7f{word-spacing:0.850142pt;}
.wsed{word-spacing:0.860774pt;}
.ws2f{word-spacing:0.903276pt;}
.wsa4{word-spacing:0.908595pt;}
.ws45{word-spacing:0.956410pt;}
.wscc{word-spacing:0.956416pt;}
.wsab{word-spacing:1.004237pt;}
.ws44{word-spacing:1.009543pt;}
.wsbe{word-spacing:1.099878pt;}
.ws28{word-spacing:1.115811pt;}
.ws1a{word-spacing:1.168945pt;}
.ws64{word-spacing:1.275213pt;}
.ws66{word-spacing:1.328347pt;}
.wsee{word-spacing:1.386803pt;}
.ws5e{word-spacing:1.434614pt;}
.wsff{word-spacing:1.482445pt;}
.ws84{word-spacing:1.487748pt;}
.ws7c{word-spacing:1.540882pt;}
.wsb0{word-spacing:1.625907pt;}
.ws7a{word-spacing:1.700284pt;}
.ws68{word-spacing:1.753418pt;}
.ws79{word-spacing:1.806551pt;}
.ws77{word-spacing:1.859685pt;}
.ws81{word-spacing:1.912819pt;}
.ws7e{word-spacing:1.965953pt;}
.ws71{word-spacing:2.019087pt;}
.ws73{word-spacing:2.031485pt;}
.wsb3{word-spacing:2.056294pt;}
.ws58{word-spacing:2.072221pt;}
.ws102{word-spacing:2.104115pt;}
.ws53{word-spacing:2.125355pt;}
.wsdf{word-spacing:2.151936pt;}
.ws3d{word-spacing:2.191787pt;}
.ws67{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws6e{word-spacing:2.284756pt;}
.wsea{word-spacing:2.295398pt;}
.wsf6{word-spacing:2.343219pt;}
.wsd0{word-spacing:2.438861pt;}
.ws33{word-spacing:2.444158pt;}
.wsfb{word-spacing:2.486682pt;}
.ws69{word-spacing:2.497292pt;}
.ws36{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.ws56{word-spacing:2.656693pt;}
.ws1e{word-spacing:2.762961pt;}
.wse1{word-spacing:2.773606pt;}
.ws42{word-spacing:2.816095pt;}
.ws9f{word-spacing:2.821427pt;}
.wsd8{word-spacing:2.860544pt;}
.ws104{word-spacing:2.861841pt;}
.wsf4{word-spacing:2.862729pt;}
.wsa6{word-spacing:2.863505pt;}
.wsef{word-spacing:2.865459pt;}
.wsb4{word-spacing:2.865690pt;}
.wsfd{word-spacing:2.866406pt;}
.ws96{word-spacing:2.866509pt;}
.ws88{word-spacing:2.869229pt;}
.wsa3{word-spacing:2.869248pt;}
.ws52{word-spacing:2.922363pt;}
.wsb5{word-spacing:2.964890pt;}
.wsc3{word-spacing:3.012710pt;}
.wse8{word-spacing:3.060531pt;}
.ws89{word-spacing:3.081764pt;}
.wsd2{word-spacing:3.108352pt;}
.ws18{word-spacing:3.188032pt;}
.wsc0{word-spacing:3.203994pt;}
.wsb7{word-spacing:3.251814pt;}
.ws2d{word-spacing:3.294300pt;}
.ws47{word-spacing:3.347434pt;}
.ws27{word-spacing:3.400567pt;}
.wsfa{word-spacing:3.443098pt;}
.ws60{word-spacing:3.506835pt;}
.wsdc{word-spacing:3.538739pt;}
.wscf{word-spacing:3.586560pt;}
.ws59{word-spacing:3.613103pt;}
.ws3e{word-spacing:3.666237pt;}
.wsc1{word-spacing:3.682202pt;}
.ws106{word-spacing:3.777843pt;}
.ws40{word-spacing:3.825638pt;}
.ws61{word-spacing:3.878772pt;}
.ws41{word-spacing:3.931906pt;}
.wsf7{word-spacing:4.016947pt;}
.ws105{word-spacing:4.112589pt;}
.wsa{word-spacing:4.240070pt;}
.ws9b{word-spacing:4.256051pt;}
.wsb{word-spacing:4.314458pt;}
.ws85{word-spacing:4.410111pt;}
.ws8d{word-spacing:4.569513pt;}
.ws5d{word-spacing:4.622646pt;}
.ws86{word-spacing:4.675780pt;}
.ws4d{word-spacing:4.728914pt;}
.wsd3{word-spacing:4.782080pt;}
.ws22{word-spacing:4.835182pt;}
.wsf3{word-spacing:4.877722pt;}
.ws38{word-spacing:4.888316pt;}
.ws76{word-spacing:4.994583pt;}
.wsf9{word-spacing:5.069005pt;}
.ws35{word-spacing:5.153985pt;}
.ws7d{word-spacing:5.207119pt;}
.ws70{word-spacing:5.260253pt;}
.ws25{word-spacing:5.419654pt;}
.ws4c{word-spacing:5.525922pt;}
.ws26{word-spacing:5.579056pt;}
.ws48{word-spacing:5.685324pt;}
.ws6d{word-spacing:5.791591pt;}
.ws6c{word-spacing:5.844725pt;}
.wsc4{word-spacing:5.881958pt;}
.ws62{word-spacing:6.269796pt;}
.ws8e{word-spacing:6.429198pt;}
.ws94{word-spacing:6.482332pt;}
.ws63{word-spacing:6.801135pt;}
.ws6f{word-spacing:6.854269pt;}
.ws8{word-spacing:6.918010pt;}
.ws8b{word-spacing:6.960537pt;}
.ws78{word-spacing:7.013670pt;}
.wse9{word-spacing:7.316582pt;}
.ws75{word-spacing:7.385607pt;}
.ws5f{word-spacing:7.916946pt;}
.ws7b{word-spacing:8.713954pt;}
.ws83{word-spacing:9.032757pt;}
.ws2{word-spacing:9.264454pt;}
.wse4{word-spacing:9.420698pt;}
.ws2b{word-spacing:10.587389pt;}
.ws6{word-spacing:10.823338pt;}
.wsd4{word-spacing:11.668275pt;}
.wscb{word-spacing:11.716096pt;}
.wsb2{word-spacing:11.763917pt;}
.wsa2{word-spacing:11.811738pt;}
.wsde{word-spacing:11.859558pt;}
.wsbb{word-spacing:11.899247pt;}
.wsfc{word-spacing:11.900809pt;}
.wsc8{word-spacing:11.901474pt;}
.wsbd{word-spacing:11.901534pt;}
.wsf2{word-spacing:11.901645pt;}
.wsf1{word-spacing:11.903573pt;}
.wsae{word-spacing:11.903633pt;}
.wsc5{word-spacing:11.904299pt;}
.wsbf{word-spacing:11.904870pt;}
.wsa0{word-spacing:11.905323pt;}
.ws97{word-spacing:11.907379pt;}
.ws43{word-spacing:12.061388pt;}
.ws99{word-spacing:12.098662pt;}
.wse3{word-spacing:12.146483pt;}
.ws9d{word-spacing:12.433408pt;}
.wscd{word-spacing:12.863795pt;}
.ws4f{word-spacing:12.912492pt;}
.ws49{word-spacing:13.073913pt;}
.ws51{word-spacing:13.130167pt;}
.ws3f{word-spacing:13.319469pt;}
.ws4b{word-spacing:13.359272pt;}
.ws54{word-spacing:14.070003pt;}
.ws7{word-spacing:14.319536pt;}
.wsd1{word-spacing:14.346240pt;}
.wsaf{word-spacing:14.728806pt;}
.wsce{word-spacing:14.768555pt;}
.wseb{word-spacing:14.769220pt;}
.wsfe{word-spacing:14.770432pt;}
.wsc7{word-spacing:14.770697pt;}
.wsc9{word-spacing:14.771089pt;}
.wsc2{word-spacing:14.771405pt;}
.wsb6{word-spacing:14.772096pt;}
.wsca{word-spacing:14.772847pt;}
.wsc6{word-spacing:14.773649pt;}
.wsda{word-spacing:14.773794pt;}
.wsd5{word-spacing:14.774554pt;}
.wse6{word-spacing:14.774699pt;}
.wsd6{word-spacing:14.776508pt;}
.wsaa{word-spacing:14.776627pt;}
.ws100{word-spacing:14.824448pt;}
.wsf5{word-spacing:14.920090pt;}
.wsb9{word-spacing:15.207014pt;}
.ws74{word-spacing:15.268657pt;}
.ws72{word-spacing:15.269269pt;}
.wsdd{word-spacing:15.446118pt;}
.ws34{word-spacing:16.418365pt;}
.wsa8{word-spacing:16.498176pt;}
.wse5{word-spacing:18.171904pt;}
.ws39{word-spacing:18.278050pt;}
.wse0{word-spacing:21.662822pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
.wsf8{word-spacing:27.257856pt;}
._20{margin-left:-6.902158pt;}
._6{margin-left:-5.483429pt;}
._7{margin-left:-3.917809pt;}
._d{margin-left:-2.539803pt;}
._0{margin-left:-1.338970pt;}
._19{width:1.020160pt;}
._5{width:2.663745pt;}
._1b{width:3.579927pt;}
._1c{width:5.647680pt;}
._1d{width:6.717403pt;}
._22{width:9.798042pt;}
._1{width:10.860531pt;}
._12{width:12.231412pt;}
._9{width:13.581107pt;}
._8{width:14.920090pt;}
._b{width:15.950783pt;}
._f{width:17.603328pt;}
._23{width:18.501742pt;}
._c{width:19.393861pt;}
._a{width:20.403405pt;}
._15{width:21.997421pt;}
._2{width:23.057899pt;}
._16{width:23.973997pt;}
._13{width:25.663658pt;}
._3{width:27.188522pt;}
._4{width:29.648896pt;}
._18{width:31.827186pt;}
._e{width:33.208667pt;}
._17{width:34.377612pt;}
._14{width:35.759092pt;}
._1f{width:54.993920pt;}
._1e{width:78.904320pt;}
._10{width:885.125762pt;}
._1a{width:1935.813333pt;}
._21{width:2282.738400pt;}
._11{width:2303.991733pt;}
.fs6{font-size:31.880533pt;}
.fs2{font-size:36.956480pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs7{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs8{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs4{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.yf2{bottom:-457.666667pt;}
.y10b{bottom:-397.746667pt;}
.y10a{bottom:-370.466667pt;}
.y109{bottom:-347.106667pt;}
.y108{bottom:-323.746667pt;}
.y107{bottom:-300.306667pt;}
.y106{bottom:-284.866667pt;}
.y105{bottom:-269.480000pt;}
.y104{bottom:-237.800000pt;}
.y103{bottom:-220.680000pt;}
.y102{bottom:-203.640000pt;}
.y101{bottom:-186.520000pt;}
.y100{bottom:-169.400000pt;}
.yff{bottom:-152.360000pt;}
.yfe{bottom:-135.240000pt;}
.yfd{bottom:-118.200000pt;}
.yfc{bottom:-101.080000pt;}
.yfb{bottom:-83.960000pt;}
.yfa{bottom:-62.920000pt;}
.yf9{bottom:-30.200000pt;}
.yf8{bottom:-14.760000pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:5.160000pt;}
.y18{bottom:8.511413pt;}
.y15{bottom:14.008270pt;}
.y17{bottom:19.597349pt;}
.y45{bottom:28.346667pt;}
.y16{bottom:30.685637pt;}
.yc9{bottom:90.898667pt;}
.y15c{bottom:92.892000pt;}
.y13{bottom:93.018667pt;}
.y79{bottom:94.485333pt;}
.y123{bottom:96.582667pt;}
.yc8{bottom:107.636000pt;}
.y15b{bottom:108.233333pt;}
.y12{bottom:108.920000pt;}
.y78{bottom:111.222667pt;}
.y122{bottom:111.925333pt;}
.y98{bottom:112.020000pt;}
.y44{bottom:114.093333pt;}
.y15a{bottom:123.576000pt;}
.yc7{bottom:124.373333pt;}
.y11{bottom:124.820000pt;}
.y121{bottom:127.268000pt;}
.y97{bottom:128.757333pt;}
.y43{bottom:130.830667pt;}
.y77{bottom:131.945333pt;}
.y159{bottom:138.918667pt;}
.y10{bottom:140.720000pt;}
.yc6{bottom:141.110667pt;}
.y120{bottom:142.610667pt;}
.y96{bottom:145.494667pt;}
.y42{bottom:147.568000pt;}
.y158{bottom:154.261333pt;}
.yf{bottom:156.621333pt;}
.yc5{bottom:157.848000pt;}
.y76{bottom:161.833333pt;}
.y11f{bottom:161.938667pt;}
.y95{bottom:162.232000pt;}
.y41{bottom:164.305333pt;}
.y157{bottom:169.604000pt;}
.ye{bottom:172.521333pt;}
.y75{bottom:178.570667pt;}
.y94{bottom:178.969333pt;}
.y40{bottom:181.042667pt;}
.y156{bottom:184.946667pt;}
.yd{bottom:188.421333pt;}
.y11e{bottom:191.826667pt;}
.y74{bottom:195.308000pt;}
.y93{bottom:195.706667pt;}
.y3f{bottom:197.780000pt;}
.y155{bottom:200.289333pt;}
.yc{bottom:204.322667pt;}
.yc4{bottom:208.458667pt;}
.yee{bottom:208.857333pt;}
.y73{bottom:212.045333pt;}
.y92{bottom:212.444000pt;}
.y3e{bottom:214.517333pt;}
.y11d{bottom:215.417333pt;}
.y154{bottom:215.632000pt;}
.yc3{bottom:225.196000pt;}
.yed{bottom:225.594667pt;}
.y72{bottom:228.782667pt;}
.y91{bottom:229.181333pt;}
.y153{bottom:230.974667pt;}
.y3d{bottom:231.254667pt;}
.y11c{bottom:239.009333pt;}
.yc2{bottom:241.933333pt;}
.yec{bottom:242.332000pt;}
.y71{bottom:245.520000pt;}
.y90{bottom:245.918667pt;}
.y152{bottom:246.316000pt;}
.y3c{bottom:247.992000pt;}
.yc1{bottom:258.670667pt;}
.yeb{bottom:259.069333pt;}
.y151{bottom:261.658667pt;}
.y70{bottom:262.257333pt;}
.y11b{bottom:262.601333pt;}
.y8f{bottom:262.656000pt;}
.y3b{bottom:264.729333pt;}
.yb{bottom:266.570667pt;}
.yc0{bottom:275.408000pt;}
.yea{bottom:275.806667pt;}
.y150{bottom:277.001333pt;}
.y11a{bottom:278.222667pt;}
.y6f{bottom:278.994667pt;}
.y8e{bottom:279.393333pt;}
.y3a{bottom:281.466667pt;}
.ya{bottom:282.470667pt;}
.ybf{bottom:292.145333pt;}
.y14f{bottom:292.344000pt;}
.ye9{bottom:292.544000pt;}
.y119{bottom:293.844000pt;}
.y6e{bottom:295.732000pt;}
.y8d{bottom:296.129333pt;}
.y39{bottom:298.204000pt;}
.y9{bottom:298.370667pt;}
.y14e{bottom:307.686667pt;}
.ybe{bottom:308.882667pt;}
.ye8{bottom:309.280000pt;}
.y6d{bottom:312.469333pt;}
.y8c{bottom:312.866667pt;}
.y8{bottom:314.272000pt;}
.y38{bottom:314.941333pt;}
.y14d{bottom:323.029333pt;}
.y118{bottom:325.405333pt;}
.ybd{bottom:325.620000pt;}
.ye7{bottom:326.017333pt;}
.y6c{bottom:329.206667pt;}
.y8b{bottom:329.604000pt;}
.y37{bottom:331.678667pt;}
.y14c{bottom:338.372000pt;}
.y7{bottom:339.470667pt;}
.y117{bottom:342.142667pt;}
.ybc{bottom:342.357333pt;}
.ye6{bottom:342.754667pt;}
.y6b{bottom:345.944000pt;}
.y8a{bottom:346.341333pt;}
.y36{bottom:348.416000pt;}
.y14b{bottom:353.714667pt;}
.y116{bottom:358.880000pt;}
.ybb{bottom:359.094667pt;}
.ye5{bottom:359.492000pt;}
.y6a{bottom:362.680000pt;}
.y89{bottom:363.078667pt;}
.y6{bottom:363.341333pt;}
.y35{bottom:365.153333pt;}
.y14a{bottom:369.056000pt;}
.y115{bottom:375.617333pt;}
.yba{bottom:375.832000pt;}
.ye4{bottom:376.229333pt;}
.y5{bottom:379.241333pt;}
.y69{bottom:379.417333pt;}
.y88{bottom:379.816000pt;}
.y34{bottom:381.890667pt;}
.y149{bottom:384.398667pt;}
.y114{bottom:392.354667pt;}
.yb9{bottom:392.568000pt;}
.ye3{bottom:392.966667pt;}
.y4{bottom:395.141333pt;}
.y68{bottom:396.154667pt;}
.y87{bottom:396.553333pt;}
.y33{bottom:398.628000pt;}
.y148{bottom:399.741333pt;}
.y113{bottom:409.092000pt;}
.yb8{bottom:409.305333pt;}
.ye2{bottom:409.704000pt;}
.y3{bottom:411.042667pt;}
.y67{bottom:412.892000pt;}
.y86{bottom:413.290667pt;}
.y147{bottom:415.084000pt;}
.y32{bottom:415.365333pt;}
.y112{bottom:425.829333pt;}
.yb7{bottom:426.042667pt;}
.ye1{bottom:426.441333pt;}
.y2{bottom:426.942667pt;}
.y66{bottom:429.629333pt;}
.y85{bottom:430.028000pt;}
.y146{bottom:430.426667pt;}
.y31{bottom:432.102667pt;}
.y111{bottom:442.566667pt;}
.yb6{bottom:442.780000pt;}
.y1{bottom:442.842667pt;}
.ye0{bottom:443.178667pt;}
.y145{bottom:445.769333pt;}
.y65{bottom:446.366667pt;}
.y84{bottom:446.765333pt;}
.y30{bottom:448.840000pt;}
.yf6{bottom:450.546667pt;}
.y110{bottom:459.304000pt;}
.yb5{bottom:459.517333pt;}
.ydf{bottom:459.916000pt;}
.y144{bottom:461.112000pt;}
.y64{bottom:463.104000pt;}
.y83{bottom:463.502667pt;}
.y2f{bottom:465.577333pt;}
.yf5{bottom:467.693333pt;}
.y10f{bottom:476.041333pt;}
.yb4{bottom:476.254667pt;}
.y143{bottom:476.454667pt;}
.yde{bottom:476.653333pt;}
.y63{bottom:479.841333pt;}
.y82{bottom:480.240000pt;}
.yf4{bottom:484.813333pt;}
.y2e{bottom:486.298667pt;}
.y142{bottom:491.797333pt;}
.yb3{bottom:492.992000pt;}
.ydd{bottom:493.390667pt;}
.y62{bottom:496.578667pt;}
.y10e{bottom:496.764000pt;}
.y81{bottom:496.977333pt;}
.yf3{bottom:501.853333pt;}
.y141{bottom:507.138667pt;}
.yb2{bottom:509.729333pt;}
.ydc{bottom:510.128000pt;}
.y61{bottom:513.316000pt;}
.y80{bottom:513.714667pt;}
.y140{bottom:522.481333pt;}
.y10d{bottom:523.809333pt;}
.yb1{bottom:526.466667pt;}
.ydb{bottom:526.865333pt;}
.y7f{bottom:530.452000pt;}
.y60{bottom:534.038667pt;}
.y13f{bottom:537.824000pt;}
.y10c{bottom:540.905333pt;}
.yb0{bottom:543.204000pt;}
.yda{bottom:543.602667pt;}
.y7e{bottom:547.189333pt;}
.yf1{bottom:550.493333pt;}
.y2d{bottom:553.100000pt;}
.y13e{bottom:553.166667pt;}
.yf0{bottom:559.053333pt;}
.yd9{bottom:560.340000pt;}
.yef{bottom:560.842667pt;}
.y5f{bottom:563.926667pt;}
.y13d{bottom:568.509333pt;}
.yd8{bottom:577.077333pt;}
.y5e{bottom:580.664000pt;}
.y13c{bottom:583.852000pt;}
.y2c{bottom:586.334667pt;}
.yaf{bottom:593.814667pt;}
.y5d{bottom:597.401333pt;}
.y13b{bottom:599.194667pt;}
.y2b{bottom:603.629333pt;}
.yae{bottom:610.552000pt;}
.y5c{bottom:614.138667pt;}
.y13a{bottom:614.537333pt;}
.y2a{bottom:620.925333pt;}
.yad{bottom:627.289333pt;}
.y139{bottom:629.878667pt;}
.y5b{bottom:630.876000pt;}
.y29{bottom:638.220000pt;}
.yac{bottom:644.026667pt;}
.y138{bottom:645.221333pt;}
.y7d{bottom:647.613333pt;}
.y5a{bottom:651.597333pt;}
.y28{bottom:655.516000pt;}
.y137{bottom:660.564000pt;}
.yab{bottom:660.764000pt;}
.y7c{bottom:664.350667pt;}
.y27{bottom:672.810667pt;}
.y136{bottom:675.906667pt;}
.yaa{bottom:677.501333pt;}
.y7b{bottom:681.088000pt;}
.y59{bottom:681.485333pt;}
.y26{bottom:690.105333pt;}
.y135{bottom:691.249333pt;}
.ya9{bottom:694.238667pt;}
.yd7{bottom:697.825333pt;}
.y58{bottom:698.222667pt;}
.y7a{bottom:701.809333pt;}
.y15f{bottom:702.540000pt;}
.y134{bottom:706.592000pt;}
.y25{bottom:707.401333pt;}
.ya8{bottom:710.976000pt;}
.yd6{bottom:714.562667pt;}
.y57{bottom:714.960000pt;}
.y15e{bottom:717.882667pt;}
.y133{bottom:721.934667pt;}
.y24{bottom:724.696000pt;}
.ya7{bottom:727.713333pt;}
.yd5{bottom:731.300000pt;}
.y56{bottom:731.697333pt;}
.y15d{bottom:733.225333pt;}
.y132{bottom:737.277333pt;}
.ya6{bottom:744.450667pt;}
.yd4{bottom:748.036000pt;}
.y55{bottom:748.434667pt;}
.y131{bottom:752.620000pt;}
.y23{bottom:758.994667pt;}
.ya5{bottom:761.186667pt;}
.yd3{bottom:764.773333pt;}
.y54{bottom:765.172000pt;}
.y130{bottom:767.961333pt;}
.y22{bottom:773.340000pt;}
.ya4{bottom:777.924000pt;}
.yd2{bottom:781.510667pt;}
.y53{bottom:781.909333pt;}
.y12f{bottom:783.304000pt;}
.y21{bottom:791.544000pt;}
.ya3{bottom:794.661333pt;}
.yd1{bottom:798.248000pt;}
.y52{bottom:798.646667pt;}
.y20{bottom:805.890667pt;}
.ya2{bottom:811.398667pt;}
.y12e{bottom:813.989333pt;}
.yd0{bottom:814.985333pt;}
.y51{bottom:815.384000pt;}
.y1f{bottom:816.378667pt;}
.ya1{bottom:828.136000pt;}
.y12d{bottom:829.332000pt;}
.y1e{bottom:830.725333pt;}
.ycf{bottom:831.722667pt;}
.y50{bottom:832.121333pt;}
.y12c{bottom:844.674667pt;}
.ya0{bottom:844.873333pt;}
.yce{bottom:848.460000pt;}
.y4f{bottom:848.858667pt;}
.y1d{bottom:848.929333pt;}
.y12b{bottom:860.017333pt;}
.y9f{bottom:861.610667pt;}
.ycd{bottom:865.197333pt;}
.y4e{bottom:865.596000pt;}
.y12a{bottom:875.360000pt;}
.y9e{bottom:878.348000pt;}
.ycc{bottom:881.934667pt;}
.y4d{bottom:882.333333pt;}
.y1c{bottom:888.641333pt;}
.y129{bottom:890.702667pt;}
.y9d{bottom:895.085333pt;}
.ycb{bottom:898.672000pt;}
.y4c{bottom:899.070667pt;}
.y128{bottom:906.044000pt;}
.y9c{bottom:911.822667pt;}
.y4b{bottom:915.808000pt;}
.yca{bottom:919.394667pt;}
.y1b{bottom:921.320000pt;}
.y127{bottom:921.386667pt;}
.y9b{bottom:928.560000pt;}
.y4a{bottom:932.545333pt;}
.y126{bottom:936.729333pt;}
.y9a{bottom:945.297333pt;}
.y1a{bottom:946.425333pt;}
.y49{bottom:949.282667pt;}
.y125{bottom:952.072000pt;}
.y99{bottom:962.034667pt;}
.y48{bottom:966.020000pt;}
.y124{bottom:967.414667pt;}
.y19{bottom:971.530667pt;}
.y47{bottom:982.757333pt;}
.y14{bottom:1010.186667pt;}
.y46{bottom:1038.548000pt;}
.h9{height:27.672303pt;}
.h5{height:29.010837pt;}
.h2{height:32.284045pt;}
.h16{height:33.378918pt;}
.hc{height:34.430976pt;}
.hb{height:36.896250pt;}
.he{height:38.256384pt;}
.ha{height:38.809074pt;}
.h6{height:38.947124pt;}
.h14{height:39.349375pt;}
.h11{height:39.359687pt;}
.hd{height:41.508454pt;}
.h15{height:43.660390pt;}
.h13{height:44.390625pt;}
.h3{height:45.271688pt;}
.hf{height:46.120196pt;}
.h8{height:48.365611pt;}
.h12{height:49.421563pt;}
.h7{height:68.861952pt;}
.h4{height:83.992000pt;}
.h10{height:435.198667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:131.667539pt;}
.w3{width:431.708000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x92{left:-165.526667pt;}
.x0{left:0.000000pt;}
.x3{left:2.099800pt;}
.x93{left:8.340000pt;}
.x95{left:36.660000pt;}
.x1{left:47.621333pt;}
.x2{left:53.285701pt;}
.x97{left:76.309333pt;}
.xa9{left:120.948000pt;}
.xaa{left:128.869333pt;}
.xb3{left:211.989333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x5{left:239.924000pt;}
.x9{left:250.204000pt;}
.x6e{left:258.540000pt;}
.x81{left:259.837333pt;}
.x16{left:260.840000pt;}
.x8c{left:264.536000pt;}
.x17{left:267.481333pt;}
.x6f{left:271.822667pt;}
.x82{left:273.121333pt;}
.x7{left:274.217333pt;}
.x65{left:276.249333pt;}
.x8d{left:277.820000pt;}
.x4d{left:279.536000pt;}
.x8b{left:282.080000pt;}
.x8{left:284.346667pt;}
.x5a{left:290.246667pt;}
.x4e{left:292.820000pt;}
.x49{left:295.893333pt;}
.x73{left:299.220000pt;}
.x5b{left:303.529333pt;}
.x55{left:305.961333pt;}
.x4b{left:307.758667pt;}
.x4a{left:309.177333pt;}
.x74{left:312.502667pt;}
.x7d{left:315.645333pt;}
.x4c{left:321.042667pt;}
.x6a{left:324.621333pt;}
.x7e{left:328.929333pt;}
.x6b{left:337.905333pt;}
.x6c{left:341.176000pt;}
.x96{left:347.338667pt;}
.x6d{left:354.460000pt;}
.x22{left:388.600000pt;}
.x14{left:390.464000pt;}
.x15{left:397.105333pt;}
.x23{left:401.884000pt;}
.x31{left:404.074667pt;}
.x24{left:408.393333pt;}
.x4f{left:409.405333pt;}
.x43{left:415.556000pt;}
.x83{left:418.826667pt;}
.x25{left:421.676000pt;}
.x50{left:422.688000pt;}
.x94{left:425.673333pt;}
.x44{left:428.840000pt;}
.x84{left:432.110667pt;}
.x3f{left:433.768000pt;}
.x47{left:437.084000pt;}
.x80{left:442.989333pt;}
.x71{left:444.676000pt;}
.x40{left:447.050667pt;}
.x48{left:450.368000pt;}
.x60{left:451.760000pt;}
.x68{left:452.877333pt;}
.x53{left:454.709333pt;}
.x66{left:456.982667pt;}
.x72{left:457.958667pt;}
.x51{left:458.940000pt;}
.x61{left:465.044000pt;}
.x12{left:466.670667pt;}
.x54{left:467.992000pt;}
.x67{left:470.266667pt;}
.x52{left:472.224000pt;}
.x13{left:473.312000pt;}
.x58{left:478.358667pt;}
.x69{left:482.784000pt;}
.x59{left:491.642667pt;}
.xa{left:502.950667pt;}
.x7a{left:505.980000pt;}
.xb{left:509.592000pt;}
.xc{left:512.980000pt;}
.x41{left:516.116000pt;}
.xd{left:519.621333pt;}
.x7b{left:522.634667pt;}
.x7f{left:523.809333pt;}
.x18{left:526.428000pt;}
.x42{left:529.398667pt;}
.x87{left:531.574667pt;}
.x1b{left:533.133333pt;}
.x7c{left:535.918667pt;}
.x26{left:537.817333pt;}
.x70{left:542.008000pt;}
.x88{left:544.857333pt;}
.x1c{left:546.417333pt;}
.x89{left:548.245333pt;}
.x27{left:551.101333pt;}
.x2e{left:554.901333pt;}
.x8a{left:561.528000pt;}
.x77{left:562.748000pt;}
.x3b{left:563.745333pt;}
.x56{left:565.889333pt;}
.x75{left:567.109333pt;}
.x2f{left:568.185333pt;}
.xab{left:570.812000pt;}
.x5e{left:573.896000pt;}
.x78{left:576.030667pt;}
.x3c{left:577.029333pt;}
.x57{left:579.173333pt;}
.x76{left:580.392000pt;}
.x8e{left:581.458667pt;}
.x63{left:583.090667pt;}
.x5f{left:587.178667pt;}
.x9e{left:589.549333pt;}
.x62{left:591.101333pt;}
.x8f{left:594.742667pt;}
.x64{left:596.374667pt;}
.x90{left:598.106667pt;}
.x98{left:599.164000pt;}
.x3d{left:600.158667pt;}
.x5c{left:607.084000pt;}
.x85{left:609.053333pt;}
.x91{left:611.389333pt;}
.x3e{left:613.442667pt;}
.x19{left:617.681333pt;}
.x5d{left:620.368000pt;}
.x86{left:622.337333pt;}
.xae{left:624.844000pt;}
.x37{left:626.030667pt;}
.x1a{left:630.965333pt;}
.x79{left:633.177333pt;}
.xa0{left:636.116000pt;}
.x38{left:639.314667pt;}
.x39{left:642.588000pt;}
.x1d{left:644.052000pt;}
.x1e{left:647.432000pt;}
.xb0{left:651.174667pt;}
.x9c{left:653.454667pt;}
.x3a{left:655.872000pt;}
.xa8{left:658.457333pt;}
.x1f{left:660.716000pt;}
.xa4{left:665.768000pt;}
.x2a{left:667.965333pt;}
.x45{left:669.533333pt;}
.x99{left:671.221333pt;}
.xaf{left:672.390667pt;}
.xad{left:673.404000pt;}
.xb1{left:675.085333pt;}
.x9d{left:677.364000pt;}
.xa1{left:678.845333pt;}
.x2b{left:681.248000pt;}
.x46{left:682.816000pt;}
.x2c{left:684.636000pt;}
.x20{left:685.960000pt;}
.x32{left:688.913333pt;}
.xa6{left:691.656000pt;}
.x36{left:695.368000pt;}
.x9a{left:696.328000pt;}
.x2d{left:697.920000pt;}
.x21{left:699.244000pt;}
.xa3{left:700.486667pt;}
.x33{left:702.196000pt;}
.xb2{left:703.336000pt;}
.xac{left:707.712000pt;}
.x34{left:708.705333pt;}
.x10{left:709.833333pt;}
.x30{left:711.560000pt;}
.xa7{left:715.566667pt;}
.x11{left:716.476000pt;}
.x9b{left:720.238667pt;}
.x35{left:721.989333pt;}
.x28{left:723.661333pt;}
.xa5{left:724.710667pt;}
.x29{left:726.940000pt;}
.xa2{left:732.116000pt;}
.xe{left:733.717333pt;}
.xf{left:740.358667pt;}
.x9f{left:744.188000pt;}
}




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