
    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_e6a767f141751479dde00707.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_2bc44df3cfc3fcd2bacf0cbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999000;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_aaa75b9525a2e839096190bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.845000;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_724435281c88603b13799102.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_69416ff605e27c9eabe7afcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4e4bed1b76ff30f053196190.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_49418afae91726de843c5e67.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2682094e8415972387a2e628.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.877000;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_fccc1a86dab1c2d1750edcbf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4ef36241f2167afe5bde450d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.704000;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_903254608b54e7d7c912b638.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.049000;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_47282a894dfeba3550f3dfae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a8b27e1d34a1079edb5426dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m23{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);}
.m1a{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);}
.m22{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);}
.m25{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);}
.m2{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m19{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);}
.m1e{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);}
.m13{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);}
.mf{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);}
.m7{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);}
.m1d{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);}
.m27{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m8{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);}
.ma{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);}
.m17{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);}
.me{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);}
.m11{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m9{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);}
.m24{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);}
.md{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.690000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001923px;}
.ls8{letter-spacing:0.004323px;}
.ls15{letter-spacing:0.239102px;}
.ls0{letter-spacing:1.673717px;}
.ls7{letter-spacing:4.000868px;}
.ls3{letter-spacing:6.455765px;}
.ls9{letter-spacing:9.982525px;}
.ls4{letter-spacing:13.270183px;}
.ls11{letter-spacing:13.329959px;}
.ls10{letter-spacing:16.557841px;}
.lsc{letter-spacing:16.617617px;}
.lse{letter-spacing:17.454475px;}
.lsd{letter-spacing:18.231558px;}
.ls12{letter-spacing:19.785724px;}
.ls14{letter-spacing:19.905275px;}
.ls5{letter-spacing:19.965050px;}
.ls13{letter-spacing:22.475626px;}
.lsf{letter-spacing:26.241488px;}
.lsa{letter-spacing:27.616327px;}
.lsb{letter-spacing:27.735878px;}
.ls2{letter-spacing:29.887800px;}
.ls17{letter-spacing:71.730720px;}
.ls18{letter-spacing:87.929908px;}
.ls16{letter-spacing:112.856333px;}
.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;}
}
.ws44{word-spacing:-43.157983px;}
.ws36{word-spacing:-38.937826px;}
.ws9a{word-spacing:-30.551309px;}
.ws62{word-spacing:-29.887800px;}
.ws33{word-spacing:-25.667643px;}
.wsa3{word-spacing:-15.242778px;}
.ws22{word-spacing:-13.688612px;}
.ws86{word-spacing:-13.389734px;}
.ws29{word-spacing:-13.031081px;}
.ws45{word-spacing:-12.911530px;}
.ws84{word-spacing:-12.672427px;}
.wsa4{word-spacing:-12.612652px;}
.ws57{word-spacing:-12.373549px;}
.ws58{word-spacing:-12.313774px;}
.ws9f{word-spacing:-12.194222px;}
.ws37{word-spacing:-12.134447px;}
.ws60{word-spacing:-11.955120px;}
.ws5e{word-spacing:-11.895344px;}
.ws1b{word-spacing:-11.656242px;}
.ws5f{word-spacing:-11.476915px;}
.ws18{word-spacing:-11.357364px;}
.ws83{word-spacing:-11.237813px;}
.ws35{word-spacing:-11.118262px;}
.ws28{word-spacing:-10.938935px;}
.wsa0{word-spacing:-10.646034px;}
.ws7{word-spacing:-10.580281px;}
.ws2d{word-spacing:-10.460730px;}
.ws2c{word-spacing:-10.400954px;}
.wsa{word-spacing:-10.341179px;}
.ws11{word-spacing:-10.281403px;}
.wsf{word-spacing:-10.221628px;}
.ws4{word-spacing:-10.161852px;}
.wsb{word-spacing:-10.102076px;}
.ws5{word-spacing:-10.042301px;}
.ws6{word-spacing:-9.982525px;}
.ws27{word-spacing:-9.922750px;}
.ws1a{word-spacing:-9.862974px;}
.ws2{word-spacing:-9.803198px;}
.ws3{word-spacing:-9.743423px;}
.ws2a{word-spacing:-9.683647px;}
.ws2e{word-spacing:-9.623872px;}
.ws9b{word-spacing:-9.570074px;}
.ws3f{word-spacing:-9.564096px;}
.ws1c{word-spacing:-9.384769px;}
.ws8{word-spacing:-9.265218px;}
.wsa5{word-spacing:-9.211420px;}
.ws99{word-spacing:-9.151644px;}
.ws40{word-spacing:-8.966340px;}
.ws63{word-spacing:-8.906564px;}
.ws4a{word-spacing:-8.846789px;}
.ws7e{word-spacing:-8.787013px;}
.ws19{word-spacing:-8.667462px;}
.ws23{word-spacing:-8.488135px;}
.ws64{word-spacing:-8.428360px;}
.ws95{word-spacing:-8.368584px;}
.ws7f{word-spacing:-8.308808px;}
.wsc{word-spacing:-8.249033px;}
.ws8a{word-spacing:-8.129482px;}
.ws15{word-spacing:-8.009930px;}
.ws66{word-spacing:-7.950155px;}
.ws9{word-spacing:-7.890379px;}
.ws67{word-spacing:-7.711052px;}
.ws6a{word-spacing:-7.651277px;}
.ws8b{word-spacing:-7.591501px;}
.ws10{word-spacing:-7.471950px;}
.wsd{word-spacing:-7.412174px;}
.ws5d{word-spacing:-7.292623px;}
.ws97{word-spacing:-7.113296px;}
.ws2b{word-spacing:-6.993745px;}
.ws5c{word-spacing:-6.933970px;}
.ws5b{word-spacing:-6.874194px;}
.ws30{word-spacing:-6.814418px;}
.ws6f{word-spacing:-6.694867px;}
.ws98{word-spacing:-6.641069px;}
.ws17{word-spacing:-6.635092px;}
.ws69{word-spacing:-6.395989px;}
.ws14{word-spacing:-6.276438px;}
.wsa1{word-spacing:-6.097111px;}
.ws52{word-spacing:-5.977560px;}
.ws31{word-spacing:-5.738458px;}
.ws6b{word-spacing:-5.678682px;}
.ws87{word-spacing:-5.499355px;}
.ws9d{word-spacing:-5.439580px;}
.ws9c{word-spacing:-5.140702px;}
.ws81{word-spacing:-4.961375px;}
.ws24{word-spacing:-4.901599px;}
.ws25{word-spacing:-4.841824px;}
.ws50{word-spacing:-4.662497px;}
.ws85{word-spacing:-4.602721px;}
.ws13{word-spacing:-4.423394px;}
.ws3d{word-spacing:-4.303843px;}
.ws80{word-spacing:-4.124516px;}
.wsa2{word-spacing:-3.945190px;}
.ws74{word-spacing:-3.885414px;}
.ws43{word-spacing:-3.466985px;}
.ws9e{word-spacing:-3.407209px;}
.ws78{word-spacing:-3.347434px;}
.ws6c{word-spacing:-3.227882px;}
.ws1d{word-spacing:-3.168107px;}
.ws4f{word-spacing:-2.749678px;}
.ws77{word-spacing:-2.630126px;}
.wsa6{word-spacing:-2.570351px;}
.wse{word-spacing:-2.450800px;}
.ws72{word-spacing:-2.271473px;}
.ws8c{word-spacing:-2.151922px;}
.ws26{word-spacing:-1.733492px;}
.ws89{word-spacing:-1.494390px;}
.ws88{word-spacing:-1.434614px;}
.ws1e{word-spacing:-1.374839px;}
.ws6d{word-spacing:-1.315063px;}
.ws90{word-spacing:-1.075961px;}
.ws75{word-spacing:-0.717307px;}
.ws54{word-spacing:-0.059776px;}
.ws1f{word-spacing:-0.053798px;}
.ws55{word-spacing:-0.041843px;}
.ws20{word-spacing:0.000000px;}
.ws2f{word-spacing:0.896634px;}
.ws93{word-spacing:3.526760px;}
.ws38{word-spacing:6.276438px;}
.ws53{word-spacing:13.210408px;}
.ws96{word-spacing:16.258963px;}
.ws12{word-spacing:16.318739px;}
.ws4d{word-spacing:16.378514px;}
.ws32{word-spacing:16.498066px;}
.ws3a{word-spacing:16.557841px;}
.ws7d{word-spacing:16.617617px;}
.ws47{word-spacing:16.677392px;}
.ws3e{word-spacing:16.737168px;}
.ws49{word-spacing:16.856719px;}
.ws56{word-spacing:17.454475px;}
.ws71{word-spacing:17.514251px;}
.ws41{word-spacing:18.530436px;}
.ws61{word-spacing:18.590212px;}
.ws4b{word-spacing:18.709763px;}
.ws94{word-spacing:18.889090px;}
.ws59{word-spacing:19.307519px;}
.ws65{word-spacing:19.427070px;}
.ws4e{word-spacing:19.606397px;}
.ws46{word-spacing:19.725948px;}
.ws3b{word-spacing:19.845499px;}
.ws3c{word-spacing:19.905275px;}
.ws48{word-spacing:19.965050px;}
.ws68{word-spacing:20.622582px;}
.ws42{word-spacing:20.861684px;}
.ws4c{word-spacing:20.981236px;}
.ws70{word-spacing:21.100787px;}
.ws6e{word-spacing:21.160562px;}
.ws5a{word-spacing:21.339889px;}
.ws1{word-spacing:22.834279px;}
.ws51{word-spacing:23.551586px;}
.ws82{word-spacing:23.970016px;}
.ws7c{word-spacing:26.301264px;}
.ws21{word-spacing:26.827469px;}
.ws73{word-spacing:26.958796px;}
.ws91{word-spacing:28.752064px;}
.ws76{word-spacing:29.110717px;}
.ws92{word-spacing:31.681068px;}
.ws0{word-spacing:38.631358px;}
.ws79{word-spacing:41.842920px;}
.ws39{word-spacing:43.994842px;}
.ws7a{word-spacing:61.748195px;}
.ws7b{word-spacing:61.807970px;}
.ws34{word-spacing:68.682164px;}
.ws8e{word-spacing:71.730720px;}
.ws16{word-spacing:80.625869px;}
.ws8f{word-spacing:127.501355px;}
.ws8d{word-spacing:131.506320px;}
._5{margin-left:-6.754643px;}
._3{margin-left:-5.021150px;}
._4{margin-left:-3.347434px;}
._0{margin-left:-1.673717px;}
._1{width:1.673717px;}
._15{width:2.686586px;}
._27{width:3.772494px;}
._3c{width:5.140702px;}
._13{width:8.368584px;}
._3e{width:17.633802px;}
._3a{width:18.769538px;}
._16{width:20.383480px;}
._3f{width:21.997421px;}
._3b{width:23.671138px;}
._b{width:24.747098px;}
._39{width:25.823059px;}
._2{width:26.899020px;}
._26{width:28.034756px;}
._7{width:29.409595px;}
._c{width:30.963761px;}
._6{width:32.637478px;}
._9{width:34.610072px;}
._10{width:35.865360px;}
._12{width:38.196608px;}
._14{width:40.049652px;}
._38{width:41.245164px;}
._f{width:42.500452px;}
._a{width:43.755739px;}
._3d{width:45.190354px;}
._8{width:49.852850px;}
._17{width:53.319835px;}
._11{width:59.715824px;}
._25{width:65.394506px;}
._e{width:68.741940px;}
._35{width:72.089374px;}
._d{width:80.697600px;}
._1d{width:91.635995px;}
._24{width:101.618520px;}
._36{width:104.308422px;}
._1b{width:113.573640px;}
._21{width:143.461440px;}
._33{width:147.466405px;}
._2a{width:157.389155px;}
._2b{width:161.394120px;}
._32{width:164.741554px;}
._29{width:187.276955px;}
._31{width:191.640574px;}
._1a{width:194.151149px;}
._23{width:207.481108px;}
._1e{width:214.355302px;}
._18{width:230.255611px;}
._2c{width:234.320352px;}
._20{width:235.934293px;}
._2d{width:255.899344px;}
._2f{width:289.493231px;}
._22{width:305.871745px;}
._2e{width:325.777020px;}
._1f{width:359.490458px;}
._1c{width:389.378258px;}
._19{width:398.822803px;}
._28{width:561.711313px;}
._34{width:619.275216px;}
._30{width:823.827319px;}
._37{width:853.535792px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y60{bottom:63.168000px;}
.y2d{bottom:77.887500px;}
.y5f{bottom:108.000000px;}
.y113{bottom:115.423500px;}
.yc1{bottom:118.659000px;}
.y5e{bottom:124.363500px;}
.y2c{bottom:124.378500px;}
.y112{bottom:131.787000px;}
.yc0{bottom:135.022500px;}
.y8f{bottom:140.727000px;}
.y2b{bottom:140.742000px;}
.y5d{bottom:145.875000px;}
.y111{bottom:148.150500px;}
.ybf{bottom:151.386000px;}
.y14f{bottom:152.770500px;}
.yee{bottom:157.090500px;}
.y2a{bottom:157.105500px;}
.y110{bottom:164.514000px;}
.y8e{bottom:165.723000px;}
.ybe{bottom:167.749500px;}
.y14e{bottom:169.134000px;}
.y5c{bottom:173.244000px;}
.yed{bottom:173.454000px;}
.y29{bottom:173.469000px;}
.y8d{bottom:182.086500px;}
.ybd{bottom:184.113000px;}
.y10f{bottom:188.685000px;}
.y5b{bottom:189.607500px;}
.yec{bottom:189.817500px;}
.y28{bottom:189.832500px;}
.yf3{bottom:194.445000px;}
.y14d{bottom:197.542500px;}
.y8c{bottom:198.450000px;}
.y125{bottom:199.473000px;}
.y5a{bottom:205.972500px;}
.y27{bottom:206.196000px;}
.ybc{bottom:208.285500px;}
.yf2{bottom:210.808500px;}
.y14c{bottom:213.906000px;}
.y8b{bottom:214.815000px;}
.yeb{bottom:214.894500px;}
.yf1{bottom:227.172000px;}
.y59{bottom:227.482500px;}
.y10e{bottom:228.595500px;}
.y8a{bottom:231.178500px;}
.yea{bottom:231.259500px;}
.y124{bottom:233.271000px;}
.y26{bottom:235.173000px;}
.y14b{bottom:242.313000px;}
.ybb{bottom:246.144000px;}
.y89{bottom:247.542000px;}
.ye9{bottom:247.623000px;}
.y123{bottom:249.634500px;}
.y25{bottom:251.536500px;}
.y58{bottom:254.853000px;}
.y14a{bottom:258.676500px;}
.y10d{bottom:262.386000px;}
.yba{bottom:262.507500px;}
.ye8{bottom:263.986500px;}
.y24{bottom:267.900000px;}
.y88{bottom:269.247000px;}
.y57{bottom:271.216500px;}
.y122{bottom:274.186500px;}
.y10c{bottom:278.749500px;}
.ye7{bottom:280.350000px;}
.y23{bottom:284.265000px;}
.yb9{bottom:287.053500px;}
.y149{bottom:287.083500px;}
.y56{bottom:287.580000px;}
.y121{bottom:290.550000px;}
.y10b{bottom:295.113000px;}
.y87{bottom:297.676500px;}
.y22{bottom:300.628500px;}
.yb8{bottom:303.417000px;}
.y148{bottom:303.447000px;}
.y55{bottom:303.943500px;}
.ye6{bottom:306.708000px;}
.y10a{bottom:311.476500px;}
.y86{bottom:314.040000px;}
.y120{bottom:315.102000px;}
.y21{bottom:316.992000px;}
.yb7{bottom:319.780500px;}
.y54{bottom:320.307000px;}
.y85{bottom:330.403500px;}
.y147{bottom:331.855500px;}
.y20{bottom:333.355500px;}
.yb6{bottom:336.144000px;}
.y109{bottom:337.491000px;}
.ye5{bottom:341.070000px;}
.y53{bottom:344.853000px;}
.y84{bottom:346.768500px;}
.y146{bottom:348.219000px;}
.y1f{bottom:349.719000px;}
.y11f{bottom:352.311000px;}
.yb5{bottom:352.507500px;}
.ye4{bottom:357.433500px;}
.y83{bottom:363.132000px;}
.y11e{bottom:368.674500px;}
.yb4{bottom:368.871000px;}
.y52{bottom:369.397500px;}
.y108{bottom:371.281500px;}
.ye3{bottom:373.797000px;}
.y145{bottom:376.626000px;}
.y1e{bottom:378.595500px;}
.y82{bottom:379.495500px;}
.y11d{bottom:385.038000px;}
.y51{bottom:385.762500px;}
.y107{bottom:387.645000px;}
.ye2{bottom:390.160500px;}
.yb3{bottom:393.417000px;}
.y81{bottom:395.859000px;}
.y144{bottom:405.033000px;}
.ye1{bottom:406.524000px;}
.yb2{bottom:409.780500px;}
.y50{bottom:410.307000px;}
.y80{bottom:412.222500px;}
.y106{bottom:413.659500px;}
.y1d{bottom:418.564500px;}
.y143{bottom:421.396500px;}
.ye0{bottom:422.887500px;}
.yb1{bottom:426.144000px;}
.y4f{bottom:426.670500px;}
.y7f{bottom:433.927500px;}
.y1c{bottom:434.928000px;}
.y142{bottom:437.760000px;}
.yb0{bottom:442.507500px;}
.y4e{bottom:443.034000px;}
.ydf{bottom:444.628500px;}
.y105{bottom:447.450000px;}
.y1b{bottom:451.291500px;}
.y141{bottom:454.123500px;}
.yaf{bottom:458.871000px;}
.y7e{bottom:462.357000px;}
.y104{bottom:463.813500px;}
.y4d{bottom:464.545500px;}
.y1a{bottom:467.655000px;}
.yde{bottom:473.145000px;}
.yae{bottom:475.234500px;}
.y7d{bottom:478.720500px;}
.y103{bottom:480.177000px;}
.y140{bottom:482.532000px;}
.y19{bottom:484.018500px;}
.ydd{bottom:489.508500px;}
.yad{bottom:491.599500px;}
.y4c{bottom:491.916000px;}
.y7c{bottom:495.085500px;}
.y102{bottom:496.540500px;}
.y13f{bottom:498.895500px;}
.y18{bottom:500.383500px;}
.ydc{bottom:505.872000px;}
.yac{bottom:507.963000px;}
.y4b{bottom:508.279500px;}
.y7b{bottom:511.449000px;}
.y101{bottom:512.904000px;}
.y13e{bottom:515.259000px;}
.y17{bottom:516.747000px;}
.ydb{bottom:522.235500px;}
.y4a{bottom:524.643000px;}
.y100{bottom:529.267500px;}
.yab{bottom:532.507500px;}
.y16{bottom:533.110500px;}
.y7a{bottom:536.445000px;}
.y49{bottom:541.006500px;}
.y13d{bottom:543.666000px;}
.yff{bottom:545.631000px;}
.yda{bottom:547.312500px;}
.yaa{bottom:548.871000px;}
.y15{bottom:549.474000px;}
.y79{bottom:552.808500px;}
.y48{bottom:557.370000px;}
.y13c{bottom:560.029500px;}
.yfe{bottom:561.994500px;}
.yd9{bottom:563.676000px;}
.ya9{bottom:565.234500px;}
.y14{bottom:565.837500px;}
.y78{bottom:569.172000px;}
.y47{bottom:573.733500px;}
.yfd{bottom:578.358000px;}
.ya8{bottom:581.599500px;}
.y13{bottom:582.201000px;}
.y77{bottom:585.535500px;}
.y13b{bottom:588.436500px;}
.yd8{bottom:588.754500px;}
.y46{bottom:590.097000px;}
.yfc{bottom:594.721500px;}
.ya7{bottom:597.963000px;}
.y12{bottom:598.564500px;}
.y13a{bottom:604.800000px;}
.y45{bottom:606.460500px;}
.y76{bottom:610.531500px;}
.yfb{bottom:611.085000px;}
.yd7{bottom:613.831500px;}
.ya6{bottom:614.326500px;}
.y11{bottom:614.928000px;}
.y44{bottom:622.824000px;}
.y74{bottom:626.895000px;}
.yfa{bottom:627.448500px;}
.yd6{bottom:630.195000px;}
.ya5{bottom:630.690000px;}
.y10{bottom:631.291500px;}
.y75{bottom:632.319000px;}
.y139{bottom:633.208500px;}
.y43{bottom:639.187500px;}
.y73{bottom:643.258500px;}
.ya4{bottom:647.053500px;}
.yf{bottom:647.655000px;}
.y138{bottom:649.572000px;}
.yf9{bottom:653.464500px;}
.yd5{bottom:655.272000px;}
.y42{bottom:655.552500px;}
.ya3{bottom:663.417000px;}
.ye{bottom:664.018500px;}
.y72{bottom:668.254500px;}
.yf0{bottom:669.613500px;}
.y41{bottom:671.916000px;}
.y137{bottom:677.979000px;}
.ya2{bottom:679.780500px;}
.yd4{bottom:680.349000px;}
.yd{bottom:680.382000px;}
.y71{bottom:684.619500px;}
.yef{bottom:685.977000px;}
.yf8{bottom:687.253500px;}
.y40{bottom:693.426000px;}
.y136{bottom:694.342500px;}
.ya1{bottom:696.144000px;}
.yc{bottom:696.747000px;}
.y70{bottom:700.983000px;}
.yd3{bottom:702.088500px;}
.yf7{bottom:703.617000px;}
.yb{bottom:713.110500px;}
.y6f{bottom:717.346500px;}
.ya0{bottom:717.655500px;}
.yf6{bottom:719.980500px;}
.y11c{bottom:720.556500px;}
.y3f{bottom:720.796500px;}
.y135{bottom:722.749500px;}
.ya{bottom:729.474000px;}
.yd2{bottom:730.605000px;}
.y11b{bottom:736.920000px;}
.y3e{bottom:737.160000px;}
.y134{bottom:739.113000px;}
.y6e{bottom:742.342500px;}
.y9f{bottom:745.600500px;}
.y9{bottom:745.837500px;}
.yd1{bottom:746.970000px;}
.y11a{bottom:753.283500px;}
.y3d{bottom:753.523500px;}
.y9e{bottom:761.964000px;}
.y8{bottom:762.201000px;}
.yd0{bottom:763.333500px;}
.y6d{bottom:767.338500px;}
.y133{bottom:767.520000px;}
.yf5{bottom:768.549000px;}
.y3c{bottom:769.887000px;}
.y119{bottom:777.456000px;}
.y9d{bottom:778.327500px;}
.y7{bottom:778.564500px;}
.y6c{bottom:783.702000px;}
.y132{bottom:783.885000px;}
.yf4{bottom:784.912500px;}
.ycf{bottom:785.073000px;}
.y3b{bottom:786.250500px;}
.y9c{bottom:794.691000px;}
.y6{bottom:794.928000px;}
.y3a{bottom:807.762000px;}
.y6b{bottom:808.698000px;}
.y9b{bottom:811.054500px;}
.y118{bottom:812.290500px;}
.y131{bottom:812.292000px;}
.yce{bottom:813.589500px;}
.y5{bottom:827.122500px;}
.y9a{bottom:827.418000px;}
.y130{bottom:828.655500px;}
.ycd{bottom:829.953000px;}
.y6a{bottom:830.403000px;}
.y39{bottom:833.202000px;}
.y117{bottom:840.241500px;}
.y98{bottom:843.781500px;}
.ycc{bottom:846.318000px;}
.y99{bottom:849.205500px;}
.y116{bottom:856.605000px;}
.y69{bottom:856.710000px;}
.y12f{bottom:857.062500px;}
.y97{bottom:860.145000px;}
.y38{bottom:866.416500px;}
.ycb{bottom:871.395000px;}
.y115{bottom:872.970000px;}
.y12e{bottom:873.426000px;}
.y96{bottom:876.510000px;}
.y37{bottom:882.780000px;}
.y155{bottom:886.326000px;}
.yca{bottom:887.758500px;}
.y4{bottom:888.895500px;}
.y68{bottom:890.983500px;}
.y36{bottom:899.143500px;}
.y95{bottom:901.054500px;}
.y12d{bottom:901.833000px;}
.y3{bottom:905.259000px;}
.y154{bottom:914.644500px;}
.y67{bottom:915.981000px;}
.y12c{bottom:918.196500px;}
.y114{bottom:924.262500px;}
.y35{bottom:924.583500px;}
.y94{bottom:925.600500px;}
.y153{bottom:931.008000px;}
.y12b{bottom:934.561500px;}
.yc9{bottom:940.626000px;}
.y66{bottom:940.977000px;}
.y93{bottom:950.145000px;}
.yc8{bottom:956.989500px;}
.y34{bottom:957.798000px;}
.y152{bottom:959.328000px;}
.y12a{bottom:962.968500px;}
.y65{bottom:965.973000px;}
.yc7{bottom:973.353000px;}
.y33{bottom:974.161500px;}
.y92{bottom:974.691000px;}
.y129{bottom:979.332000px;}
.y151{bottom:987.646500px;}
.y2{bottom:988.678500px;}
.yc6{bottom:989.716500px;}
.y32{bottom:990.525000px;}
.y64{bottom:990.969000px;}
.y91{bottom:999.237000px;}
.y150{bottom:1004.010000px;}
.yc5{bottom:1006.080000px;}
.y31{bottom:1006.888500px;}
.y128{bottom:1007.739000px;}
.y63{bottom:1015.965000px;}
.y1{bottom:1018.566000px;}
.y90{bottom:1020.747000px;}
.yc4{bottom:1022.443500px;}
.y30{bottom:1023.252000px;}
.y127{bottom:1024.102500px;}
.y62{bottom:1032.328500px;}
.yc3{bottom:1038.807000px;}
.y2f{bottom:1039.617000px;}
.y126{bottom:1040.466000px;}
.y61{bottom:1048.692000px;}
.yc2{bottom:1062.979500px;}
.y2e{bottom:1065.055500px;}
.h6{height:28.285733px;}
.h5{height:36.744307px;}
.h3{height:36.881545px;}
.h2{height:44.831700px;}
.h7{height:49.975733px;}
.h8{height:49.981733px;}
.h4{height:50.211840px;}
.h1{height:72.304680px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2f{left:160.251000px;}
.x10{left:162.000000px;}
.x6e{left:165.946500px;}
.xe7{left:167.683500px;}
.xcf{left:169.621500px;}
.x52{left:173.670000px;}
.xd3{left:177.922500px;}
.x89{left:185.532000px;}
.xf1{left:190.945500px;}
.xf0{left:192.718500px;}
.x30{left:196.702500px;}
.x53{left:201.124500px;}
.xc9{left:203.076000px;}
.xd4{left:205.090500px;}
.x6f{left:208.654500px;}
.x1{left:212.059500px;}
.x7{left:214.050000px;}
.x6{left:215.799000px;}
.x90{left:218.412000px;}
.x8a{left:220.297500px;}
.x8b{left:224.448000px;}
.x9b{left:226.168500px;}
.x70{left:227.451000px;}
.xc0{left:231.240000px;}
.x71{left:234.922500px;}
.xca{left:236.485500px;}
.x8d{left:237.729000px;}
.x72{left:242.245500px;}
.x91{left:243.915000px;}
.x8e{left:245.350500px;}
.x73{left:246.396000px;}
.x92{left:248.065500px;}
.x8f{left:249.502500px;}
.x9c{left:250.587000px;}
.x15{left:252.471000px;}
.x9d{left:254.739000px;}
.xcb{left:259.881000px;}
.xd0{left:264.555000px;}
.x16{left:267.415500px;}
.x2b{left:272.985000px;}
.x93{left:275.001000px;}
.x17{left:276.619500px;}
.xa7{left:279.415500px;}
.x2c{left:280.456500px;}
.x80{left:282.189000px;}
.x18{left:284.091000px;}
.xd5{left:286.212000px;}
.x94{left:290.694000px;}
.x19{left:293.295000px;}
.xc7{left:295.803000px;}
.x95{left:298.315500px;}
.x1a{left:300.766500px;}
.x96{left:302.466000px;}
.xe6{left:305.989500px;}
.x3a{left:308.049000px;}
.x1b{left:309.972000px;}
.xd6{left:313.381500px;}
.xc5{left:315.420000px;}
.x1c{left:317.443500px;}
.xec{left:319.897500px;}
.xa8{left:321.481500px;}
.xed{left:324.049500px;}
.x81{left:325.624500px;}
.x2{left:327.022500px;}
.x82{left:329.775000px;}
.x3b{left:333.816000px;}
.x9e{left:339.480000px;}
.xcc{left:342.589500px;}
.x62{left:346.842000px;}
.x54{left:350.670000px;}
.x3c{left:352.081500px;}
.xc6{left:355.032000px;}
.x9a{left:356.133000px;}
.x3d{left:359.583000px;}
.x55{left:361.978500px;}
.x11{left:366.607500px;}
.x12{left:371.589000px;}
.x3e{left:373.726500px;}
.x63{left:375.216000px;}
.x4{left:376.621500px;}
.x2d{left:380.172000px;}
.xcd{left:383.362500px;}
.x56{left:385.282500px;}
.x3f{left:387.870000px;}
.x57{left:389.433000px;}
.x20{left:391.302000px;}
.x2e{left:395.116500px;}
.x64{left:397.930500px;}
.xc8{left:399.051000px;}
.x21{left:400.189500px;}
.x40{left:402.013500px;}
.x3{left:404.014500px;}
.x65{left:405.552000px;}
.x41{left:408.655500px;}
.x66{left:409.704000px;}
.x35{left:413.385000px;}
.x22{left:415.134000px;}
.x42{left:416.157000px;}
.x6d{left:417.915000px;}
.x5{left:420.448500px;}
.x46{left:422.550000px;}
.x87{left:424.576500px;}
.x36{left:426.234000px;}
.x13{left:428.403000px;}
.x14{left:433.384500px;}
.xc1{left:434.851500px;}
.x7a{left:436.645500px;}
.x59{left:439.114500px;}
.xd1{left:446.118000px;}
.x47{left:449.626500px;}
.xf2{left:451.528500px;}
.x88{left:452.994000px;}
.x38{left:455.263500px;}
.xaa{left:457.165500px;}
.xae{left:458.523000px;}
.x58{left:460.170000px;}
.x48{left:461.250000px;}
.xaf{left:462.673500px;}
.x7b{left:464.029500px;}
.x5a{left:466.321500px;}
.x49{left:468.714000px;}
.x1e{left:469.857000px;}
.x4a{left:472.866000px;}
.x9f{left:476.991000px;}
.x7c{left:478.944000px;}
.x27{left:480.145500px;}
.x23{left:482.014500px;}
.x1f{left:484.801500px;}
.x7d{left:486.415500px;}
.xd2{left:488.247000px;}
.x5b{left:490.198500px;}
.xab{left:491.958000px;}
.x7e{left:493.873500px;}
.x28{left:495.090000px;}
.x24{left:496.957500px;}
.x7f{left:498.024000px;}
.x5c{left:501.868500px;}
.x25{left:504.996000px;}
.xe8{left:507.397500px;}
.x97{left:511.530000px;}
.x4b{left:516.061500px;}
.x26{left:519.940500px;}
.x5d{left:524.923500px;}
.xba{left:527.130000px;}
.x5e{left:529.075500px;}
.xbb{left:531.282000px;}
.xb0{left:536.478000px;}
.x4c{left:539.292000px;}
.x67{left:541.284000px;}
.x4d{left:543.442500px;}
.xc2{left:544.587000px;}
.xe9{left:546.586500px;}
.xb1{left:548.745000px;}
.xdd{left:550.620000px;}
.xe5{left:551.668500px;}
.x5f{left:554.700000px;}
.x31{left:556.639500px;}
.x98{left:558.309000px;}
.x32{left:561.619500px;}
.x99{left:565.930500px;}
.xac{left:568.405500px;}
.x60{left:569.494500px;}
.xb3{left:570.924000px;}
.xb2{left:572.973000px;}
.xdf{left:575.593500px;}
.x33{left:577.107000px;}
.xe1{left:579.718500px;}
.xee{left:581.037000px;}
.xa0{left:582.682500px;}
.x61{left:585.538500px;}
.xc3{left:586.540500px;}
.x39{left:588.615000px;}
.x34{left:592.051500px;}
.xa1{left:594.781500px;}
.xad{left:599.986500px;}
.x68{left:603.349500px;}
.xef{left:604.833000px;}
.x8{left:605.907000px;}
.xb4{left:608.125500px;}
.x1d{left:610.140000px;}
.xb5{left:612.277500px;}
.xa6{left:613.335000px;}
.xe0{left:614.851500px;}
.xa2{left:619.201500px;}
.xbc{left:620.991000px;}
.xa3{left:623.352000px;}
.x9{left:625.518000px;}
.xe2{left:626.574000px;}
.x83{left:628.957500px;}
.xd7{left:631.000500px;}
.x74{left:636.697500px;}
.xbd{left:638.127000px;}
.xc4{left:640.243500px;}
.x69{left:643.147500px;}
.xde{left:645.025500px;}
.xa{left:648.993000px;}
.xea{left:650.037000px;}
.x84{left:651.889500px;}
.xb{left:653.143500px;}
.xd8{left:654.189000px;}
.x75{left:656.334000px;}
.x6a{left:658.092000px;}
.x85{left:660.892500px;}
.x29{left:662.979000px;}
.xe3{left:666.568500px;}
.xc{left:668.268000px;}
.x2a{left:670.452000px;}
.xeb{left:674.340000px;}
.xd{left:675.739500px;}
.xe4{left:678.190500px;}
.x76{left:679.779000px;}
.xe{left:683.301000px;}
.xb6{left:684.778500px;}
.xf{left:687.451500px;}
.x6b{left:690.268500px;}
.x4e{left:692.844000px;}
.xa9{left:693.904500px;}
.x86{left:695.665500px;}
.xb7{left:697.270500px;}
.x77{left:699.009000px;}
.xdb{left:701.697000px;}
.xdc{left:702.717000px;}
.x4f{left:704.155500px;}
.x6c{left:705.213000px;}
.x43{left:706.273500px;}
.xd9{left:710.022000px;}
.xa4{left:711.493500px;}
.x78{left:714.019500px;}
.x79{left:718.171500px;}
.xbe{left:719.206500px;}
.xb8{left:721.722000px;}
.xbf{left:723.357000px;}
.xb9{left:725.872500px;}
.x50{left:727.386000px;}
.x8c{left:730.065000px;}
.x51{left:731.536500px;}
.xda{left:733.245000px;}
.x37{left:734.533500px;}
.x44{left:736.980000px;}
.x45{left:741.130500px;}
.xce{left:744.400500px;}
.xa5{left:748.737000px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.280000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001710pt;}
.ls8{letter-spacing:0.003843pt;}
.ls15{letter-spacing:0.212535pt;}
.ls0{letter-spacing:1.487748pt;}
.ls7{letter-spacing:3.556327pt;}
.ls3{letter-spacing:5.738458pt;}
.ls9{letter-spacing:8.873356pt;}
.ls4{letter-spacing:11.795718pt;}
.ls11{letter-spacing:11.848852pt;}
.ls10{letter-spacing:14.718081pt;}
.lsc{letter-spacing:14.771215pt;}
.lse{letter-spacing:15.515089pt;}
.lsd{letter-spacing:16.205829pt;}
.ls12{letter-spacing:17.587310pt;}
.ls14{letter-spacing:17.693578pt;}
.ls5{letter-spacing:17.746711pt;}
.ls13{letter-spacing:19.978334pt;}
.lsf{letter-spacing:23.325767pt;}
.lsa{letter-spacing:24.547846pt;}
.lsb{letter-spacing:24.654114pt;}
.ls2{letter-spacing:26.566933pt;}
.ls17{letter-spacing:63.760640pt;}
.ls18{letter-spacing:78.159918pt;}
.ls16{letter-spacing:100.316740pt;}
.ws44{word-spacing:-38.362652pt;}
.ws36{word-spacing:-34.611401pt;}
.ws9a{word-spacing:-27.156719pt;}
.ws62{word-spacing:-26.566933pt;}
.ws33{word-spacing:-22.815682pt;}
.wsa3{word-spacing:-13.549136pt;}
.ws22{word-spacing:-12.167655pt;}
.ws86{word-spacing:-11.901986pt;}
.ws29{word-spacing:-11.583183pt;}
.ws45{word-spacing:-11.476915pt;}
.ws84{word-spacing:-11.264380pt;}
.wsa4{word-spacing:-11.211246pt;}
.ws57{word-spacing:-10.998710pt;}
.ws58{word-spacing:-10.945577pt;}
.ws9f{word-spacing:-10.839309pt;}
.ws37{word-spacing:-10.786175pt;}
.ws60{word-spacing:-10.626773pt;}
.ws5e{word-spacing:-10.573639pt;}
.ws1b{word-spacing:-10.361104pt;}
.ws5f{word-spacing:-10.201702pt;}
.ws18{word-spacing:-10.095435pt;}
.ws83{word-spacing:-9.989167pt;}
.ws35{word-spacing:-9.882899pt;}
.ws28{word-spacing:-9.723498pt;}
.wsa0{word-spacing:-9.463142pt;}
.ws7{word-spacing:-9.404694pt;}
.ws2d{word-spacing:-9.298427pt;}
.ws2c{word-spacing:-9.245293pt;}
.wsa{word-spacing:-9.192159pt;}
.ws11{word-spacing:-9.139025pt;}
.wsf{word-spacing:-9.085891pt;}
.ws4{word-spacing:-9.032757pt;}
.wsb{word-spacing:-8.979623pt;}
.ws5{word-spacing:-8.926490pt;}
.ws6{word-spacing:-8.873356pt;}
.ws27{word-spacing:-8.820222pt;}
.ws1a{word-spacing:-8.767088pt;}
.ws2{word-spacing:-8.713954pt;}
.ws3{word-spacing:-8.660820pt;}
.ws2a{word-spacing:-8.607686pt;}
.ws2e{word-spacing:-8.554553pt;}
.ws9b{word-spacing:-8.506732pt;}
.ws3f{word-spacing:-8.501419pt;}
.ws1c{word-spacing:-8.342017pt;}
.ws8{word-spacing:-8.235749pt;}
.wsa5{word-spacing:-8.187929pt;}
.ws99{word-spacing:-8.134795pt;}
.ws40{word-spacing:-7.970080pt;}
.ws63{word-spacing:-7.916946pt;}
.ws4a{word-spacing:-7.863812pt;}
.ws7e{word-spacing:-7.810678pt;}
.ws19{word-spacing:-7.704411pt;}
.ws23{word-spacing:-7.545009pt;}
.ws64{word-spacing:-7.491875pt;}
.ws95{word-spacing:-7.438741pt;}
.ws7f{word-spacing:-7.385607pt;}
.wsc{word-spacing:-7.332474pt;}
.ws8a{word-spacing:-7.226206pt;}
.ws15{word-spacing:-7.119938pt;}
.ws66{word-spacing:-7.066804pt;}
.ws9{word-spacing:-7.013670pt;}
.ws67{word-spacing:-6.854269pt;}
.ws6a{word-spacing:-6.801135pt;}
.ws8b{word-spacing:-6.748001pt;}
.ws10{word-spacing:-6.641733pt;}
.wsd{word-spacing:-6.588599pt;}
.ws5d{word-spacing:-6.482332pt;}
.ws97{word-spacing:-6.322930pt;}
.ws2b{word-spacing:-6.216662pt;}
.ws5c{word-spacing:-6.163529pt;}
.ws5b{word-spacing:-6.110395pt;}
.ws30{word-spacing:-6.057261pt;}
.ws6f{word-spacing:-5.950993pt;}
.ws98{word-spacing:-5.903173pt;}
.ws17{word-spacing:-5.897859pt;}
.ws69{word-spacing:-5.685324pt;}
.ws14{word-spacing:-5.579056pt;}
.wsa1{word-spacing:-5.419654pt;}
.ws52{word-spacing:-5.313387pt;}
.ws31{word-spacing:-5.100851pt;}
.ws6b{word-spacing:-5.047717pt;}
.ws87{word-spacing:-4.888316pt;}
.ws9d{word-spacing:-4.835182pt;}
.ws9c{word-spacing:-4.569513pt;}
.ws81{word-spacing:-4.410111pt;}
.ws24{word-spacing:-4.356977pt;}
.ws25{word-spacing:-4.303843pt;}
.ws50{word-spacing:-4.144442pt;}
.ws85{word-spacing:-4.091308pt;}
.ws13{word-spacing:-3.931906pt;}
.ws3d{word-spacing:-3.825638pt;}
.ws80{word-spacing:-3.666237pt;}
.wsa2{word-spacing:-3.506835pt;}
.ws74{word-spacing:-3.453701pt;}
.ws43{word-spacing:-3.081764pt;}
.ws9e{word-spacing:-3.028630pt;}
.ws78{word-spacing:-2.975497pt;}
.ws6c{word-spacing:-2.869229pt;}
.ws1d{word-spacing:-2.816095pt;}
.ws4f{word-spacing:-2.444158pt;}
.ws77{word-spacing:-2.337890pt;}
.wsa6{word-spacing:-2.284756pt;}
.wse{word-spacing:-2.178489pt;}
.ws72{word-spacing:-2.019087pt;}
.ws8c{word-spacing:-1.912819pt;}
.ws26{word-spacing:-1.540882pt;}
.ws89{word-spacing:-1.328347pt;}
.ws88{word-spacing:-1.275213pt;}
.ws1e{word-spacing:-1.222079pt;}
.ws6d{word-spacing:-1.168945pt;}
.ws90{word-spacing:-0.956410pt;}
.ws75{word-spacing:-0.637606pt;}
.ws54{word-spacing:-0.053134pt;}
.ws1f{word-spacing:-0.047821pt;}
.ws55{word-spacing:-0.037194pt;}
.ws20{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.797008pt;}
.ws93{word-spacing:3.134898pt;}
.ws38{word-spacing:5.579056pt;}
.ws53{word-spacing:11.742585pt;}
.ws96{word-spacing:14.452412pt;}
.ws12{word-spacing:14.505546pt;}
.ws4d{word-spacing:14.558679pt;}
.ws32{word-spacing:14.664947pt;}
.ws3a{word-spacing:14.718081pt;}
.ws7d{word-spacing:14.771215pt;}
.ws47{word-spacing:14.824349pt;}
.ws3e{word-spacing:14.877483pt;}
.ws49{word-spacing:14.983750pt;}
.ws56{word-spacing:15.515089pt;}
.ws71{word-spacing:15.568223pt;}
.ws41{word-spacing:16.471499pt;}
.ws61{word-spacing:16.524633pt;}
.ws4b{word-spacing:16.630900pt;}
.ws94{word-spacing:16.790302pt;}
.ws59{word-spacing:17.162239pt;}
.ws65{word-spacing:17.268507pt;}
.ws4e{word-spacing:17.427908pt;}
.ws46{word-spacing:17.534176pt;}
.ws3b{word-spacing:17.640444pt;}
.ws3c{word-spacing:17.693578pt;}
.ws48{word-spacing:17.746711pt;}
.ws68{word-spacing:18.331184pt;}
.ws42{word-spacing:18.543719pt;}
.ws4c{word-spacing:18.649987pt;}
.ws70{word-spacing:18.756255pt;}
.ws6e{word-spacing:18.809389pt;}
.ws5a{word-spacing:18.968790pt;}
.ws1{word-spacing:20.297137pt;}
.ws51{word-spacing:20.934743pt;}
.ws82{word-spacing:21.306681pt;}
.ws7c{word-spacing:23.378901pt;}
.ws21{word-spacing:23.846639pt;}
.ws73{word-spacing:23.963374pt;}
.ws91{word-spacing:25.557390pt;}
.ws76{word-spacing:25.876193pt;}
.ws92{word-spacing:28.160949pt;}
.ws0{word-spacing:34.338985pt;}
.ws79{word-spacing:37.193707pt;}
.ws39{word-spacing:39.106526pt;}
.ws7a{word-spacing:54.887284pt;}
.ws7b{word-spacing:54.940418pt;}
.ws34{word-spacing:61.050813pt;}
.ws8e{word-spacing:63.760640pt;}
.ws16{word-spacing:71.667439pt;}
.ws8f{word-spacing:113.334538pt;}
.ws8d{word-spacing:116.894507pt;}
._5{margin-left:-6.004127pt;}
._3{margin-left:-4.463245pt;}
._4{margin-left:-2.975497pt;}
._0{margin-left:-1.487748pt;}
._1{width:1.487748pt;}
._15{width:2.388077pt;}
._27{width:3.353328pt;}
._3c{width:4.569513pt;}
._13{width:7.438741pt;}
._3e{width:15.674491pt;}
._3a{width:16.684034pt;}
._16{width:18.118649pt;}
._3f{width:19.553263pt;}
._3b{width:21.041011pt;}
._b{width:21.997421pt;}
._39{width:22.953830pt;}
._2{width:23.910240pt;}
._26{width:24.919783pt;}
._7{width:26.141862pt;}
._c{width:27.523343pt;}
._6{width:29.011091pt;}
._9{width:30.764509pt;}
._10{width:31.880320pt;}
._12{width:33.952541pt;}
._14{width:35.599691pt;}
._38{width:36.662368pt;}
._f{width:37.778179pt;}
._a{width:38.893990pt;}
._3d{width:40.169203pt;}
._8{width:44.313645pt;}
._17{width:47.395409pt;}
._11{width:53.080733pt;}
._25{width:58.128450pt;}
._e{width:61.103947pt;}
._35{width:64.079443pt;}
._d{width:71.731200pt;}
._1d{width:81.454218pt;}
._24{width:90.327573pt;}
._36{width:92.718597pt;}
._1b{width:100.954347pt;}
._21{width:127.521280pt;}
._33{width:131.081249pt;}
._2a{width:139.901471pt;}
._2b{width:143.461440pt;}
._32{width:146.436937pt;}
._29{width:166.468404pt;}
._31{width:170.347177pt;}
._1a{width:172.578799pt;}
._23{width:184.427651pt;}
._1e{width:190.538046pt;}
._18{width:204.671654pt;}
._2c{width:208.284757pt;}
._20{width:209.719372pt;}
._2d{width:227.466083pt;}
._2f{width:257.327316pt;}
._22{width:271.885996pt;}
._2e{width:289.579573pt;}
._1f{width:319.547074pt;}
._1c{width:346.114007pt;}
._19{width:354.509158pt;}
._28{width:499.298945pt;}
._34{width:550.466859pt;}
._30{width:732.290950pt;}
._37{width:758.698482pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:56.149333pt;}
.y2d{bottom:69.233333pt;}
.y5f{bottom:96.000000pt;}
.y113{bottom:102.598667pt;}
.yc1{bottom:105.474667pt;}
.y5e{bottom:110.545333pt;}
.y2c{bottom:110.558667pt;}
.y112{bottom:117.144000pt;}
.yc0{bottom:120.020000pt;}
.y8f{bottom:125.090667pt;}
.y2b{bottom:125.104000pt;}
.y5d{bottom:129.666667pt;}
.y111{bottom:131.689333pt;}
.ybf{bottom:134.565333pt;}
.y14f{bottom:135.796000pt;}
.yee{bottom:139.636000pt;}
.y2a{bottom:139.649333pt;}
.y110{bottom:146.234667pt;}
.y8e{bottom:147.309333pt;}
.ybe{bottom:149.110667pt;}
.y14e{bottom:150.341333pt;}
.y5c{bottom:153.994667pt;}
.yed{bottom:154.181333pt;}
.y29{bottom:154.194667pt;}
.y8d{bottom:161.854667pt;}
.ybd{bottom:163.656000pt;}
.y10f{bottom:167.720000pt;}
.y5b{bottom:168.540000pt;}
.yec{bottom:168.726667pt;}
.y28{bottom:168.740000pt;}
.yf3{bottom:172.840000pt;}
.y14d{bottom:175.593333pt;}
.y8c{bottom:176.400000pt;}
.y125{bottom:177.309333pt;}
.y5a{bottom:183.086667pt;}
.y27{bottom:183.285333pt;}
.ybc{bottom:185.142667pt;}
.yf2{bottom:187.385333pt;}
.y14c{bottom:190.138667pt;}
.y8b{bottom:190.946667pt;}
.yeb{bottom:191.017333pt;}
.yf1{bottom:201.930667pt;}
.y59{bottom:202.206667pt;}
.y10e{bottom:203.196000pt;}
.y8a{bottom:205.492000pt;}
.yea{bottom:205.564000pt;}
.y124{bottom:207.352000pt;}
.y26{bottom:209.042667pt;}
.y14b{bottom:215.389333pt;}
.ybb{bottom:218.794667pt;}
.y89{bottom:220.037333pt;}
.ye9{bottom:220.109333pt;}
.y123{bottom:221.897333pt;}
.y25{bottom:223.588000pt;}
.y58{bottom:226.536000pt;}
.y14a{bottom:229.934667pt;}
.y10d{bottom:233.232000pt;}
.yba{bottom:233.340000pt;}
.ye8{bottom:234.654667pt;}
.y24{bottom:238.133333pt;}
.y88{bottom:239.330667pt;}
.y57{bottom:241.081333pt;}
.y122{bottom:243.721333pt;}
.y10c{bottom:247.777333pt;}
.ye7{bottom:249.200000pt;}
.y23{bottom:252.680000pt;}
.yb9{bottom:255.158667pt;}
.y149{bottom:255.185333pt;}
.y56{bottom:255.626667pt;}
.y121{bottom:258.266667pt;}
.y10b{bottom:262.322667pt;}
.y87{bottom:264.601333pt;}
.y22{bottom:267.225333pt;}
.yb8{bottom:269.704000pt;}
.y148{bottom:269.730667pt;}
.y55{bottom:270.172000pt;}
.ye6{bottom:272.629333pt;}
.y10a{bottom:276.868000pt;}
.y86{bottom:279.146667pt;}
.y120{bottom:280.090667pt;}
.y21{bottom:281.770667pt;}
.yb7{bottom:284.249333pt;}
.y54{bottom:284.717333pt;}
.y85{bottom:293.692000pt;}
.y147{bottom:294.982667pt;}
.y20{bottom:296.316000pt;}
.yb6{bottom:298.794667pt;}
.y109{bottom:299.992000pt;}
.ye5{bottom:303.173333pt;}
.y53{bottom:306.536000pt;}
.y84{bottom:308.238667pt;}
.y146{bottom:309.528000pt;}
.y1f{bottom:310.861333pt;}
.y11f{bottom:313.165333pt;}
.yb5{bottom:313.340000pt;}
.ye4{bottom:317.718667pt;}
.y83{bottom:322.784000pt;}
.y11e{bottom:327.710667pt;}
.yb4{bottom:327.885333pt;}
.y52{bottom:328.353333pt;}
.y108{bottom:330.028000pt;}
.ye3{bottom:332.264000pt;}
.y145{bottom:334.778667pt;}
.y1e{bottom:336.529333pt;}
.y82{bottom:337.329333pt;}
.y11d{bottom:342.256000pt;}
.y51{bottom:342.900000pt;}
.y107{bottom:344.573333pt;}
.ye2{bottom:346.809333pt;}
.yb3{bottom:349.704000pt;}
.y81{bottom:351.874667pt;}
.y144{bottom:360.029333pt;}
.ye1{bottom:361.354667pt;}
.yb2{bottom:364.249333pt;}
.y50{bottom:364.717333pt;}
.y80{bottom:366.420000pt;}
.y106{bottom:367.697333pt;}
.y1d{bottom:372.057333pt;}
.y143{bottom:374.574667pt;}
.ye0{bottom:375.900000pt;}
.yb1{bottom:378.794667pt;}
.y4f{bottom:379.262667pt;}
.y7f{bottom:385.713333pt;}
.y1c{bottom:386.602667pt;}
.y142{bottom:389.120000pt;}
.yb0{bottom:393.340000pt;}
.y4e{bottom:393.808000pt;}
.ydf{bottom:395.225333pt;}
.y105{bottom:397.733333pt;}
.y1b{bottom:401.148000pt;}
.y141{bottom:403.665333pt;}
.yaf{bottom:407.885333pt;}
.y7e{bottom:410.984000pt;}
.y104{bottom:412.278667pt;}
.y4d{bottom:412.929333pt;}
.y1a{bottom:415.693333pt;}
.yde{bottom:420.573333pt;}
.yae{bottom:422.430667pt;}
.y7d{bottom:425.529333pt;}
.y103{bottom:426.824000pt;}
.y140{bottom:428.917333pt;}
.y19{bottom:430.238667pt;}
.ydd{bottom:435.118667pt;}
.yad{bottom:436.977333pt;}
.y4c{bottom:437.258667pt;}
.y7c{bottom:440.076000pt;}
.y102{bottom:441.369333pt;}
.y13f{bottom:443.462667pt;}
.y18{bottom:444.785333pt;}
.ydc{bottom:449.664000pt;}
.yac{bottom:451.522667pt;}
.y4b{bottom:451.804000pt;}
.y7b{bottom:454.621333pt;}
.y101{bottom:455.914667pt;}
.y13e{bottom:458.008000pt;}
.y17{bottom:459.330667pt;}
.ydb{bottom:464.209333pt;}
.y4a{bottom:466.349333pt;}
.y100{bottom:470.460000pt;}
.yab{bottom:473.340000pt;}
.y16{bottom:473.876000pt;}
.y7a{bottom:476.840000pt;}
.y49{bottom:480.894667pt;}
.y13d{bottom:483.258667pt;}
.yff{bottom:485.005333pt;}
.yda{bottom:486.500000pt;}
.yaa{bottom:487.885333pt;}
.y15{bottom:488.421333pt;}
.y79{bottom:491.385333pt;}
.y48{bottom:495.440000pt;}
.y13c{bottom:497.804000pt;}
.yfe{bottom:499.550667pt;}
.yd9{bottom:501.045333pt;}
.ya9{bottom:502.430667pt;}
.y14{bottom:502.966667pt;}
.y78{bottom:505.930667pt;}
.y47{bottom:509.985333pt;}
.yfd{bottom:514.096000pt;}
.ya8{bottom:516.977333pt;}
.y13{bottom:517.512000pt;}
.y77{bottom:520.476000pt;}
.y13b{bottom:523.054667pt;}
.yd8{bottom:523.337333pt;}
.y46{bottom:524.530667pt;}
.yfc{bottom:528.641333pt;}
.ya7{bottom:531.522667pt;}
.y12{bottom:532.057333pt;}
.y13a{bottom:537.600000pt;}
.y45{bottom:539.076000pt;}
.y76{bottom:542.694667pt;}
.yfb{bottom:543.186667pt;}
.yd7{bottom:545.628000pt;}
.ya6{bottom:546.068000pt;}
.y11{bottom:546.602667pt;}
.y44{bottom:553.621333pt;}
.y74{bottom:557.240000pt;}
.yfa{bottom:557.732000pt;}
.yd6{bottom:560.173333pt;}
.ya5{bottom:560.613333pt;}
.y10{bottom:561.148000pt;}
.y75{bottom:562.061333pt;}
.y139{bottom:562.852000pt;}
.y43{bottom:568.166667pt;}
.y73{bottom:571.785333pt;}
.ya4{bottom:575.158667pt;}
.yf{bottom:575.693333pt;}
.y138{bottom:577.397333pt;}
.yf9{bottom:580.857333pt;}
.yd5{bottom:582.464000pt;}
.y42{bottom:582.713333pt;}
.ya3{bottom:589.704000pt;}
.ye{bottom:590.238667pt;}
.y72{bottom:594.004000pt;}
.yf0{bottom:595.212000pt;}
.y41{bottom:597.258667pt;}
.y137{bottom:602.648000pt;}
.ya2{bottom:604.249333pt;}
.yd4{bottom:604.754667pt;}
.yd{bottom:604.784000pt;}
.y71{bottom:608.550667pt;}
.yef{bottom:609.757333pt;}
.yf8{bottom:610.892000pt;}
.y40{bottom:616.378667pt;}
.y136{bottom:617.193333pt;}
.ya1{bottom:618.794667pt;}
.yc{bottom:619.330667pt;}
.y70{bottom:623.096000pt;}
.yd3{bottom:624.078667pt;}
.yf7{bottom:625.437333pt;}
.yb{bottom:633.876000pt;}
.y6f{bottom:637.641333pt;}
.ya0{bottom:637.916000pt;}
.yf6{bottom:639.982667pt;}
.y11c{bottom:640.494667pt;}
.y3f{bottom:640.708000pt;}
.y135{bottom:642.444000pt;}
.ya{bottom:648.421333pt;}
.yd2{bottom:649.426667pt;}
.y11b{bottom:655.040000pt;}
.y3e{bottom:655.253333pt;}
.y134{bottom:656.989333pt;}
.y6e{bottom:659.860000pt;}
.y9f{bottom:662.756000pt;}
.y9{bottom:662.966667pt;}
.yd1{bottom:663.973333pt;}
.y11a{bottom:669.585333pt;}
.y3d{bottom:669.798667pt;}
.y9e{bottom:677.301333pt;}
.y8{bottom:677.512000pt;}
.yd0{bottom:678.518667pt;}
.y6d{bottom:682.078667pt;}
.y133{bottom:682.240000pt;}
.yf5{bottom:683.154667pt;}
.y3c{bottom:684.344000pt;}
.y119{bottom:691.072000pt;}
.y9d{bottom:691.846667pt;}
.y7{bottom:692.057333pt;}
.y6c{bottom:696.624000pt;}
.y132{bottom:696.786667pt;}
.yf4{bottom:697.700000pt;}
.ycf{bottom:697.842667pt;}
.y3b{bottom:698.889333pt;}
.y9c{bottom:706.392000pt;}
.y6{bottom:706.602667pt;}
.y3a{bottom:718.010667pt;}
.y6b{bottom:718.842667pt;}
.y9b{bottom:720.937333pt;}
.y118{bottom:722.036000pt;}
.y131{bottom:722.037333pt;}
.yce{bottom:723.190667pt;}
.y5{bottom:735.220000pt;}
.y9a{bottom:735.482667pt;}
.y130{bottom:736.582667pt;}
.ycd{bottom:737.736000pt;}
.y6a{bottom:738.136000pt;}
.y39{bottom:740.624000pt;}
.y117{bottom:746.881333pt;}
.y98{bottom:750.028000pt;}
.ycc{bottom:752.282667pt;}
.y99{bottom:754.849333pt;}
.y116{bottom:761.426667pt;}
.y69{bottom:761.520000pt;}
.y12f{bottom:761.833333pt;}
.y97{bottom:764.573333pt;}
.y38{bottom:770.148000pt;}
.ycb{bottom:774.573333pt;}
.y115{bottom:775.973333pt;}
.y12e{bottom:776.378667pt;}
.y96{bottom:779.120000pt;}
.y37{bottom:784.693333pt;}
.y155{bottom:787.845333pt;}
.yca{bottom:789.118667pt;}
.y4{bottom:790.129333pt;}
.y68{bottom:791.985333pt;}
.y36{bottom:799.238667pt;}
.y95{bottom:800.937333pt;}
.y12d{bottom:801.629333pt;}
.y3{bottom:804.674667pt;}
.y154{bottom:813.017333pt;}
.y67{bottom:814.205333pt;}
.y12c{bottom:816.174667pt;}
.y114{bottom:821.566667pt;}
.y35{bottom:821.852000pt;}
.y94{bottom:822.756000pt;}
.y153{bottom:827.562667pt;}
.y12b{bottom:830.721333pt;}
.yc9{bottom:836.112000pt;}
.y66{bottom:836.424000pt;}
.y93{bottom:844.573333pt;}
.yc8{bottom:850.657333pt;}
.y34{bottom:851.376000pt;}
.y152{bottom:852.736000pt;}
.y12a{bottom:855.972000pt;}
.y65{bottom:858.642667pt;}
.yc7{bottom:865.202667pt;}
.y33{bottom:865.921333pt;}
.y92{bottom:866.392000pt;}
.y129{bottom:870.517333pt;}
.y151{bottom:877.908000pt;}
.y2{bottom:878.825333pt;}
.yc6{bottom:879.748000pt;}
.y32{bottom:880.466667pt;}
.y64{bottom:880.861333pt;}
.y91{bottom:888.210667pt;}
.y150{bottom:892.453333pt;}
.yc5{bottom:894.293333pt;}
.y31{bottom:895.012000pt;}
.y128{bottom:895.768000pt;}
.y63{bottom:903.080000pt;}
.y1{bottom:905.392000pt;}
.y90{bottom:907.330667pt;}
.yc4{bottom:908.838667pt;}
.y30{bottom:909.557333pt;}
.y127{bottom:910.313333pt;}
.y62{bottom:917.625333pt;}
.yc3{bottom:923.384000pt;}
.y2f{bottom:924.104000pt;}
.y126{bottom:924.858667pt;}
.y61{bottom:932.170667pt;}
.yc2{bottom:944.870667pt;}
.y2e{bottom:946.716000pt;}
.h6{height:25.142874pt;}
.h5{height:32.661606pt;}
.h3{height:32.783596pt;}
.h2{height:39.850400pt;}
.h7{height:44.422874pt;}
.h8{height:44.428207pt;}
.h4{height:44.632747pt;}
.h1{height:64.270827pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:142.445333pt;}
.x10{left:144.000000pt;}
.x6e{left:147.508000pt;}
.xe7{left:149.052000pt;}
.xcf{left:150.774667pt;}
.x52{left:154.373333pt;}
.xd3{left:158.153333pt;}
.x89{left:164.917333pt;}
.xf1{left:169.729333pt;}
.xf0{left:171.305333pt;}
.x30{left:174.846667pt;}
.x53{left:178.777333pt;}
.xc9{left:180.512000pt;}
.xd4{left:182.302667pt;}
.x6f{left:185.470667pt;}
.x1{left:188.497333pt;}
.x7{left:190.266667pt;}
.x6{left:191.821333pt;}
.x90{left:194.144000pt;}
.x8a{left:195.820000pt;}
.x8b{left:199.509333pt;}
.x9b{left:201.038667pt;}
.x70{left:202.178667pt;}
.xc0{left:205.546667pt;}
.x71{left:208.820000pt;}
.xca{left:210.209333pt;}
.x8d{left:211.314667pt;}
.x72{left:215.329333pt;}
.x91{left:216.813333pt;}
.x8e{left:218.089333pt;}
.x73{left:219.018667pt;}
.x92{left:220.502667pt;}
.x8f{left:221.780000pt;}
.x9c{left:222.744000pt;}
.x15{left:224.418667pt;}
.x9d{left:226.434667pt;}
.xcb{left:231.005333pt;}
.xd0{left:235.160000pt;}
.x16{left:237.702667pt;}
.x2b{left:242.653333pt;}
.x93{left:244.445333pt;}
.x17{left:245.884000pt;}
.xa7{left:248.369333pt;}
.x2c{left:249.294667pt;}
.x80{left:250.834667pt;}
.x18{left:252.525333pt;}
.xd5{left:254.410667pt;}
.x94{left:258.394667pt;}
.x19{left:260.706667pt;}
.xc7{left:262.936000pt;}
.x95{left:265.169333pt;}
.x1a{left:267.348000pt;}
.x96{left:268.858667pt;}
.xe6{left:271.990667pt;}
.x3a{left:273.821333pt;}
.x1b{left:275.530667pt;}
.xd6{left:278.561333pt;}
.xc5{left:280.373333pt;}
.x1c{left:282.172000pt;}
.xec{left:284.353333pt;}
.xa8{left:285.761333pt;}
.xed{left:288.044000pt;}
.x81{left:289.444000pt;}
.x2{left:290.686667pt;}
.x82{left:293.133333pt;}
.x3b{left:296.725333pt;}
.x9e{left:301.760000pt;}
.xcc{left:304.524000pt;}
.x62{left:308.304000pt;}
.x54{left:311.706667pt;}
.x3c{left:312.961333pt;}
.xc6{left:315.584000pt;}
.x9a{left:316.562667pt;}
.x3d{left:319.629333pt;}
.x55{left:321.758667pt;}
.x11{left:325.873333pt;}
.x12{left:330.301333pt;}
.x3e{left:332.201333pt;}
.x63{left:333.525333pt;}
.x4{left:334.774667pt;}
.x2d{left:337.930667pt;}
.xcd{left:340.766667pt;}
.x56{left:342.473333pt;}
.x3f{left:344.773333pt;}
.x57{left:346.162667pt;}
.x20{left:347.824000pt;}
.x2e{left:351.214667pt;}
.x64{left:353.716000pt;}
.xc8{left:354.712000pt;}
.x21{left:355.724000pt;}
.x40{left:357.345333pt;}
.x3{left:359.124000pt;}
.x65{left:360.490667pt;}
.x41{left:363.249333pt;}
.x66{left:364.181333pt;}
.x35{left:367.453333pt;}
.x22{left:369.008000pt;}
.x42{left:369.917333pt;}
.x6d{left:371.480000pt;}
.x5{left:373.732000pt;}
.x46{left:375.600000pt;}
.x87{left:377.401333pt;}
.x36{left:378.874667pt;}
.x13{left:380.802667pt;}
.x14{left:385.230667pt;}
.xc1{left:386.534667pt;}
.x7a{left:388.129333pt;}
.x59{left:390.324000pt;}
.xd1{left:396.549333pt;}
.x47{left:399.668000pt;}
.xf2{left:401.358667pt;}
.x88{left:402.661333pt;}
.x38{left:404.678667pt;}
.xaa{left:406.369333pt;}
.xae{left:407.576000pt;}
.x58{left:409.040000pt;}
.x48{left:410.000000pt;}
.xaf{left:411.265333pt;}
.x7b{left:412.470667pt;}
.x5a{left:414.508000pt;}
.x49{left:416.634667pt;}
.x1e{left:417.650667pt;}
.x4a{left:420.325333pt;}
.x9f{left:423.992000pt;}
.x7c{left:425.728000pt;}
.x27{left:426.796000pt;}
.x23{left:428.457333pt;}
.x1f{left:430.934667pt;}
.x7d{left:432.369333pt;}
.xd2{left:433.997333pt;}
.x5b{left:435.732000pt;}
.xab{left:437.296000pt;}
.x7e{left:438.998667pt;}
.x28{left:440.080000pt;}
.x24{left:441.740000pt;}
.x7f{left:442.688000pt;}
.x5c{left:446.105333pt;}
.x25{left:448.885333pt;}
.xe8{left:451.020000pt;}
.x97{left:454.693333pt;}
.x4b{left:458.721333pt;}
.x26{left:462.169333pt;}
.x5d{left:466.598667pt;}
.xba{left:468.560000pt;}
.x5e{left:470.289333pt;}
.xbb{left:472.250667pt;}
.xb0{left:476.869333pt;}
.x4c{left:479.370667pt;}
.x67{left:481.141333pt;}
.x4d{left:483.060000pt;}
.xc2{left:484.077333pt;}
.xe9{left:485.854667pt;}
.xb1{left:487.773333pt;}
.xdd{left:489.440000pt;}
.xe5{left:490.372000pt;}
.x5f{left:493.066667pt;}
.x31{left:494.790667pt;}
.x98{left:496.274667pt;}
.x32{left:499.217333pt;}
.x99{left:503.049333pt;}
.xac{left:505.249333pt;}
.x60{left:506.217333pt;}
.xb3{left:507.488000pt;}
.xb2{left:509.309333pt;}
.xdf{left:511.638667pt;}
.x33{left:512.984000pt;}
.xe1{left:515.305333pt;}
.xee{left:516.477333pt;}
.xa0{left:517.940000pt;}
.x61{left:520.478667pt;}
.xc3{left:521.369333pt;}
.x39{left:523.213333pt;}
.x34{left:526.268000pt;}
.xa1{left:528.694667pt;}
.xad{left:533.321333pt;}
.x68{left:536.310667pt;}
.xef{left:537.629333pt;}
.x8{left:538.584000pt;}
.xb4{left:540.556000pt;}
.x1d{left:542.346667pt;}
.xb5{left:544.246667pt;}
.xa6{left:545.186667pt;}
.xe0{left:546.534667pt;}
.xa2{left:550.401333pt;}
.xbc{left:551.992000pt;}
.xa3{left:554.090667pt;}
.x9{left:556.016000pt;}
.xe2{left:556.954667pt;}
.x83{left:559.073333pt;}
.xd7{left:560.889333pt;}
.x74{left:565.953333pt;}
.xbd{left:567.224000pt;}
.xc4{left:569.105333pt;}
.x69{left:571.686667pt;}
.xde{left:573.356000pt;}
.xa{left:576.882667pt;}
.xea{left:577.810667pt;}
.x84{left:579.457333pt;}
.xb{left:580.572000pt;}
.xd8{left:581.501333pt;}
.x75{left:583.408000pt;}
.x6a{left:584.970667pt;}
.x85{left:587.460000pt;}
.x29{left:589.314667pt;}
.xe3{left:592.505333pt;}
.xc{left:594.016000pt;}
.x2a{left:595.957333pt;}
.xeb{left:599.413333pt;}
.xd{left:600.657333pt;}
.xe4{left:602.836000pt;}
.x76{left:604.248000pt;}
.xe{left:607.378667pt;}
.xb6{left:608.692000pt;}
.xf{left:611.068000pt;}
.x6b{left:613.572000pt;}
.x4e{left:615.861333pt;}
.xa9{left:616.804000pt;}
.x86{left:618.369333pt;}
.xb7{left:619.796000pt;}
.x77{left:621.341333pt;}
.xdb{left:623.730667pt;}
.xdc{left:624.637333pt;}
.x4f{left:625.916000pt;}
.x6c{left:626.856000pt;}
.x43{left:627.798667pt;}
.xd9{left:631.130667pt;}
.xa4{left:632.438667pt;}
.x78{left:634.684000pt;}
.x79{left:638.374667pt;}
.xbe{left:639.294667pt;}
.xb8{left:641.530667pt;}
.xbf{left:642.984000pt;}
.xb9{left:645.220000pt;}
.x50{left:646.565333pt;}
.x8c{left:648.946667pt;}
.x51{left:650.254667pt;}
.xda{left:651.773333pt;}
.x37{left:652.918667pt;}
.x44{left:655.093333pt;}
.x45{left:658.782667pt;}
.xce{left:661.689333pt;}
.xa5{left:665.544000pt;}
}




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