
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_03585fd99e9fb09582c3b5f4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1e04c3a05cc8515a95de9a29.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;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_51223f120bfc6c08f93e01b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_91a7f9b92cf822461df5a0d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.638000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_82089e35b9c224b36c0304dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;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_db3ea66b6b7f6f83e525a78a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e1829550b24a9c8fb7f1b967.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f6ca13e007e09d714ef60c50.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m3{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);}
.m1{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);}
.m25{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);}
.m10{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);}
.m4{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);}
.m15{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);}
.m28{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);}
.m1e{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);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m27{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);}
.m16{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);}
.m29{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);}
.m1d{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);}
.m12{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);}
.me{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);}
.m18{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);}
.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);}
.m1f{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);}
.m9{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);}
.m1a{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);}
.m21{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);}
.m5{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);}
.m14{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);}
.m1c{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);}
.m19{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);}
.m17{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);}
.m20{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);}
.m26{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);}
.m22{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);}
.m7{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);}
.m8{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.mf{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.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls9{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000676px;}
.ls19{letter-spacing:0.000800px;}
.ls20{letter-spacing:0.000959px;}
.ls2c{letter-spacing:0.001036px;}
.ls25{letter-spacing:0.001155px;}
.ls26{letter-spacing:0.002460px;}
.ls17{letter-spacing:0.002544px;}
.ls22{letter-spacing:0.003021px;}
.ls1d{letter-spacing:0.003544px;}
.ls2d{letter-spacing:0.003965px;}
.lsf{letter-spacing:0.004800px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.998354px;}
.ls1{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls2b{letter-spacing:12.296180px;}
.ls28{letter-spacing:12.733886px;}
.ls1a{letter-spacing:12.991576px;}
.ls1c{letter-spacing:13.270164px;}
.ls24{letter-spacing:13.348819px;}
.lse{letter-spacing:13.368672px;}
.ls13{letter-spacing:13.398161px;}
.ls16{letter-spacing:13.410101px;}
.lsc{letter-spacing:13.448400px;}
.ls1b{letter-spacing:13.448806px;}
.ls2a{letter-spacing:13.452441px;}
.ls11{letter-spacing:13.454400px;}
.ls1f{letter-spacing:13.508316px;}
.ls15{letter-spacing:13.571677px;}
.ls27{letter-spacing:13.653848px;}
.ls29{letter-spacing:13.672351px;}
.ls12{letter-spacing:13.678971px;}
.ls14{letter-spacing:13.697040px;}
.lsa{letter-spacing:14.094088px;}
.lsb{letter-spacing:14.100088px;}
.ls4{letter-spacing:14.944200px;}
.ls23{letter-spacing:15.226871px;}
.lsd{letter-spacing:15.897459px;}
.ls21{letter-spacing:17.862165px;}
.ls18{letter-spacing:18.026871px;}
.ls10{letter-spacing:19.073929px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.ws12{word-spacing:-14.943900px;}
.ws11{word-spacing:-14.355754px;}
.ws43{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws15{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws83{word-spacing:-3.048556px;}
.wsaa{word-spacing:-2.869229px;}
.ws1d{word-spacing:-2.689920px;}
.ws8b{word-spacing:-2.689902px;}
.ws96{word-spacing:-2.570351px;}
.wsac{word-spacing:-2.391024px;}
.wsf8{word-spacing:-2.367130px;}
.wsa0{word-spacing:-2.331248px;}
.wsad{word-spacing:-2.211697px;}
.ws10c{word-spacing:-2.205734px;}
.ws66{word-spacing:-2.032370px;}
.ws1{word-spacing:-1.908367px;}
.wsaf{word-spacing:-1.853044px;}
.ws8c{word-spacing:-1.673717px;}
.ws102{word-spacing:-1.667750px;}
.wsc8{word-spacing:-1.613952px;}
.ws86{word-spacing:-1.554166px;}
.wsb7{word-spacing:-1.506355px;}
.ws79{word-spacing:-1.434614px;}
.ws3e{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws9c{word-spacing:-1.315063px;}
.ws81{word-spacing:-1.255288px;}
.ws65{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws7b{word-spacing:-1.135736px;}
.wsf9{word-spacing:-1.129766px;}
.ws22{word-spacing:-1.075968px;}
.wsa1{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws76{word-spacing:-1.016185px;}
.wsa2{word-spacing:-0.956410px;}
.ws63{word-spacing:-0.896634px;}
.ws75{word-spacing:-0.836858px;}
.ws78{word-spacing:-0.777083px;}
.wsb6{word-spacing:-0.753178px;}
.ws3f{word-spacing:-0.717307px;}
.wsb5{word-spacing:-0.699379px;}
.ws7a{word-spacing:-0.657532px;}
.wsff{word-spacing:-0.645581px;}
.ws50{word-spacing:-0.597756px;}
.wsfe{word-spacing:-0.591782px;}
.ws8d{word-spacing:-0.537980px;}
.wse3{word-spacing:-0.484186px;}
.wsb2{word-spacing:-0.478205px;}
.wse2{word-spacing:-0.430387px;}
.ws82{word-spacing:-0.418429px;}
.ws34{word-spacing:-0.358654px;}
.wsca{word-spacing:-0.322790px;}
.ws37{word-spacing:-0.298878px;}
.wscd{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.239102px;}
.ws24{word-spacing:-0.215194px;}
.ws4d{word-spacing:-0.179327px;}
.ws1b{word-spacing:-0.161395px;}
.ws3d{word-spacing:-0.119551px;}
.wsbe{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.053798px;}
.wse6{word-spacing:-0.013325px;}
.wse0{word-spacing:-0.010339px;}
.wse7{word-spacing:-0.009725px;}
.ws10d{word-spacing:-0.006941px;}
.ws107{word-spacing:-0.006490px;}
.wseb{word-spacing:-0.005126px;}
.wsc9{word-spacing:-0.004253px;}
.wsf4{word-spacing:-0.004243px;}
.wsbc{word-spacing:-0.004214px;}
.wsd5{word-spacing:-0.003696px;}
.ws101{word-spacing:-0.003370px;}
.ws10{word-spacing:-0.001991px;}
.ws14{word-spacing:-0.001500px;}
.ws3{word-spacing:0.000000px;}
.ws30{word-spacing:0.002285px;}
.ws4{word-spacing:0.002785px;}
.wscb{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.wsb4{word-spacing:0.107597px;}
.ws3c{word-spacing:0.119551px;}
.wsc2{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.ws18{word-spacing:0.215194px;}
.ws35{word-spacing:0.239102px;}
.ws1c{word-spacing:0.268992px;}
.ws38{word-spacing:0.298878px;}
.wsf0{word-spacing:0.322790px;}
.ws36{word-spacing:0.358654px;}
.wsfa{word-spacing:0.376589px;}
.ws60{word-spacing:0.418429px;}
.wse4{word-spacing:0.430387px;}
.ws105{word-spacing:0.484186px;}
.ws4f{word-spacing:0.537980px;}
.ws47{word-spacing:0.597756px;}
.ws28{word-spacing:0.645581px;}
.ws7c{word-spacing:0.657532px;}
.ws6c{word-spacing:0.669101px;}
.ws6e{word-spacing:0.671347px;}
.ws70{word-spacing:0.672000px;}
.ws6f{word-spacing:0.674400px;}
.ws6d{word-spacing:0.674486px;}
.ws104{word-spacing:0.699379px;}
.ws32{word-spacing:0.717307px;}
.ws5a{word-spacing:0.777083px;}
.ws2d{word-spacing:0.836858px;}
.ws85{word-spacing:0.896634px;}
.ws106{word-spacing:0.914573px;}
.wsa9{word-spacing:0.956410px;}
.ws7{word-spacing:1.004227px;}
.ws9f{word-spacing:1.016185px;}
.ws20{word-spacing:1.022170px;}
.ws33{word-spacing:1.075961px;}
.wscf{word-spacing:1.075968px;}
.ws49{word-spacing:1.135736px;}
.ws99{word-spacing:1.255288px;}
.ws1e{word-spacing:1.291162px;}
.ws44{word-spacing:1.315063px;}
.ws19{word-spacing:1.344960px;}
.ws8f{word-spacing:1.374839px;}
.wsb3{word-spacing:1.434614px;}
.wsd3{word-spacing:1.452557px;}
.wsa8{word-spacing:1.494390px;}
.ws89{word-spacing:1.613941px;}
.ws25{word-spacing:1.613952px;}
.ws10b{word-spacing:1.667750px;}
.ws54{word-spacing:1.673717px;}
.wsab{word-spacing:1.733492px;}
.wsfb{word-spacing:1.775347px;}
.ws98{word-spacing:1.853044px;}
.wsb9{word-spacing:1.882944px;}
.ws4a{word-spacing:1.912819px;}
.ws74{word-spacing:1.972595px;}
.ws5f{word-spacing:2.032370px;}
.wsd9{word-spacing:2.044339px;}
.ws2a{word-spacing:2.092146px;}
.ws109{word-spacing:2.098138px;}
.ws5b{word-spacing:2.151922px;}
.ws10a{word-spacing:2.151936px;}
.ws72{word-spacing:2.211697px;}
.ws5d{word-spacing:2.271473px;}
.ws21{word-spacing:2.313331px;}
.ws5e{word-spacing:2.331248px;}
.ws110{word-spacing:2.367130px;}
.ws5c{word-spacing:2.391024px;}
.wsf2{word-spacing:2.420928px;}
.ws90{word-spacing:2.450800px;}
.wsbb{word-spacing:2.474726px;}
.ws2{word-spacing:2.511541px;}
.wsee{word-spacing:2.528525px;}
.ws71{word-spacing:2.570351px;}
.wsd8{word-spacing:2.582323px;}
.ws92{word-spacing:2.630126px;}
.wse1{word-spacing:2.636122px;}
.ws9a{word-spacing:2.689902px;}
.ws1a{word-spacing:2.689920px;}
.ws2e{word-spacing:2.749678px;}
.wsc4{word-spacing:2.797517px;}
.wsa5{word-spacing:2.809453px;}
.wsd0{word-spacing:2.851315px;}
.ws16{word-spacing:2.869236px;}
.wsce{word-spacing:2.905114px;}
.ws53{word-spacing:2.929004px;}
.wsb0{word-spacing:2.988780px;}
.wsa4{word-spacing:3.048556px;}
.ws4c{word-spacing:3.108331px;}
.wsc0{word-spacing:3.120307px;}
.ws95{word-spacing:3.168107px;}
.wsd7{word-spacing:3.174106px;}
.ws100{word-spacing:3.219014px;}
.wsf3{word-spacing:3.219283px;}
.wsdf{word-spacing:3.219629px;}
.wse5{word-spacing:3.220176px;}
.wsf7{word-spacing:3.220829px;}
.wsf5{word-spacing:3.221251px;}
.wse9{word-spacing:3.221578px;}
.wsbf{word-spacing:3.221770px;}
.wsdb{word-spacing:3.221971px;}
.wsd4{word-spacing:3.222269px;}
.wse8{word-spacing:3.223171px;}
.wsd2{word-spacing:3.223430px;}
.ws103{word-spacing:3.223526px;}
.wsc5{word-spacing:3.223661px;}
.wsc1{word-spacing:3.223949px;}
.wsea{word-spacing:3.224563px;}
.ws10f{word-spacing:3.225014px;}
.ws108{word-spacing:3.225245px;}
.wscc{word-spacing:3.225667px;}
.wsd6{word-spacing:3.226493px;}
.wsc3{word-spacing:3.227702px;}
.ws8e{word-spacing:3.227882px;}
.wsbd{word-spacing:3.227904px;}
.wsdc{word-spacing:3.281702px;}
.ws93{word-spacing:3.347434px;}
.ws1f{word-spacing:3.389299px;}
.ws52{word-spacing:3.407209px;}
.ws62{word-spacing:3.466985px;}
.wsda{word-spacing:3.496896px;}
.ws58{word-spacing:3.526760px;}
.ws29{word-spacing:3.586536px;}
.wsdd{word-spacing:3.604493px;}
.ws73{word-spacing:3.646312px;}
.ws55{word-spacing:3.706087px;}
.ws91{word-spacing:3.765863px;}
.wsd1{word-spacing:3.819686px;}
.ws87{word-spacing:3.825638px;}
.ws97{word-spacing:3.885414px;}
.ws10e{word-spacing:3.927283px;}
.ws46{word-spacing:3.945190px;}
.wsec{word-spacing:3.981082px;}
.ws67{word-spacing:4.124516px;}
.ws9d{word-spacing:4.184292px;}
.ws27{word-spacing:4.196275px;}
.ws7f{word-spacing:4.244068px;}
.wsf6{word-spacing:4.411469px;}
.ws94{word-spacing:4.423394px;}
.ws26{word-spacing:4.465267px;}
.ws3a{word-spacing:4.542946px;}
.wsde{word-spacing:4.572864px;}
.ws3b{word-spacing:4.602721px;}
.ws4b{word-spacing:4.662497px;}
.wsf1{word-spacing:4.680461px;}
.wse{word-spacing:4.770079px;}
.ws42{word-spacing:4.782048px;}
.ws41{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.wsb1{word-spacing:4.901599px;}
.wsef{word-spacing:4.949453px;}
.ws4e{word-spacing:4.961375px;}
.ws9b{word-spacing:5.080926px;}
.ws6a{word-spacing:5.110848px;}
.ws69{word-spacing:5.164646px;}
.ws88{word-spacing:5.200477px;}
.ws23{word-spacing:5.272243px;}
.wsb8{word-spacing:5.379840px;}
.ws64{word-spacing:5.439580px;}
.ws7e{word-spacing:5.499355px;}
.ws68{word-spacing:5.541235px;}
.wsc7{word-spacing:5.648832px;}
.ws48{word-spacing:5.678682px;}
.ws9e{word-spacing:5.798233px;}
.ws59{word-spacing:5.858009px;}
.wsae{word-spacing:5.977560px;}
.ws45{word-spacing:6.097111px;}
.ws7d{word-spacing:6.156887px;}
.wsa7{word-spacing:6.276438px;}
.ws51{word-spacing:6.336214px;}
.ws56{word-spacing:6.395989px;}
.ws57{word-spacing:6.515540px;}
.wsa3{word-spacing:6.635092px;}
.ws2f{word-spacing:6.874194px;}
.wsed{word-spacing:6.886195px;}
.ws40{word-spacing:7.173072px;}
.wsfd{word-spacing:7.262784px;}
.ws84{word-spacing:7.352399px;}
.ws80{word-spacing:7.471950px;}
.wsc{word-spacing:7.782761px;}
.ws61{word-spacing:8.249033px;}
.ws77{word-spacing:8.727238px;}
.ws8a{word-spacing:8.846789px;}
.wsfc{word-spacing:9.145728px;}
.wsba{word-spacing:9.414720px;}
.wsa{word-spacing:12.176255px;}
.wsb{word-spacing:16.109478px;}
.wsc6{word-spacing:17.054093px;}
.wsa6{word-spacing:18.470660px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws6b{word-spacing:853.995802px;}
._9{margin-left:-13.879987px;}
._8{margin-left:-11.943245px;}
._22{margin-left:-9.440626px;}
._21{margin-left:-8.210435px;}
._a{margin-left:-6.633101px;}
._2{margin-left:-4.644551px;}
._3{margin-left:-3.054524px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._6{width:2.301354px;}
._b{width:3.674671px;}
._1d{width:9.990092px;}
._c{width:11.094379px;}
._5{width:12.971268px;}
._15{width:14.822586px;}
._10{width:16.569907px;}
._f{width:17.639443px;}
._d{width:19.528819px;}
._12{width:21.519216px;}
._25{width:22.532554px;}
._14{width:23.551586px;}
._e{width:24.671136px;}
._4{width:25.940136px;}
._13{width:27.197898px;}
._1a{width:29.230268px;}
._7{width:30.587087px;}
._20{width:31.621292px;}
._11{width:32.687098px;}
._1e{width:34.711678px;}
._1b{width:35.984911px;}
._19{width:37.417535px;}
._18{width:39.989876px;}
._1c{width:41.424491px;}
._24{width:61.868160px;}
._23{width:88.767360px;}
._16{width:884.968024px;}
._1f{width:2527.484700px;}
._17{width:2551.394700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(42,62,149);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs4{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:148.440000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1c{bottom:16.661091px;}
.y49{bottom:31.890000px;}
.y113{bottom:91.665000px;}
.y70{bottom:92.649000px;}
.y1ae{bottom:94.774500px;}
.ya1{bottom:97.678500px;}
.y162{bottom:102.709500px;}
.y1e6{bottom:104.503500px;}
.y1a{bottom:104.646000px;}
.y167{bottom:106.744500px;}
.y48{bottom:107.266500px;}
.y112{bottom:110.494500px;}
.y6f{bottom:111.478500px;}
.y1ad{bottom:112.035000px;}
.ya0{bottom:116.508000px;}
.y18d{bottom:121.090500px;}
.y161{bottom:121.539000px;}
.y1e5{bottom:121.762500px;}
.y19{bottom:122.535000px;}
.yc3{bottom:125.125500px;}
.y166{bottom:125.574000px;}
.y47{bottom:126.096000px;}
.y1ac{bottom:129.295500px;}
.y111{bottom:129.324000px;}
.y6e{bottom:130.308000px;}
.y9f{bottom:135.337500px;}
.y1e4{bottom:139.023000px;}
.y18c{bottom:139.920000px;}
.y160{bottom:140.368500px;}
.y18{bottom:140.422500px;}
.yc2{bottom:143.955000px;}
.y165{bottom:144.403500px;}
.ydf{bottom:144.852000px;}
.y46{bottom:144.925500px;}
.y1ab{bottom:146.556000px;}
.y110{bottom:148.153500px;}
.y6d{bottom:149.137500px;}
.y9e{bottom:154.167000px;}
.y1e3{bottom:156.283500px;}
.y17{bottom:158.310000px;}
.y18b{bottom:158.749500px;}
.y15f{bottom:159.198000px;}
.y12f{bottom:161.887500px;}
.yc1{bottom:162.784500px;}
.y196{bottom:163.233000px;}
.yde{bottom:163.681500px;}
.y45{bottom:163.755000px;}
.y1aa{bottom:163.816500px;}
.y10f{bottom:166.983000px;}
.y164{bottom:167.716500px;}
.y6c{bottom:172.450500px;}
.y9d{bottom:172.996500px;}
.y1e2{bottom:173.544000px;}
.y16{bottom:176.199000px;}
.y18a{bottom:177.579000px;}
.y15e{bottom:178.027500px;}
.y12e{bottom:180.717000px;}
.y1a9{bottom:181.075500px;}
.yc0{bottom:181.614000px;}
.y195{bottom:182.062500px;}
.ydd{bottom:182.511000px;}
.y44{bottom:182.584500px;}
.y10e{bottom:185.812500px;}
.y1e1{bottom:190.804500px;}
.y9c{bottom:191.826000px;}
.y15{bottom:194.086500px;}
.y189{bottom:196.408500px;}
.y15d{bottom:196.857000px;}
.y1a8{bottom:198.336000px;}
.y12d{bottom:199.546500px;}
.ybf{bottom:200.443500px;}
.y194{bottom:200.892000px;}
.ydc{bottom:201.340500px;}
.y43{bottom:201.414000px;}
.y6b{bottom:202.878000px;}
.y10d{bottom:204.642000px;}
.y1e0{bottom:208.065000px;}
.y9b{bottom:210.655500px;}
.y14{bottom:211.974000px;}
.y188{bottom:215.238000px;}
.y1a7{bottom:215.596500px;}
.y15c{bottom:215.686500px;}
.y12c{bottom:218.376000px;}
.ybe{bottom:219.273000px;}
.y193{bottom:219.721500px;}
.ydb{bottom:220.170000px;}
.y42{bottom:220.243500px;}
.y6a{bottom:222.111000px;}
.y10c{bottom:223.471500px;}
.y1df{bottom:225.325500px;}
.y9a{bottom:229.485000px;}
.y13{bottom:229.863000px;}
.y1a6{bottom:232.857000px;}
.y187{bottom:234.067500px;}
.y15b{bottom:234.516000px;}
.y12b{bottom:237.205500px;}
.ybd{bottom:238.102500px;}
.y192{bottom:238.551000px;}
.yda{bottom:238.999500px;}
.y1de{bottom:242.586000px;}
.y41{bottom:243.556500px;}
.y10b{bottom:246.784500px;}
.y99{bottom:248.314500px;}
.y1a5{bottom:250.117500px;}
.y186{bottom:252.897000px;}
.y15a{bottom:253.345500px;}
.y12a{bottom:256.035000px;}
.ybc{bottom:256.932000px;}
.y191{bottom:257.380500px;}
.yd9{bottom:257.829000px;}
.y1dd{bottom:259.846500px;}
.y98{bottom:267.144000px;}
.y1a4{bottom:267.378000px;}
.y185{bottom:271.726500px;}
.y159{bottom:272.175000px;}
.y129{bottom:274.864500px;}
.ybb{bottom:275.761500px;}
.y190{bottom:276.210000px;}
.yd8{bottom:276.658500px;}
.y1dc{bottom:277.105500px;}
.y1a3{bottom:284.638500px;}
.y97{bottom:285.972000px;}
.y10a{bottom:286.173000px;}
.y184{bottom:290.556000px;}
.y158{bottom:291.004500px;}
.y128{bottom:293.694000px;}
.y1db{bottom:294.366000px;}
.yba{bottom:294.591000px;}
.y18f{bottom:295.039500px;}
.yd7{bottom:295.488000px;}
.y12{bottom:300.154500px;}
.y1a2{bottom:301.899000px;}
.y109{bottom:302.611500px;}
.y96{bottom:304.801500px;}
.y183{bottom:309.385500px;}
.y157{bottom:309.834000px;}
.y1da{bottom:311.626500px;}
.y127{bottom:312.523500px;}
.yb9{bottom:313.420500px;}
.yd6{bottom:314.317500px;}
.y11{bottom:318.043500px;}
.y18e{bottom:318.351000px;}
.y40{bottom:318.706500px;}
.y108{bottom:319.050000px;}
.y95{bottom:323.631000px;}
.y1a1{bottom:323.641500px;}
.y182{bottom:328.215000px;}
.y156{bottom:328.663500px;}
.y1d9{bottom:328.887000px;}
.y126{bottom:331.353000px;}
.yb8{bottom:332.250000px;}
.yd5{bottom:333.145500px;}
.y10{bottom:335.931000px;}
.y3f{bottom:338.163000px;}
.y94{bottom:342.460500px;}
.y1d8{bottom:346.147500px;}
.y181{bottom:347.044500px;}
.y155{bottom:347.493000px;}
.y125{bottom:350.182500px;}
.yb7{bottom:351.079500px;}
.y107{bottom:351.927000px;}
.yd4{bottom:351.975000px;}
.yf{bottom:353.818500px;}
.y1a0{bottom:357.265500px;}
.y93{bottom:361.290000px;}
.y1d7{bottom:363.408000px;}
.y180{bottom:365.874000px;}
.y154{bottom:366.322500px;}
.y106{bottom:368.365500px;}
.y124{bottom:369.012000px;}
.yb6{bottom:369.909000px;}
.yd3{bottom:370.804500px;}
.y3e{bottom:375.552000px;}
.y92{bottom:380.119500px;}
.y1d6{bottom:380.668500px;}
.ye{bottom:380.673000px;}
.y19f{bottom:383.806500px;}
.y17f{bottom:384.703500px;}
.y105{bottom:384.804000px;}
.y153{bottom:385.152000px;}
.y123{bottom:387.841500px;}
.yb5{bottom:388.738500px;}
.yd2{bottom:389.634000px;}
.y3d{bottom:395.010000px;}
.y1d5{bottom:397.929000px;}
.yd{bottom:398.562000px;}
.y91{bottom:398.949000px;}
.y104{bottom:401.241000px;}
.y19e{bottom:401.380500px;}
.y17e{bottom:403.533000px;}
.y152{bottom:403.981500px;}
.y122{bottom:406.671000px;}
.yb4{bottom:407.568000px;}
.yd1{bottom:408.463500px;}
.y3c{bottom:414.466500px;}
.y1d4{bottom:415.188000px;}
.yc{bottom:416.449500px;}
.y103{bottom:417.679500px;}
.y90{bottom:417.778500px;}
.y121{bottom:425.500500px;}
.yb3{bottom:426.397500px;}
.y17d{bottom:426.844500px;}
.yd0{bottom:427.293000px;}
.y19d{bottom:427.921500px;}
.y1d3{bottom:432.448500px;}
.y3b{bottom:433.924500px;}
.y102{bottom:434.118000px;}
.y120{bottom:444.330000px;}
.yb{bottom:444.798000px;}
.y19c{bottom:445.495500px;}
.ycf{bottom:446.122500px;}
.yb2{bottom:449.709000px;}
.y101{bottom:450.556500px;}
.y3a{bottom:453.381000px;}
.y17c{bottom:460.468500px;}
.y151{bottom:460.917000px;}
.ya{bottom:462.685500px;}
.y19b{bottom:463.069500px;}
.y11f{bottom:463.159500px;}
.y8f{bottom:463.240500px;}
.yce{bottom:464.952000px;}
.y1d2{bottom:466.969500px;}
.y100{bottom:466.995000px;}
.y39{bottom:472.837500px;}
.y17b{bottom:479.298000px;}
.y8e{bottom:479.679000px;}
.y150{bottom:479.746500px;}
.y11e{bottom:481.989000px;}
.yb1{bottom:483.333000px;}
.ycd{bottom:483.781500px;}
.y1d1{bottom:484.230000px;}
.y9{bottom:489.540000px;}
.yff{bottom:490.636500px;}
.y38{bottom:492.295500px;}
.y8d{bottom:496.117500px;}
.y17a{bottom:498.127500px;}
.y14f{bottom:498.576000px;}
.y11d{bottom:500.818500px;}
.y1d0{bottom:501.490500px;}
.yb0{bottom:502.162500px;}
.ycc{bottom:502.611000px;}
.y8{bottom:507.429000px;}
.y37{bottom:511.752000px;}
.y8c{bottom:512.556000px;}
.yfe{bottom:514.276500px;}
.y179{bottom:516.957000px;}
.y14e{bottom:517.405500px;}
.y1cf{bottom:518.751000px;}
.y11c{bottom:519.648000px;}
.yaf{bottom:520.992000px;}
.y69{bottom:521.440500px;}
.y7{bottom:525.316500px;}
.y8b{bottom:528.994500px;}
.y36{bottom:531.208500px;}
.y178{bottom:535.786500px;}
.y1ce{bottom:536.011500px;}
.y14d{bottom:536.235000px;}
.yfd{bottom:537.918000px;}
.yae{bottom:539.821500px;}
.y68{bottom:540.270000px;}
.y11b{bottom:542.959500px;}
.y6{bottom:543.204000px;}
.y8a{bottom:545.433000px;}
.y35{bottom:550.666500px;}
.y1cd{bottom:553.272000px;}
.yfc{bottom:554.355000px;}
.y177{bottom:554.616000px;}
.y14c{bottom:555.064500px;}
.yad{bottom:558.651000px;}
.y67{bottom:559.099500px;}
.y5{bottom:561.093000px;}
.y89{bottom:561.871500px;}
.y11a{bottom:563.134500px;}
.y34{bottom:570.123000px;}
.y1cc{bottom:570.531000px;}
.yfb{bottom:570.793500px;}
.y176{bottom:573.445500px;}
.y14b{bottom:573.894000px;}
.yac{bottom:577.480500px;}
.y66{bottom:577.929000px;}
.y4{bottom:578.980500px;}
.y88{bottom:585.511500px;}
.y1cb{bottom:587.791500px;}
.y33{bottom:589.581000px;}
.y175{bottom:592.275000px;}
.y14a{bottom:592.723500px;}
.yab{bottom:596.310000px;}
.y65{bottom:596.758500px;}
.y1{bottom:596.868055px;}
.y19a{bottom:601.242000px;}
.yfa{bottom:603.670500px;}
.y1ca{bottom:605.052000px;}
.y32{bottom:609.037500px;}
.y87{bottom:609.153000px;}
.y174{bottom:611.104500px;}
.y149{bottom:611.553000px;}
.yaa{bottom:615.139500px;}
.y64{bottom:615.588000px;}
.yf9{bottom:620.109000px;}
.y1c9{bottom:622.312500px;}
.y86{bottom:625.591500px;}
.y31{bottom:628.494000px;}
.y173{bottom:629.934000px;}
.y148{bottom:630.382500px;}
.ya9{bottom:633.969000px;}
.y63{bottom:634.417500px;}
.y199{bottom:634.866000px;}
.yf8{bottom:636.547500px;}
.y1c8{bottom:639.573000px;}
.y85{bottom:642.028500px;}
.y172{bottom:648.763500px;}
.y147{bottom:649.212000px;}
.ya8{bottom:652.798500px;}
.yf7{bottom:652.986000px;}
.y62{bottom:653.247000px;}
.y198{bottom:653.695500px;}
.y1c7{bottom:656.833500px;}
.y16f{bottom:657.730500px;}
.y84{bottom:658.467000px;}
.y30{bottom:665.884500px;}
.y171{bottom:667.593000px;}
.y146{bottom:668.041500px;}
.yf6{bottom:669.424500px;}
.y61{bottom:672.076500px;}
.y197{bottom:672.525000px;}
.y1c6{bottom:674.094000px;}
.y83{bottom:674.905500px;}
.ya7{bottom:676.111500px;}
.y2f{bottom:685.341000px;}
.yf5{bottom:685.863000px;}
.y145{bottom:686.871000px;}
.y60{bottom:690.906000px;}
.y82{bottom:691.344000px;}
.y16e{bottom:691.354500px;}
.yf4{bottom:702.301500px;}
.y2e{bottom:704.799000px;}
.y144{bottom:705.700500px;}
.y81{bottom:707.782500px;}
.y1c5{bottom:708.613500px;}
.y5f{bottom:709.735500px;}
.y16d{bottom:710.184000px;}
.yf3{bottom:718.738500px;}
.y80{bottom:724.221000px;}
.y2d{bottom:724.255500px;}
.y143{bottom:724.530000px;}
.y1c4{bottom:725.874000px;}
.y5e{bottom:728.565000px;}
.y16c{bottom:729.013500px;}
.y7f{bottom:740.659500px;}
.yf2{bottom:742.380000px;}
.y1c3{bottom:743.134500px;}
.y142{bottom:743.359500px;}
.y2c{bottom:743.712000px;}
.y5d{bottom:747.394500px;}
.y16b{bottom:747.843000px;}
.y7e{bottom:757.098000px;}
.y1c2{bottom:760.395000px;}
.y141{bottom:762.189000px;}
.y2b{bottom:763.170000px;}
.yf1{bottom:766.020000px;}
.y5c{bottom:766.224000px;}
.y16a{bottom:766.671000px;}
.y7d{bottom:773.536500px;}
.y1c1{bottom:777.655500px;}
.y140{bottom:781.018500px;}
.y2a{bottom:782.626500px;}
.y5b{bottom:785.053500px;}
.y169{bottom:785.500500px;}
.ycb{bottom:789.535500px;}
.yf0{bottom:789.661500px;}
.y7c{bottom:789.975000px;}
.y1c0{bottom:794.916000px;}
.y13f{bottom:799.848000px;}
.y29{bottom:802.084500px;}
.y5a{bottom:803.883000px;}
.y168{bottom:804.330000px;}
.yef{bottom:806.100000px;}
.y7b{bottom:806.412000px;}
.y1bf{bottom:812.176500px;}
.y13e{bottom:818.677500px;}
.y28{bottom:821.541000px;}
.yee{bottom:822.538500px;}
.y59{bottom:822.712500px;}
.y7a{bottom:822.850500px;}
.yca{bottom:823.159500px;}
.y1be{bottom:829.437000px;}
.y13d{bottom:837.507000px;}
.y79{bottom:839.289000px;}
.y58{bottom:841.540500px;}
.yc9{bottom:841.989000px;}
.y1bd{bottom:846.697500px;}
.yed{bottom:855.415500px;}
.y78{bottom:855.727500px;}
.y13c{bottom:856.335000px;}
.y27{bottom:860.127000px;}
.y57{bottom:860.370000px;}
.yc8{bottom:860.818500px;}
.y1bc{bottom:863.956500px;}
.yec{bottom:871.852500px;}
.y77{bottom:872.166000px;}
.y13b{bottom:875.164500px;}
.y26{bottom:876.265500px;}
.y56{bottom:879.199500px;}
.yc7{bottom:879.648000px;}
.y1bb{bottom:881.217000px;}
.y163{bottom:883.683000px;}
.yeb{bottom:888.291000px;}
.y76{bottom:888.604500px;}
.y13a{bottom:893.994000px;}
.y25{bottom:896.745000px;}
.y55{bottom:898.029000px;}
.yc6{bottom:898.477500px;}
.yea{bottom:904.729500px;}
.y75{bottom:905.043000px;}
.y139{bottom:912.823500px;}
.y24{bottom:912.885000px;}
.y1ba{bottom:915.738000px;}
.ya6{bottom:916.858500px;}
.yc5{bottom:917.307000px;}
.ye9{bottom:921.168000px;}
.y54{bottom:921.342000px;}
.y74{bottom:921.481500px;}
.y23{bottom:924.684000px;}
.y138{bottom:931.653000px;}
.y1b9{bottom:932.998500px;}
.ya5{bottom:935.688000px;}
.yc4{bottom:936.136500px;}
.ye8{bottom:937.606500px;}
.y73{bottom:937.920000px;}
.y22{bottom:940.824000px;}
.y1e8{bottom:945.618000px;}
.y1b8{bottom:950.259000px;}
.y137{bottom:950.482500px;}
.ye7{bottom:954.045000px;}
.ya4{bottom:954.517500px;}
.y53{bottom:954.966000px;}
.y1e7{bottom:955.558500px;}
.y21{bottom:961.303500px;}
.y72{bottom:961.560000px;}
.y1b7{bottom:967.519500px;}
.y119{bottom:968.191500px;}
.y136{bottom:969.312000px;}
.ye6{bottom:970.483500px;}
.ya3{bottom:973.347000px;}
.y52{bottom:973.795500px;}
.y170{bottom:974.737500px;}
.y118{bottom:979.234500px;}
.y1b6{bottom:984.780000px;}
.y135{bottom:988.141500px;}
.y117{bottom:992.176500px;}
.y51{bottom:992.625000px;}
.y71{bottom:993.180000px;}
.ye5{bottom:994.123500px;}
.ya2{bottom:996.660000px;}
.y1b4{bottom:1002.039000px;}
.y1b5{bottom:1002.040500px;}
.y20{bottom:1005.979500px;}
.y134{bottom:1006.971000px;}
.y116{bottom:1011.006000px;}
.y50{bottom:1011.454500px;}
.ye4{bottom:1017.765000px;}
.y1b3{bottom:1019.299500px;}
.y1f{bottom:1024.809000px;}
.y133{bottom:1025.800500px;}
.y115{bottom:1029.835500px;}
.y4f{bottom:1030.284000px;}
.y1b2{bottom:1036.560000px;}
.y132{bottom:1044.630000px;}
.y4e{bottom:1049.113500px;}
.ye3{bottom:1049.383500px;}
.y114{bottom:1053.148500px;}
.y1b1{bottom:1053.820500px;}
.y131{bottom:1063.459500px;}
.y1e{bottom:1064.728500px;}
.y4d{bottom:1067.943000px;}
.ye2{bottom:1068.616500px;}
.y1b0{bottom:1071.081000px;}
.y130{bottom:1082.289000px;}
.y4c{bottom:1086.772500px;}
.ye1{bottom:1087.849500px;}
.y1af{bottom:1088.341500px;}
.y1d{bottom:1092.972000px;}
.y4b{bottom:1105.602000px;}
.ye0{bottom:1107.082500px;}
.y1b{bottom:1136.460000px;}
.y4a{bottom:1168.366500px;}
.h2{height:25.508090px;}
.h4{height:33.112997px;}
.hb{height:33.821261px;}
.h3{height:34.199443px;}
.hd{height:38.896243px;}
.h5{height:39.457760px;}
.h13{height:39.614278px;}
.h12{height:41.723369px;}
.h11{height:42.840113px;}
.hf{height:43.217759px;}
.h8{height:43.875290px;}
.hc{height:45.094826px;}
.h6{height:50.330809px;}
.he{height:50.731891px;}
.ha{height:54.547601px;}
.h10{height:56.368391px;}
.h9{height:77.792486px;}
.h7{height:92.775000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:173.920654px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:56.429652px;}
.xcb{left:85.848000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x20{left:258.556500px;}
.x5{left:269.914500px;}
.xa{left:281.479500px;}
.xb8{left:283.437000px;}
.x21{left:285.456000px;}
.x53{left:288.598500px;}
.x59{left:289.978500px;}
.x43{left:291.693000px;}
.x28{left:293.065500px;}
.x47{left:294.403500px;}
.xb{left:297.012000px;}
.x80{left:298.695000px;}
.x29{left:300.537000px;}
.x22{left:302.268000px;}
.xc{left:304.483500px;}
.x46{left:305.632500px;}
.x1d{left:306.801000px;}
.x8{left:308.928000px;}
.x75{left:310.024500px;}
.x9a{left:311.179500px;}
.xca{left:312.313500px;}
.x81{left:313.639500px;}
.xd{left:315.766500px;}
.xa5{left:316.899000px;}
.x9{left:320.358000px;}
.xa7{left:322.525500px;}
.xae{left:324.211500px;}
.x9b{left:326.124000px;}
.x48{left:327.831000px;}
.x23{left:329.167500px;}
.x5a{left:331.146000px;}
.x44{left:332.364000px;}
.x5b{left:334.447500px;}
.x57{left:335.908500px;}
.xa8{left:337.468500px;}
.x4a{left:338.725500px;}
.x45{left:341.173500px;}
.x95{left:342.210000px;}
.x90{left:344.485500px;}
.x10{left:346.534500px;}
.x49{left:349.545000px;}
.x42{left:350.655000px;}
.x5c{left:352.396500px;}
.x11{left:354.006000px;}
.x12{left:357.816000px;}
.x91{left:359.430000px;}
.x7{left:364.330500px;}
.x88{left:367.374000px;}
.x84{left:369.975000px;}
.x2a{left:372.184500px;}
.x15{left:376.782000px;}
.xad{left:383.061000px;}
.x16{left:384.253500px;}
.x17{left:388.065000px;}
.x58{left:389.113500px;}
.xc6{left:392.215500px;}
.x18{left:395.536500px;}
.x61{left:397.092000px;}
.x92{left:400.827000px;}
.x96{left:401.995500px;}
.x79{left:408.604500px;}
.xb7{left:410.611500px;}
.x62{left:412.036500px;}
.x63{left:415.698000px;}
.x97{left:416.940000px;}
.x93{left:419.581500px;}
.x1e{left:422.662500px;}
.x82{left:424.663500px;}
.x76{left:426.162000px;}
.x64{left:430.641000px;}
.x94{left:434.526000px;}
.xb3{left:436.494000px;}
.x1f{left:437.607000px;}
.x83{left:439.606500px;}
.x77{left:441.106500px;}
.x52{left:446.440500px;}
.xb4{left:453.082500px;}
.x65{left:456.789000px;}
.xc4{left:461.338500px;}
.x5e{left:462.645000px;}
.xe{left:465.510000px;}
.xc2{left:469.428000px;}
.x66{left:471.285000px;}
.xf{left:472.981500px;}
.x70{left:475.306500px;}
.x41{left:477.958500px;}
.x56{left:480.198000px;}
.xc5{left:483.754500px;}
.x13{left:487.401000px;}
.xc3{left:491.844000px;}
.x14{left:494.874000px;}
.xb9{left:496.663500px;}
.x26{left:499.273500px;}
.xbb{left:509.746500px;}
.x8e{left:511.704000px;}
.x27{left:514.218000px;}
.x2b{left:516.426000px;}
.xb5{left:524.838000px;}
.x8f{left:526.648500px;}
.x7a{left:528.841500px;}
.x2c{left:531.370500px;}
.xb6{left:539.781000px;}
.x7b{left:543.336000px;}
.x7c{left:546.778500px;}
.x24{left:548.290500px;}
.x7d{left:561.274500px;}
.x25{left:563.235000px;}
.x5d{left:573.336000px;}
.x85{left:575.656500px;}
.x4d{left:577.155000px;}
.x4e{left:582.339000px;}
.x3b{left:585.646500px;}
.xa2{left:588.151500px;}
.x55{left:593.724000px;}
.x6d{left:595.776000px;}
.x3c{left:600.591000px;}
.x73{left:602.268000px;}
.x86{left:608.331000px;}
.x74{left:617.211000px;}
.xbf{left:619.470000px;}
.xc1{left:622.102500px;}
.x87{left:623.275500px;}
.xa6{left:626.878500px;}
.xd6{left:627.961500px;}
.xc0{left:629.371500px;}
.x51{left:633.387000px;}
.x4f{left:635.551500px;}
.x54{left:638.806500px;}
.x4b{left:640.764000px;}
.x5f{left:641.964000px;}
.x50{left:644.206500px;}
.x78{left:647.836500px;}
.x33{left:651.034500px;}
.x60{left:653.166000px;}
.x98{left:657.666000px;}
.xa3{left:662.628000px;}
.x34{left:665.979000px;}
.x35{left:669.670500px;}
.x99{left:672.610500px;}
.x4c{left:678.066000px;}
.x37{left:679.779000px;}
.x36{left:684.613500px;}
.x19{left:685.933500px;}
.x6b{left:687.627000px;}
.x8c{left:690.612000px;}
.xa9{left:692.688000px;}
.x38{left:694.723500px;}
.x8a{left:696.534000px;}
.x39{left:698.533500px;}
.x1a{left:700.878000px;}
.x6c{left:702.123000px;}
.x1b{left:708.208500px;}
.x8b{left:711.478500px;}
.x3a{left:713.478000px;}
.xce{left:714.787500px;}
.x1c{left:723.151500px;}
.x7e{left:724.153500px;}
.xd4{left:725.839500px;}
.x67{left:727.702500px;}
.x9c{left:729.160500px;}
.xd3{left:730.447500px;}
.xd1{left:731.671500px;}
.xa4{left:733.516500px;}
.x8d{left:736.788000px;}
.x89{left:737.871000px;}
.x7f{left:739.098000px;}
.xcc{left:741.097500px;}
.x68{left:742.198500px;}
.x9d{left:744.105000px;}
.xc9{left:745.359000px;}
.x9e{left:747.766500px;}
.x3d{left:749.784000px;}
.xbc{left:751.177500px;}
.x6e{left:754.428000px;}
.xd2{left:755.869500px;}
.x3e{left:757.255500px;}
.x71{left:759.832500px;}
.xaf{left:761.434500px;}
.x9f{left:762.709500px;}
.xaa{left:764.572500px;}
.xbd{left:766.122000px;}
.xcd{left:767.997000px;}
.x6f{left:769.147500px;}
.xab{left:772.194000px;}
.xd0{left:773.767500px;}
.x72{left:774.775500px;}
.xb0{left:776.377500px;}
.xb1{left:780.189000px;}
.xc7{left:783.438000px;}
.xcf{left:790.435500px;}
.xbe{left:792.258000px;}
.xac{left:794.610000px;}
.x69{left:795.942000px;}
.x2d{left:797.050500px;}
.x2f{left:799.242000px;}
.xb2{left:802.605000px;}
.xc8{left:805.854000px;}
.x6a{left:810.436500px;}
.x2e{left:811.995000px;}
.xba{left:813.106500px;}
.x30{left:814.186500px;}
.xd5{left:816.801000px;}
.x31{left:817.906500px;}
.x3f{left:818.962500px;}
.xa0{left:827.220000px;}
.x32{left:832.851000px;}
.x40{left:833.907000px;}
.xa1{left:837.120000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000600pt;}
.ls19{letter-spacing:0.000711pt;}
.ls20{letter-spacing:0.000853pt;}
.ls2c{letter-spacing:0.000921pt;}
.ls25{letter-spacing:0.001026pt;}
.ls26{letter-spacing:0.002187pt;}
.ls17{letter-spacing:0.002262pt;}
.ls22{letter-spacing:0.002686pt;}
.ls1d{letter-spacing:0.003150pt;}
.ls2d{letter-spacing:0.003525pt;}
.lsf{letter-spacing:0.004267pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.665203pt;}
.ls1{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls2b{letter-spacing:10.929937pt;}
.ls28{letter-spacing:11.319010pt;}
.ls1a{letter-spacing:11.548068pt;}
.ls1c{letter-spacing:11.795701pt;}
.ls24{letter-spacing:11.865617pt;}
.lse{letter-spacing:11.883264pt;}
.ls13{letter-spacing:11.909477pt;}
.ls16{letter-spacing:11.920090pt;}
.lsc{letter-spacing:11.954133pt;}
.ls1b{letter-spacing:11.954495pt;}
.ls2a{letter-spacing:11.957725pt;}
.ls11{letter-spacing:11.959467pt;}
.ls1f{letter-spacing:12.007392pt;}
.ls15{letter-spacing:12.063713pt;}
.ls27{letter-spacing:12.136754pt;}
.ls29{letter-spacing:12.153201pt;}
.ls12{letter-spacing:12.159086pt;}
.ls14{letter-spacing:12.175146pt;}
.lsa{letter-spacing:12.528078pt;}
.lsb{letter-spacing:12.533411pt;}
.ls4{letter-spacing:13.283733pt;}
.ls23{letter-spacing:13.534996pt;}
.lsd{letter-spacing:14.131075pt;}
.ls21{letter-spacing:15.877480pt;}
.ls18{letter-spacing:16.023885pt;}
.ls10{letter-spacing:16.954604pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws12{word-spacing:-13.283467pt;}
.ws11{word-spacing:-12.760670pt;}
.ws43{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws15{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws83{word-spacing:-2.709827pt;}
.wsaa{word-spacing:-2.550426pt;}
.ws1d{word-spacing:-2.391040pt;}
.ws8b{word-spacing:-2.391024pt;}
.ws96{word-spacing:-2.284756pt;}
.wsac{word-spacing:-2.125355pt;}
.wsf8{word-spacing:-2.104115pt;}
.wsa0{word-spacing:-2.072221pt;}
.wsad{word-spacing:-1.965953pt;}
.ws10c{word-spacing:-1.960653pt;}
.ws66{word-spacing:-1.806551pt;}
.ws1{word-spacing:-1.696326pt;}
.wsaf{word-spacing:-1.647150pt;}
.ws8c{word-spacing:-1.487748pt;}
.ws102{word-spacing:-1.482445pt;}
.wsc8{word-spacing:-1.434624pt;}
.ws86{word-spacing:-1.381481pt;}
.wsb7{word-spacing:-1.338982pt;}
.ws79{word-spacing:-1.275213pt;}
.ws3e{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws9c{word-spacing:-1.168945pt;}
.ws81{word-spacing:-1.115811pt;}
.ws65{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws7b{word-spacing:-1.009543pt;}
.wsf9{word-spacing:-1.004237pt;}
.ws22{word-spacing:-0.956416pt;}
.wsa1{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws76{word-spacing:-0.903276pt;}
.wsa2{word-spacing:-0.850142pt;}
.ws63{word-spacing:-0.797008pt;}
.ws75{word-spacing:-0.743874pt;}
.ws78{word-spacing:-0.690740pt;}
.wsb6{word-spacing:-0.669491pt;}
.ws3f{word-spacing:-0.637606pt;}
.wsb5{word-spacing:-0.621670pt;}
.ws7a{word-spacing:-0.584473pt;}
.wsff{word-spacing:-0.573850pt;}
.ws50{word-spacing:-0.531339pt;}
.wsfe{word-spacing:-0.526029pt;}
.ws8d{word-spacing:-0.478205pt;}
.wse3{word-spacing:-0.430387pt;}
.wsb2{word-spacing:-0.425071pt;}
.wse2{word-spacing:-0.382566pt;}
.ws82{word-spacing:-0.371937pt;}
.ws34{word-spacing:-0.318803pt;}
.wsca{word-spacing:-0.286925pt;}
.ws37{word-spacing:-0.265669pt;}
.wscd{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws24{word-spacing:-0.191283pt;}
.ws4d{word-spacing:-0.159402pt;}
.ws1b{word-spacing:-0.143462pt;}
.ws3d{word-spacing:-0.106268pt;}
.wsbe{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.047821pt;}
.wse6{word-spacing:-0.011844pt;}
.wse0{word-spacing:-0.009190pt;}
.wse7{word-spacing:-0.008644pt;}
.ws10d{word-spacing:-0.006170pt;}
.ws107{word-spacing:-0.005769pt;}
.wseb{word-spacing:-0.004557pt;}
.wsc9{word-spacing:-0.003780pt;}
.wsf4{word-spacing:-0.003772pt;}
.wsbc{word-spacing:-0.003746pt;}
.wsd5{word-spacing:-0.003285pt;}
.ws101{word-spacing:-0.002995pt;}
.ws10{word-spacing:-0.001770pt;}
.ws14{word-spacing:-0.001333pt;}
.ws3{word-spacing:0.000000pt;}
.ws30{word-spacing:0.002031pt;}
.ws4{word-spacing:0.002476pt;}
.wscb{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.wsb4{word-spacing:0.095642pt;}
.ws3c{word-spacing:0.106268pt;}
.wsc2{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.ws18{word-spacing:0.191283pt;}
.ws35{word-spacing:0.212535pt;}
.ws1c{word-spacing:0.239104pt;}
.ws38{word-spacing:0.265669pt;}
.wsf0{word-spacing:0.286925pt;}
.ws36{word-spacing:0.318803pt;}
.wsfa{word-spacing:0.334746pt;}
.ws60{word-spacing:0.371937pt;}
.wse4{word-spacing:0.382566pt;}
.ws105{word-spacing:0.430387pt;}
.ws4f{word-spacing:0.478205pt;}
.ws47{word-spacing:0.531339pt;}
.ws28{word-spacing:0.573850pt;}
.ws7c{word-spacing:0.584473pt;}
.ws6c{word-spacing:0.594756pt;}
.ws6e{word-spacing:0.596753pt;}
.ws70{word-spacing:0.597333pt;}
.ws6f{word-spacing:0.599467pt;}
.ws6d{word-spacing:0.599543pt;}
.ws104{word-spacing:0.621670pt;}
.ws32{word-spacing:0.637606pt;}
.ws5a{word-spacing:0.690740pt;}
.ws2d{word-spacing:0.743874pt;}
.ws85{word-spacing:0.797008pt;}
.ws106{word-spacing:0.812954pt;}
.wsa9{word-spacing:0.850142pt;}
.ws7{word-spacing:0.892646pt;}
.ws9f{word-spacing:0.903276pt;}
.ws20{word-spacing:0.908595pt;}
.ws33{word-spacing:0.956410pt;}
.wscf{word-spacing:0.956416pt;}
.ws49{word-spacing:1.009543pt;}
.ws99{word-spacing:1.115811pt;}
.ws1e{word-spacing:1.147699pt;}
.ws44{word-spacing:1.168945pt;}
.ws19{word-spacing:1.195520pt;}
.ws8f{word-spacing:1.222079pt;}
.wsb3{word-spacing:1.275213pt;}
.wsd3{word-spacing:1.291162pt;}
.wsa8{word-spacing:1.328347pt;}
.ws89{word-spacing:1.434614pt;}
.ws25{word-spacing:1.434624pt;}
.ws10b{word-spacing:1.482445pt;}
.ws54{word-spacing:1.487748pt;}
.wsab{word-spacing:1.540882pt;}
.wsfb{word-spacing:1.578086pt;}
.ws98{word-spacing:1.647150pt;}
.wsb9{word-spacing:1.673728pt;}
.ws4a{word-spacing:1.700284pt;}
.ws74{word-spacing:1.753418pt;}
.ws5f{word-spacing:1.806551pt;}
.wsd9{word-spacing:1.817190pt;}
.ws2a{word-spacing:1.859685pt;}
.ws109{word-spacing:1.865011pt;}
.ws5b{word-spacing:1.912819pt;}
.ws10a{word-spacing:1.912832pt;}
.ws72{word-spacing:1.965953pt;}
.ws5d{word-spacing:2.019087pt;}
.ws21{word-spacing:2.056294pt;}
.ws5e{word-spacing:2.072221pt;}
.ws110{word-spacing:2.104115pt;}
.ws5c{word-spacing:2.125355pt;}
.wsf2{word-spacing:2.151936pt;}
.ws90{word-spacing:2.178489pt;}
.wsbb{word-spacing:2.199757pt;}
.ws2{word-spacing:2.232481pt;}
.wsee{word-spacing:2.247578pt;}
.ws71{word-spacing:2.284756pt;}
.wsd8{word-spacing:2.295398pt;}
.ws92{word-spacing:2.337890pt;}
.wse1{word-spacing:2.343219pt;}
.ws9a{word-spacing:2.391024pt;}
.ws1a{word-spacing:2.391040pt;}
.ws2e{word-spacing:2.444158pt;}
.wsc4{word-spacing:2.486682pt;}
.wsa5{word-spacing:2.497292pt;}
.wsd0{word-spacing:2.534502pt;}
.ws16{word-spacing:2.550432pt;}
.wsce{word-spacing:2.582323pt;}
.ws53{word-spacing:2.603559pt;}
.wsb0{word-spacing:2.656693pt;}
.wsa4{word-spacing:2.709827pt;}
.ws4c{word-spacing:2.762961pt;}
.wsc0{word-spacing:2.773606pt;}
.ws95{word-spacing:2.816095pt;}
.wsd7{word-spacing:2.821427pt;}
.ws100{word-spacing:2.861346pt;}
.wsf3{word-spacing:2.861585pt;}
.wsdf{word-spacing:2.861892pt;}
.wse5{word-spacing:2.862379pt;}
.wsf7{word-spacing:2.862959pt;}
.wsf5{word-spacing:2.863334pt;}
.wse9{word-spacing:2.863625pt;}
.wsbf{word-spacing:2.863795pt;}
.wsdb{word-spacing:2.863974pt;}
.wsd4{word-spacing:2.864239pt;}
.wse8{word-spacing:2.865041pt;}
.wsd2{word-spacing:2.865271pt;}
.ws103{word-spacing:2.865357pt;}
.wsc5{word-spacing:2.865476pt;}
.wsc1{word-spacing:2.865732pt;}
.wsea{word-spacing:2.866278pt;}
.ws10f{word-spacing:2.866679pt;}
.ws108{word-spacing:2.866884pt;}
.wscc{word-spacing:2.867260pt;}
.wsd6{word-spacing:2.867994pt;}
.wsc3{word-spacing:2.869069pt;}
.ws8e{word-spacing:2.869229pt;}
.wsbd{word-spacing:2.869248pt;}
.wsdc{word-spacing:2.917069pt;}
.ws93{word-spacing:2.975497pt;}
.ws1f{word-spacing:3.012710pt;}
.ws52{word-spacing:3.028630pt;}
.ws62{word-spacing:3.081764pt;}
.wsda{word-spacing:3.108352pt;}
.ws58{word-spacing:3.134898pt;}
.ws29{word-spacing:3.188032pt;}
.wsdd{word-spacing:3.203994pt;}
.ws73{word-spacing:3.241166pt;}
.ws55{word-spacing:3.294300pt;}
.ws91{word-spacing:3.347434pt;}
.wsd1{word-spacing:3.395277pt;}
.ws87{word-spacing:3.400567pt;}
.ws97{word-spacing:3.453701pt;}
.ws10e{word-spacing:3.490918pt;}
.ws46{word-spacing:3.506835pt;}
.wsec{word-spacing:3.538739pt;}
.ws67{word-spacing:3.666237pt;}
.ws9d{word-spacing:3.719371pt;}
.ws27{word-spacing:3.730022pt;}
.ws7f{word-spacing:3.772505pt;}
.wsf6{word-spacing:3.921306pt;}
.ws94{word-spacing:3.931906pt;}
.ws26{word-spacing:3.969126pt;}
.ws3a{word-spacing:4.038174pt;}
.wsde{word-spacing:4.064768pt;}
.ws3b{word-spacing:4.091308pt;}
.ws4b{word-spacing:4.144442pt;}
.wsf1{word-spacing:4.160410pt;}
.wse{word-spacing:4.240070pt;}
.ws42{word-spacing:4.250709pt;}
.ws41{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.wsb1{word-spacing:4.356977pt;}
.wsef{word-spacing:4.399514pt;}
.ws4e{word-spacing:4.410111pt;}
.ws9b{word-spacing:4.516379pt;}
.ws6a{word-spacing:4.542976pt;}
.ws69{word-spacing:4.590797pt;}
.ws88{word-spacing:4.622646pt;}
.ws23{word-spacing:4.686438pt;}
.wsb8{word-spacing:4.782080pt;}
.ws64{word-spacing:4.835182pt;}
.ws7e{word-spacing:4.888316pt;}
.ws68{word-spacing:4.925542pt;}
.wsc7{word-spacing:5.021184pt;}
.ws48{word-spacing:5.047717pt;}
.ws9e{word-spacing:5.153985pt;}
.ws59{word-spacing:5.207119pt;}
.wsae{word-spacing:5.313387pt;}
.ws45{word-spacing:5.419654pt;}
.ws7d{word-spacing:5.472788pt;}
.wsa7{word-spacing:5.579056pt;}
.ws51{word-spacing:5.632190pt;}
.ws56{word-spacing:5.685324pt;}
.ws57{word-spacing:5.791591pt;}
.wsa3{word-spacing:5.897859pt;}
.ws2f{word-spacing:6.110395pt;}
.wsed{word-spacing:6.121062pt;}
.ws40{word-spacing:6.376064pt;}
.wsfd{word-spacing:6.455808pt;}
.ws84{word-spacing:6.535466pt;}
.ws80{word-spacing:6.641733pt;}
.wsc{word-spacing:6.918010pt;}
.ws61{word-spacing:7.332474pt;}
.ws77{word-spacing:7.757545pt;}
.ws8a{word-spacing:7.863812pt;}
.wsfc{word-spacing:8.129536pt;}
.wsba{word-spacing:8.368640pt;}
.wsa{word-spacing:10.823338pt;}
.wsb{word-spacing:14.319536pt;}
.wsc6{word-spacing:15.159194pt;}
.wsa6{word-spacing:16.418365pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws6b{word-spacing:759.107379pt;}
._9{margin-left:-12.337766pt;}
._8{margin-left:-10.616218pt;}
._22{margin-left:-8.391667pt;}
._21{margin-left:-7.298164pt;}
._a{margin-left:-5.896090pt;}
._2{margin-left:-4.128490pt;}
._3{margin-left:-2.715133pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._6{width:2.045648pt;}
._b{width:3.266374pt;}
._1d{width:8.880082pt;}
._c{width:9.861670pt;}
._5{width:11.530016pt;}
._15{width:13.175632pt;}
._10{width:14.728806pt;}
._f{width:15.679505pt;}
._d{width:17.358950pt;}
._12{width:19.128192pt;}
._25{width:20.028937pt;}
._14{width:20.934743pt;}
._e{width:21.929899pt;}
._4{width:23.057899pt;}
._13{width:24.175909pt;}
._1a{width:25.982461pt;}
._7{width:27.188522pt;}
._20{width:28.107815pt;}
._11{width:29.055198pt;}
._1e{width:30.854825pt;}
._1b{width:31.986588pt;}
._19{width:33.260031pt;}
._18{width:35.546557pt;}
._1c{width:36.821770pt;}
._24{width:54.993920pt;}
._23{width:78.904320pt;}
._16{width:786.638243pt;}
._1f{width:2246.653067pt;}
._17{width:2267.906400pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs4{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:131.946667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1c{bottom:14.809859pt;}
.y49{bottom:28.346667pt;}
.y113{bottom:81.480000pt;}
.y70{bottom:82.354667pt;}
.y1ae{bottom:84.244000pt;}
.ya1{bottom:86.825333pt;}
.y162{bottom:91.297333pt;}
.y1e6{bottom:92.892000pt;}
.y1a{bottom:93.018667pt;}
.y167{bottom:94.884000pt;}
.y48{bottom:95.348000pt;}
.y112{bottom:98.217333pt;}
.y6f{bottom:99.092000pt;}
.y1ad{bottom:99.586667pt;}
.ya0{bottom:103.562667pt;}
.y18d{bottom:107.636000pt;}
.y161{bottom:108.034667pt;}
.y1e5{bottom:108.233333pt;}
.y19{bottom:108.920000pt;}
.yc3{bottom:111.222667pt;}
.y166{bottom:111.621333pt;}
.y47{bottom:112.085333pt;}
.y1ac{bottom:114.929333pt;}
.y111{bottom:114.954667pt;}
.y6e{bottom:115.829333pt;}
.y9f{bottom:120.300000pt;}
.y1e4{bottom:123.576000pt;}
.y18c{bottom:124.373333pt;}
.y160{bottom:124.772000pt;}
.y18{bottom:124.820000pt;}
.yc2{bottom:127.960000pt;}
.y165{bottom:128.358667pt;}
.ydf{bottom:128.757333pt;}
.y46{bottom:128.822667pt;}
.y1ab{bottom:130.272000pt;}
.y110{bottom:131.692000pt;}
.y6d{bottom:132.566667pt;}
.y9e{bottom:137.037333pt;}
.y1e3{bottom:138.918667pt;}
.y17{bottom:140.720000pt;}
.y18b{bottom:141.110667pt;}
.y15f{bottom:141.509333pt;}
.y12f{bottom:143.900000pt;}
.yc1{bottom:144.697333pt;}
.y196{bottom:145.096000pt;}
.yde{bottom:145.494667pt;}
.y45{bottom:145.560000pt;}
.y1aa{bottom:145.614667pt;}
.y10f{bottom:148.429333pt;}
.y164{bottom:149.081333pt;}
.y6c{bottom:153.289333pt;}
.y9d{bottom:153.774667pt;}
.y1e2{bottom:154.261333pt;}
.y16{bottom:156.621333pt;}
.y18a{bottom:157.848000pt;}
.y15e{bottom:158.246667pt;}
.y12e{bottom:160.637333pt;}
.y1a9{bottom:160.956000pt;}
.yc0{bottom:161.434667pt;}
.y195{bottom:161.833333pt;}
.ydd{bottom:162.232000pt;}
.y44{bottom:162.297333pt;}
.y10e{bottom:165.166667pt;}
.y1e1{bottom:169.604000pt;}
.y9c{bottom:170.512000pt;}
.y15{bottom:172.521333pt;}
.y189{bottom:174.585333pt;}
.y15d{bottom:174.984000pt;}
.y1a8{bottom:176.298667pt;}
.y12d{bottom:177.374667pt;}
.ybf{bottom:178.172000pt;}
.y194{bottom:178.570667pt;}
.ydc{bottom:178.969333pt;}
.y43{bottom:179.034667pt;}
.y6b{bottom:180.336000pt;}
.y10d{bottom:181.904000pt;}
.y1e0{bottom:184.946667pt;}
.y9b{bottom:187.249333pt;}
.y14{bottom:188.421333pt;}
.y188{bottom:191.322667pt;}
.y1a7{bottom:191.641333pt;}
.y15c{bottom:191.721333pt;}
.y12c{bottom:194.112000pt;}
.ybe{bottom:194.909333pt;}
.y193{bottom:195.308000pt;}
.ydb{bottom:195.706667pt;}
.y42{bottom:195.772000pt;}
.y6a{bottom:197.432000pt;}
.y10c{bottom:198.641333pt;}
.y1df{bottom:200.289333pt;}
.y9a{bottom:203.986667pt;}
.y13{bottom:204.322667pt;}
.y1a6{bottom:206.984000pt;}
.y187{bottom:208.060000pt;}
.y15b{bottom:208.458667pt;}
.y12b{bottom:210.849333pt;}
.ybd{bottom:211.646667pt;}
.y192{bottom:212.045333pt;}
.yda{bottom:212.444000pt;}
.y1de{bottom:215.632000pt;}
.y41{bottom:216.494667pt;}
.y10b{bottom:219.364000pt;}
.y99{bottom:220.724000pt;}
.y1a5{bottom:222.326667pt;}
.y186{bottom:224.797333pt;}
.y15a{bottom:225.196000pt;}
.y12a{bottom:227.586667pt;}
.ybc{bottom:228.384000pt;}
.y191{bottom:228.782667pt;}
.yd9{bottom:229.181333pt;}
.y1dd{bottom:230.974667pt;}
.y98{bottom:237.461333pt;}
.y1a4{bottom:237.669333pt;}
.y185{bottom:241.534667pt;}
.y159{bottom:241.933333pt;}
.y129{bottom:244.324000pt;}
.ybb{bottom:245.121333pt;}
.y190{bottom:245.520000pt;}
.yd8{bottom:245.918667pt;}
.y1dc{bottom:246.316000pt;}
.y1a3{bottom:253.012000pt;}
.y97{bottom:254.197333pt;}
.y10a{bottom:254.376000pt;}
.y184{bottom:258.272000pt;}
.y158{bottom:258.670667pt;}
.y128{bottom:261.061333pt;}
.y1db{bottom:261.658667pt;}
.yba{bottom:261.858667pt;}
.y18f{bottom:262.257333pt;}
.yd7{bottom:262.656000pt;}
.y12{bottom:266.804000pt;}
.y1a2{bottom:268.354667pt;}
.y109{bottom:268.988000pt;}
.y96{bottom:270.934667pt;}
.y183{bottom:275.009333pt;}
.y157{bottom:275.408000pt;}
.y1da{bottom:277.001333pt;}
.y127{bottom:277.798667pt;}
.yb9{bottom:278.596000pt;}
.yd6{bottom:279.393333pt;}
.y11{bottom:282.705333pt;}
.y18e{bottom:282.978667pt;}
.y40{bottom:283.294667pt;}
.y108{bottom:283.600000pt;}
.y95{bottom:287.672000pt;}
.y1a1{bottom:287.681333pt;}
.y182{bottom:291.746667pt;}
.y156{bottom:292.145333pt;}
.y1d9{bottom:292.344000pt;}
.y126{bottom:294.536000pt;}
.yb8{bottom:295.333333pt;}
.yd5{bottom:296.129333pt;}
.y10{bottom:298.605333pt;}
.y3f{bottom:300.589333pt;}
.y94{bottom:304.409333pt;}
.y1d8{bottom:307.686667pt;}
.y181{bottom:308.484000pt;}
.y155{bottom:308.882667pt;}
.y125{bottom:311.273333pt;}
.yb7{bottom:312.070667pt;}
.y107{bottom:312.824000pt;}
.yd4{bottom:312.866667pt;}
.yf{bottom:314.505333pt;}
.y1a0{bottom:317.569333pt;}
.y93{bottom:321.146667pt;}
.y1d7{bottom:323.029333pt;}
.y180{bottom:325.221333pt;}
.y154{bottom:325.620000pt;}
.y106{bottom:327.436000pt;}
.y124{bottom:328.010667pt;}
.yb6{bottom:328.808000pt;}
.yd3{bottom:329.604000pt;}
.y3e{bottom:333.824000pt;}
.y92{bottom:337.884000pt;}
.y1d6{bottom:338.372000pt;}
.ye{bottom:338.376000pt;}
.y19f{bottom:341.161333pt;}
.y17f{bottom:341.958667pt;}
.y105{bottom:342.048000pt;}
.y153{bottom:342.357333pt;}
.y123{bottom:344.748000pt;}
.yb5{bottom:345.545333pt;}
.yd2{bottom:346.341333pt;}
.y3d{bottom:351.120000pt;}
.y1d5{bottom:353.714667pt;}
.yd{bottom:354.277333pt;}
.y91{bottom:354.621333pt;}
.y104{bottom:356.658667pt;}
.y19e{bottom:356.782667pt;}
.y17e{bottom:358.696000pt;}
.y152{bottom:359.094667pt;}
.y122{bottom:361.485333pt;}
.yb4{bottom:362.282667pt;}
.yd1{bottom:363.078667pt;}
.y3c{bottom:368.414667pt;}
.y1d4{bottom:369.056000pt;}
.yc{bottom:370.177333pt;}
.y103{bottom:371.270667pt;}
.y90{bottom:371.358667pt;}
.y121{bottom:378.222667pt;}
.yb3{bottom:379.020000pt;}
.y17d{bottom:379.417333pt;}
.yd0{bottom:379.816000pt;}
.y19d{bottom:380.374667pt;}
.y1d3{bottom:384.398667pt;}
.y3b{bottom:385.710667pt;}
.y102{bottom:385.882667pt;}
.y120{bottom:394.960000pt;}
.yb{bottom:395.376000pt;}
.y19c{bottom:395.996000pt;}
.ycf{bottom:396.553333pt;}
.yb2{bottom:399.741333pt;}
.y101{bottom:400.494667pt;}
.y3a{bottom:403.005333pt;}
.y17c{bottom:409.305333pt;}
.y151{bottom:409.704000pt;}
.ya{bottom:411.276000pt;}
.y19b{bottom:411.617333pt;}
.y11f{bottom:411.697333pt;}
.y8f{bottom:411.769333pt;}
.yce{bottom:413.290667pt;}
.y1d2{bottom:415.084000pt;}
.y100{bottom:415.106667pt;}
.y39{bottom:420.300000pt;}
.y17b{bottom:426.042667pt;}
.y8e{bottom:426.381333pt;}
.y150{bottom:426.441333pt;}
.y11e{bottom:428.434667pt;}
.yb1{bottom:429.629333pt;}
.ycd{bottom:430.028000pt;}
.y1d1{bottom:430.426667pt;}
.y9{bottom:435.146667pt;}
.yff{bottom:436.121333pt;}
.y38{bottom:437.596000pt;}
.y8d{bottom:440.993333pt;}
.y17a{bottom:442.780000pt;}
.y14f{bottom:443.178667pt;}
.y11d{bottom:445.172000pt;}
.y1d0{bottom:445.769333pt;}
.yb0{bottom:446.366667pt;}
.ycc{bottom:446.765333pt;}
.y8{bottom:451.048000pt;}
.y37{bottom:454.890667pt;}
.y8c{bottom:455.605333pt;}
.yfe{bottom:457.134667pt;}
.y179{bottom:459.517333pt;}
.y14e{bottom:459.916000pt;}
.y1cf{bottom:461.112000pt;}
.y11c{bottom:461.909333pt;}
.yaf{bottom:463.104000pt;}
.y69{bottom:463.502667pt;}
.y7{bottom:466.948000pt;}
.y8b{bottom:470.217333pt;}
.y36{bottom:472.185333pt;}
.y178{bottom:476.254667pt;}
.y1ce{bottom:476.454667pt;}
.y14d{bottom:476.653333pt;}
.yfd{bottom:478.149333pt;}
.yae{bottom:479.841333pt;}
.y68{bottom:480.240000pt;}
.y11b{bottom:482.630667pt;}
.y6{bottom:482.848000pt;}
.y8a{bottom:484.829333pt;}
.y35{bottom:489.481333pt;}
.y1cd{bottom:491.797333pt;}
.yfc{bottom:492.760000pt;}
.y177{bottom:492.992000pt;}
.y14c{bottom:493.390667pt;}
.yad{bottom:496.578667pt;}
.y67{bottom:496.977333pt;}
.y5{bottom:498.749333pt;}
.y89{bottom:499.441333pt;}
.y11a{bottom:500.564000pt;}
.y34{bottom:506.776000pt;}
.y1cc{bottom:507.138667pt;}
.yfb{bottom:507.372000pt;}
.y176{bottom:509.729333pt;}
.y14b{bottom:510.128000pt;}
.yac{bottom:513.316000pt;}
.y66{bottom:513.714667pt;}
.y4{bottom:514.649333pt;}
.y88{bottom:520.454667pt;}
.y1cb{bottom:522.481333pt;}
.y33{bottom:524.072000pt;}
.y175{bottom:526.466667pt;}
.y14a{bottom:526.865333pt;}
.yab{bottom:530.053333pt;}
.y65{bottom:530.452000pt;}
.y1{bottom:530.549382pt;}
.y19a{bottom:534.437333pt;}
.yfa{bottom:536.596000pt;}
.y1ca{bottom:537.824000pt;}
.y32{bottom:541.366667pt;}
.y87{bottom:541.469333pt;}
.y174{bottom:543.204000pt;}
.y149{bottom:543.602667pt;}
.yaa{bottom:546.790667pt;}
.y64{bottom:547.189333pt;}
.yf9{bottom:551.208000pt;}
.y1c9{bottom:553.166667pt;}
.y86{bottom:556.081333pt;}
.y31{bottom:558.661333pt;}
.y173{bottom:559.941333pt;}
.y148{bottom:560.340000pt;}
.ya9{bottom:563.528000pt;}
.y63{bottom:563.926667pt;}
.y199{bottom:564.325333pt;}
.yf8{bottom:565.820000pt;}
.y1c8{bottom:568.509333pt;}
.y85{bottom:570.692000pt;}
.y172{bottom:576.678667pt;}
.y147{bottom:577.077333pt;}
.ya8{bottom:580.265333pt;}
.yf7{bottom:580.432000pt;}
.y62{bottom:580.664000pt;}
.y198{bottom:581.062667pt;}
.y1c7{bottom:583.852000pt;}
.y16f{bottom:584.649333pt;}
.y84{bottom:585.304000pt;}
.y30{bottom:591.897333pt;}
.y171{bottom:593.416000pt;}
.y146{bottom:593.814667pt;}
.yf6{bottom:595.044000pt;}
.y61{bottom:597.401333pt;}
.y197{bottom:597.800000pt;}
.y1c6{bottom:599.194667pt;}
.y83{bottom:599.916000pt;}
.ya7{bottom:600.988000pt;}
.y2f{bottom:609.192000pt;}
.yf5{bottom:609.656000pt;}
.y145{bottom:610.552000pt;}
.y60{bottom:614.138667pt;}
.y82{bottom:614.528000pt;}
.y16e{bottom:614.537333pt;}
.yf4{bottom:624.268000pt;}
.y2e{bottom:626.488000pt;}
.y144{bottom:627.289333pt;}
.y81{bottom:629.140000pt;}
.y1c5{bottom:629.878667pt;}
.y5f{bottom:630.876000pt;}
.y16d{bottom:631.274667pt;}
.yf3{bottom:638.878667pt;}
.y80{bottom:643.752000pt;}
.y2d{bottom:643.782667pt;}
.y143{bottom:644.026667pt;}
.y1c4{bottom:645.221333pt;}
.y5e{bottom:647.613333pt;}
.y16c{bottom:648.012000pt;}
.y7f{bottom:658.364000pt;}
.yf2{bottom:659.893333pt;}
.y1c3{bottom:660.564000pt;}
.y142{bottom:660.764000pt;}
.y2c{bottom:661.077333pt;}
.y5d{bottom:664.350667pt;}
.y16b{bottom:664.749333pt;}
.y7e{bottom:672.976000pt;}
.y1c2{bottom:675.906667pt;}
.y141{bottom:677.501333pt;}
.y2b{bottom:678.373333pt;}
.yf1{bottom:680.906667pt;}
.y5c{bottom:681.088000pt;}
.y16a{bottom:681.485333pt;}
.y7d{bottom:687.588000pt;}
.y1c1{bottom:691.249333pt;}
.y140{bottom:694.238667pt;}
.y2a{bottom:695.668000pt;}
.y5b{bottom:697.825333pt;}
.y169{bottom:698.222667pt;}
.ycb{bottom:701.809333pt;}
.yf0{bottom:701.921333pt;}
.y7c{bottom:702.200000pt;}
.y1c0{bottom:706.592000pt;}
.y13f{bottom:710.976000pt;}
.y29{bottom:712.964000pt;}
.y5a{bottom:714.562667pt;}
.y168{bottom:714.960000pt;}
.yef{bottom:716.533333pt;}
.y7b{bottom:716.810667pt;}
.y1bf{bottom:721.934667pt;}
.y13e{bottom:727.713333pt;}
.y28{bottom:730.258667pt;}
.yee{bottom:731.145333pt;}
.y59{bottom:731.300000pt;}
.y7a{bottom:731.422667pt;}
.yca{bottom:731.697333pt;}
.y1be{bottom:737.277333pt;}
.y13d{bottom:744.450667pt;}
.y79{bottom:746.034667pt;}
.y58{bottom:748.036000pt;}
.yc9{bottom:748.434667pt;}
.y1bd{bottom:752.620000pt;}
.yed{bottom:760.369333pt;}
.y78{bottom:760.646667pt;}
.y13c{bottom:761.186667pt;}
.y27{bottom:764.557333pt;}
.y57{bottom:764.773333pt;}
.yc8{bottom:765.172000pt;}
.y1bc{bottom:767.961333pt;}
.yec{bottom:774.980000pt;}
.y77{bottom:775.258667pt;}
.y13b{bottom:777.924000pt;}
.y26{bottom:778.902667pt;}
.y56{bottom:781.510667pt;}
.yc7{bottom:781.909333pt;}
.y1bb{bottom:783.304000pt;}
.y163{bottom:785.496000pt;}
.yeb{bottom:789.592000pt;}
.y76{bottom:789.870667pt;}
.y13a{bottom:794.661333pt;}
.y25{bottom:797.106667pt;}
.y55{bottom:798.248000pt;}
.yc6{bottom:798.646667pt;}
.yea{bottom:804.204000pt;}
.y75{bottom:804.482667pt;}
.y139{bottom:811.398667pt;}
.y24{bottom:811.453333pt;}
.y1ba{bottom:813.989333pt;}
.ya6{bottom:814.985333pt;}
.yc5{bottom:815.384000pt;}
.ye9{bottom:818.816000pt;}
.y54{bottom:818.970667pt;}
.y74{bottom:819.094667pt;}
.y23{bottom:821.941333pt;}
.y138{bottom:828.136000pt;}
.y1b9{bottom:829.332000pt;}
.ya5{bottom:831.722667pt;}
.yc4{bottom:832.121333pt;}
.ye8{bottom:833.428000pt;}
.y73{bottom:833.706667pt;}
.y22{bottom:836.288000pt;}
.y1e8{bottom:840.549333pt;}
.y1b8{bottom:844.674667pt;}
.y137{bottom:844.873333pt;}
.ye7{bottom:848.040000pt;}
.ya4{bottom:848.460000pt;}
.y53{bottom:848.858667pt;}
.y1e7{bottom:849.385333pt;}
.y21{bottom:854.492000pt;}
.y72{bottom:854.720000pt;}
.y1b7{bottom:860.017333pt;}
.y119{bottom:860.614667pt;}
.y136{bottom:861.610667pt;}
.ye6{bottom:862.652000pt;}
.ya3{bottom:865.197333pt;}
.y52{bottom:865.596000pt;}
.y170{bottom:866.433333pt;}
.y118{bottom:870.430667pt;}
.y1b6{bottom:875.360000pt;}
.y135{bottom:878.348000pt;}
.y117{bottom:881.934667pt;}
.y51{bottom:882.333333pt;}
.y71{bottom:882.826667pt;}
.ye5{bottom:883.665333pt;}
.ya2{bottom:885.920000pt;}
.y1b4{bottom:890.701333pt;}
.y1b5{bottom:890.702667pt;}
.y20{bottom:894.204000pt;}
.y134{bottom:895.085333pt;}
.y116{bottom:898.672000pt;}
.y50{bottom:899.070667pt;}
.ye4{bottom:904.680000pt;}
.y1b3{bottom:906.044000pt;}
.y1f{bottom:910.941333pt;}
.y133{bottom:911.822667pt;}
.y115{bottom:915.409333pt;}
.y4f{bottom:915.808000pt;}
.y1b2{bottom:921.386667pt;}
.y132{bottom:928.560000pt;}
.y4e{bottom:932.545333pt;}
.ye3{bottom:932.785333pt;}
.y114{bottom:936.132000pt;}
.y1b1{bottom:936.729333pt;}
.y131{bottom:945.297333pt;}
.y1e{bottom:946.425333pt;}
.y4d{bottom:949.282667pt;}
.ye2{bottom:949.881333pt;}
.y1b0{bottom:952.072000pt;}
.y130{bottom:962.034667pt;}
.y4c{bottom:966.020000pt;}
.ye1{bottom:966.977333pt;}
.y1af{bottom:967.414667pt;}
.y1d{bottom:971.530667pt;}
.y4b{bottom:982.757333pt;}
.ye0{bottom:984.073333pt;}
.y1b{bottom:1010.186667pt;}
.y4a{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.h4{height:29.433775pt;}
.hb{height:30.063343pt;}
.h3{height:30.399505pt;}
.hd{height:34.574438pt;}
.h5{height:35.073565pt;}
.h13{height:35.212691pt;}
.h12{height:37.087439pt;}
.h11{height:38.080100pt;}
.hf{height:38.415786pt;}
.h8{height:39.000258pt;}
.hc{height:40.084290pt;}
.h6{height:44.738497pt;}
.he{height:45.095014pt;}
.ha{height:48.486756pt;}
.h10{height:50.105236pt;}
.h9{height:69.148877pt;}
.h7{height:82.466667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:154.596137pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:50.159690pt;}
.xcb{left:76.309333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x20{left:229.828000pt;}
.x5{left:239.924000pt;}
.xa{left:250.204000pt;}
.xb8{left:251.944000pt;}
.x21{left:253.738667pt;}
.x53{left:256.532000pt;}
.x59{left:257.758667pt;}
.x43{left:259.282667pt;}
.x28{left:260.502667pt;}
.x47{left:261.692000pt;}
.xb{left:264.010667pt;}
.x80{left:265.506667pt;}
.x29{left:267.144000pt;}
.x22{left:268.682667pt;}
.xc{left:270.652000pt;}
.x46{left:271.673333pt;}
.x1d{left:272.712000pt;}
.x8{left:274.602667pt;}
.x75{left:275.577333pt;}
.x9a{left:276.604000pt;}
.xca{left:277.612000pt;}
.x81{left:278.790667pt;}
.xd{left:280.681333pt;}
.xa5{left:281.688000pt;}
.x9{left:284.762667pt;}
.xa7{left:286.689333pt;}
.xae{left:288.188000pt;}
.x9b{left:289.888000pt;}
.x48{left:291.405333pt;}
.x23{left:292.593333pt;}
.x5a{left:294.352000pt;}
.x44{left:295.434667pt;}
.x5b{left:297.286667pt;}
.x57{left:298.585333pt;}
.xa8{left:299.972000pt;}
.x4a{left:301.089333pt;}
.x45{left:303.265333pt;}
.x95{left:304.186667pt;}
.x90{left:306.209333pt;}
.x10{left:308.030667pt;}
.x49{left:310.706667pt;}
.x42{left:311.693333pt;}
.x5c{left:313.241333pt;}
.x11{left:314.672000pt;}
.x12{left:318.058667pt;}
.x91{left:319.493333pt;}
.x7{left:323.849333pt;}
.x88{left:326.554667pt;}
.x84{left:328.866667pt;}
.x2a{left:330.830667pt;}
.x15{left:334.917333pt;}
.xad{left:340.498667pt;}
.x16{left:341.558667pt;}
.x17{left:344.946667pt;}
.x58{left:345.878667pt;}
.xc6{left:348.636000pt;}
.x18{left:351.588000pt;}
.x61{left:352.970667pt;}
.x92{left:356.290667pt;}
.x96{left:357.329333pt;}
.x79{left:363.204000pt;}
.xb7{left:364.988000pt;}
.x62{left:366.254667pt;}
.x63{left:369.509333pt;}
.x97{left:370.613333pt;}
.x93{left:372.961333pt;}
.x1e{left:375.700000pt;}
.x82{left:377.478667pt;}
.x76{left:378.810667pt;}
.x64{left:382.792000pt;}
.x94{left:386.245333pt;}
.xb3{left:387.994667pt;}
.x1f{left:388.984000pt;}
.x83{left:390.761333pt;}
.x77{left:392.094667pt;}
.x52{left:396.836000pt;}
.xb4{left:402.740000pt;}
.x65{left:406.034667pt;}
.xc4{left:410.078667pt;}
.x5e{left:411.240000pt;}
.xe{left:413.786667pt;}
.xc2{left:417.269333pt;}
.x66{left:418.920000pt;}
.xf{left:420.428000pt;}
.x70{left:422.494667pt;}
.x41{left:424.852000pt;}
.x56{left:426.842667pt;}
.xc5{left:430.004000pt;}
.x13{left:433.245333pt;}
.xc3{left:437.194667pt;}
.x14{left:439.888000pt;}
.xb9{left:441.478667pt;}
.x26{left:443.798667pt;}
.xbb{left:453.108000pt;}
.x8e{left:454.848000pt;}
.x27{left:457.082667pt;}
.x2b{left:459.045333pt;}
.xb5{left:466.522667pt;}
.x8f{left:468.132000pt;}
.x7a{left:470.081333pt;}
.x2c{left:472.329333pt;}
.xb6{left:479.805333pt;}
.x7b{left:482.965333pt;}
.x7c{left:486.025333pt;}
.x24{left:487.369333pt;}
.x7d{left:498.910667pt;}
.x25{left:500.653333pt;}
.x5d{left:509.632000pt;}
.x85{left:511.694667pt;}
.x4d{left:513.026667pt;}
.x4e{left:517.634667pt;}
.x3b{left:520.574667pt;}
.xa2{left:522.801333pt;}
.x55{left:527.754667pt;}
.x6d{left:529.578667pt;}
.x3c{left:533.858667pt;}
.x73{left:535.349333pt;}
.x86{left:540.738667pt;}
.x74{left:548.632000pt;}
.xbf{left:550.640000pt;}
.xc1{left:552.980000pt;}
.x87{left:554.022667pt;}
.xa6{left:557.225333pt;}
.xd6{left:558.188000pt;}
.xc0{left:559.441333pt;}
.x51{left:563.010667pt;}
.x4f{left:564.934667pt;}
.x54{left:567.828000pt;}
.x4b{left:569.568000pt;}
.x5f{left:570.634667pt;}
.x50{left:572.628000pt;}
.x78{left:575.854667pt;}
.x33{left:578.697333pt;}
.x60{left:580.592000pt;}
.x98{left:584.592000pt;}
.xa3{left:589.002667pt;}
.x34{left:591.981333pt;}
.x35{left:595.262667pt;}
.x99{left:597.876000pt;}
.x4c{left:602.725333pt;}
.x37{left:604.248000pt;}
.x36{left:608.545333pt;}
.x19{left:609.718667pt;}
.x6b{left:611.224000pt;}
.x8c{left:613.877333pt;}
.xa9{left:615.722667pt;}
.x38{left:617.532000pt;}
.x8a{left:619.141333pt;}
.x39{left:620.918667pt;}
.x1a{left:623.002667pt;}
.x6c{left:624.109333pt;}
.x1b{left:629.518667pt;}
.x8b{left:632.425333pt;}
.x3a{left:634.202667pt;}
.xce{left:635.366667pt;}
.x1c{left:642.801333pt;}
.x7e{left:643.692000pt;}
.xd4{left:645.190667pt;}
.x67{left:646.846667pt;}
.x9c{left:648.142667pt;}
.xd3{left:649.286667pt;}
.xd1{left:650.374667pt;}
.xa4{left:652.014667pt;}
.x8d{left:654.922667pt;}
.x89{left:655.885333pt;}
.x7f{left:656.976000pt;}
.xcc{left:658.753333pt;}
.x68{left:659.732000pt;}
.x9d{left:661.426667pt;}
.xc9{left:662.541333pt;}
.x9e{left:664.681333pt;}
.x3d{left:666.474667pt;}
.xbc{left:667.713333pt;}
.x6e{left:670.602667pt;}
.xd2{left:671.884000pt;}
.x3e{left:673.116000pt;}
.x71{left:675.406667pt;}
.xaf{left:676.830667pt;}
.x9f{left:677.964000pt;}
.xaa{left:679.620000pt;}
.xbd{left:680.997333pt;}
.xcd{left:682.664000pt;}
.x6f{left:683.686667pt;}
.xab{left:686.394667pt;}
.xd0{left:687.793333pt;}
.x72{left:688.689333pt;}
.xb0{left:690.113333pt;}
.xb1{left:693.501333pt;}
.xc7{left:696.389333pt;}
.xcf{left:702.609333pt;}
.xbe{left:704.229333pt;}
.xac{left:706.320000pt;}
.x69{left:707.504000pt;}
.x2d{left:708.489333pt;}
.x2f{left:710.437333pt;}
.xb2{left:713.426667pt;}
.xc8{left:716.314667pt;}
.x6a{left:720.388000pt;}
.x2e{left:721.773333pt;}
.xba{left:722.761333pt;}
.x30{left:723.721333pt;}
.xd5{left:726.045333pt;}
.x31{left:727.028000pt;}
.x3f{left:727.966667pt;}
.xa0{left:735.306667pt;}
.x32{left:740.312000pt;}
.x40{left:741.250667pt;}
.xa1{left:744.106667pt;}
}




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