
    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_acc28a29be960508fe980238.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_33aa40d007a71084bd3ce7fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;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_70d7deae6e372b4ebf0c5b95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b7ce9840aba7aa7248e4f08c.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_58d952a2079abba0e3139ffc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7f301eb34a154ac420961203.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.151000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1716d2f35b89887c31d3cf3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a77e40b43d83e543450fe1b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.488000;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_8c9cfdf4970d27c05b67bb53.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.997000;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_cfe97b7c1f34a0a5aea92f16.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.040000;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:ffe;src:url('chunks/assets/font_3a972b1258854e4589070bcf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m1d{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m6{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);}
.m1f{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);}
.m2{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);}
.m1{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);}
.m28{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);}
.m10{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);}
.m19{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);}
.m15{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);}
.m16{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);}
.m1e{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);}
.m1b{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.mf{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.mc{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);}
.mb{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);}
.m9{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m4{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.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);}
.m1c{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);}
.m20{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);}
.m1a{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);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m14{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);}
.m3{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.696000px;}
.v4{vertical-align:28.398000px;}
.v3{vertical-align:32.880000px;}
.ls9{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000089px;}
.ls35{letter-spacing:0.000566px;}
.ls31{letter-spacing:0.000800px;}
.lsd{letter-spacing:0.000933px;}
.ls3e{letter-spacing:0.000959px;}
.ls30{letter-spacing:0.001036px;}
.lse{letter-spacing:0.001127px;}
.ls2e{letter-spacing:0.001155px;}
.ls32{letter-spacing:0.001301px;}
.ls3b{letter-spacing:0.001584px;}
.ls37{letter-spacing:0.001693px;}
.ls36{letter-spacing:0.001701px;}
.ls22{letter-spacing:0.002074px;}
.ls2b{letter-spacing:0.002338px;}
.lsb{letter-spacing:0.002472px;}
.ls2f{letter-spacing:0.002544px;}
.ls39{letter-spacing:0.002618px;}
.ls2{letter-spacing:0.002725px;}
.ls33{letter-spacing:0.002773px;}
.ls3a{letter-spacing:0.002841px;}
.ls38{letter-spacing:0.002872px;}
.ls3c{letter-spacing:0.002899px;}
.ls3d{letter-spacing:0.003090px;}
.ls6{letter-spacing:0.003488px;}
.ls2d{letter-spacing:0.003668px;}
.ls20{letter-spacing:0.003859px;}
.ls2a{letter-spacing:0.004800px;}
.lsc{letter-spacing:0.004994px;}
.ls28{letter-spacing:0.005642px;}
.ls1b{letter-spacing:0.648088px;}
.lsa{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls4{letter-spacing:10.461300px;}
.ls11{letter-spacing:11.951700px;}
.ls8{letter-spacing:11.954850px;}
.ls10{letter-spacing:11.957700px;}
.ls1c{letter-spacing:11.959654px;}
.ls21{letter-spacing:13.383402px;}
.ls2c{letter-spacing:13.400699px;}
.ls23{letter-spacing:13.448400px;}
.ls25{letter-spacing:13.454400px;}
.ls29{letter-spacing:13.562497px;}
.ls27{letter-spacing:13.574594px;}
.ls24{letter-spacing:13.654270px;}
.ls16{letter-spacing:14.696271px;}
.ls15{letter-spacing:14.702171px;}
.ls18{letter-spacing:14.794553px;}
.ls1f{letter-spacing:14.938200px;}
.ls19{letter-spacing:14.943900px;}
.ls1{letter-spacing:14.944200px;}
.ls13{letter-spacing:14.982291px;}
.ls1a{letter-spacing:15.003676px;}
.ls17{letter-spacing:15.036823px;}
.ls1e{letter-spacing:16.865141px;}
.ls1d{letter-spacing:16.871024px;}
.lsf{letter-spacing:17.215373px;}
.ls26{letter-spacing:17.838635px;}
.ls14{letter-spacing:18.135729px;}
.ls12{letter-spacing:18.865141px;}
.ls0{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls7{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;}
}
.ws2{word-spacing:-14.943900px;}
.wsa3{word-spacing:-13.449600px;}
.ws39{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.wse{word-spacing:-10.460700px;}
.ws51{word-spacing:-3.227882px;}
.ws9f{word-spacing:-2.929004px;}
.ws97{word-spacing:-2.630126px;}
.ws2f{word-spacing:-2.570351px;}
.ws55{word-spacing:-2.510575px;}
.wsab{word-spacing:-2.420928px;}
.ws4c{word-spacing:-2.271473px;}
.wsac{word-spacing:-2.205734px;}
.ws52{word-spacing:-2.092146px;}
.wsc0{word-spacing:-1.936742px;}
.ws9{word-spacing:-1.908367px;}
.wsa0{word-spacing:-1.853044px;}
.ws96{word-spacing:-1.793268px;}
.ws30{word-spacing:-1.733492px;}
.ws9a{word-spacing:-1.554166px;}
.ws8{word-spacing:-1.322630px;}
.ws36{word-spacing:-1.255288px;}
.ws31{word-spacing:-1.075961px;}
.ws79{word-spacing:-0.956410px;}
.ws2b{word-spacing:-0.777083px;}
.ws2a{word-spacing:-0.717307px;}
.ws32{word-spacing:-0.478205px;}
.ws9b{word-spacing:-0.418429px;}
.ws48{word-spacing:-0.358654px;}
.ws4a{word-spacing:-0.298878px;}
.wsc4{word-spacing:-0.268992px;}
.wsb5{word-spacing:-0.259158px;}
.ws4d{word-spacing:-0.239102px;}
.ws26{word-spacing:-0.215194px;}
.ws42{word-spacing:-0.179327px;}
.wsd0{word-spacing:-0.161395px;}
.ws2d{word-spacing:-0.119551px;}
.ws85{word-spacing:-0.112312px;}
.wsb7{word-spacing:-0.107597px;}
.ws1{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.047821px;}
.wsf{word-spacing:-0.041843px;}
.wsd2{word-spacing:-0.029482px;}
.wse2{word-spacing:-0.029366px;}
.ws6{word-spacing:-0.003625px;}
.ws0{word-spacing:0.000000px;}
.ws8a{word-spacing:0.000157px;}
.ws3{word-spacing:0.000350px;}
.ws5{word-spacing:0.001859px;}
.ws4{word-spacing:0.002375px;}
.wsbc{word-spacing:0.053798px;}
.ws3c{word-spacing:0.059776px;}
.wsa2{word-spacing:0.107597px;}
.ws3a{word-spacing:0.119551px;}
.ws1d{word-spacing:0.161395px;}
.ws37{word-spacing:0.179327px;}
.ws11{word-spacing:0.209214px;}
.ws1e{word-spacing:0.215194px;}
.ws2e{word-spacing:0.239102px;}
.ws24{word-spacing:0.268992px;}
.ws13{word-spacing:0.292900px;}
.ws3b{word-spacing:0.298878px;}
.wsaa{word-spacing:0.322790px;}
.ws47{word-spacing:0.358654px;}
.ws59{word-spacing:0.418429px;}
.wsaf{word-spacing:0.537984px;}
.ws93{word-spacing:0.597756px;}
.ws8d{word-spacing:0.657532px;}
.wsd4{word-spacing:0.699379px;}
.ws40{word-spacing:0.717307px;}
.ws7a{word-spacing:0.777083px;}
.ws2c{word-spacing:0.836858px;}
.ws7b{word-spacing:0.896634px;}
.wsd3{word-spacing:0.968371px;}
.ws8c{word-spacing:1.016185px;}
.wsa6{word-spacing:1.022170px;}
.ws57{word-spacing:1.075961px;}
.ws5a{word-spacing:1.135736px;}
.ws5c{word-spacing:1.195512px;}
.ws3d{word-spacing:1.255288px;}
.ws56{word-spacing:1.315063px;}
.ws1f{word-spacing:1.344960px;}
.ws63{word-spacing:1.434614px;}
.wsa5{word-spacing:1.452557px;}
.ws6a{word-spacing:1.494390px;}
.ws25{word-spacing:1.613952px;}
.ws95{word-spacing:1.673717px;}
.wsa4{word-spacing:1.721549px;}
.ws99{word-spacing:1.733492px;}
.wsce{word-spacing:1.775347px;}
.ws6b{word-spacing:1.853044px;}
.ws8b{word-spacing:1.912819px;}
.wsc9{word-spacing:1.936742px;}
.ws12{word-spacing:2.008454px;}
.ws44{word-spacing:2.211697px;}
.ws73{word-spacing:2.271473px;}
.ws89{word-spacing:2.313331px;}
.ws23{word-spacing:2.367130px;}
.ws77{word-spacing:2.450800px;}
.wsb{word-spacing:2.508059px;}
.wsd5{word-spacing:2.528525px;}
.ws3e{word-spacing:2.630126px;}
.ws88{word-spacing:2.636122px;}
.ws49{word-spacing:2.749678px;}
.ws43{word-spacing:2.809453px;}
.wsa9{word-spacing:2.851315px;}
.ws62{word-spacing:2.869229px;}
.ws1c{word-spacing:2.869236px;}
.wscb{word-spacing:2.905114px;}
.ws5b{word-spacing:2.929004px;}
.ws58{word-spacing:2.988780px;}
.ws74{word-spacing:3.048556px;}
.ws4f{word-spacing:3.108331px;}
.wsae{word-spacing:3.120307px;}
.ws53{word-spacing:3.168107px;}
.wsa8{word-spacing:3.174106px;}
.ws27{word-spacing:3.219667px;}
.wscc{word-spacing:3.222989px;}
.wsa7{word-spacing:3.224822px;}
.wsb8{word-spacing:3.225600px;}
.wsde{word-spacing:3.225946px;}
.wse1{word-spacing:3.226282px;}
.wsc5{word-spacing:3.226454px;}
.wsdc{word-spacing:3.226733px;}
.wsca{word-spacing:3.227232px;}
.wsb3{word-spacing:3.227904px;}
.wsbe{word-spacing:3.230131px;}
.ws29{word-spacing:3.287658px;}
.wse5{word-spacing:3.335501px;}
.ws9c{word-spacing:3.347434px;}
.wse9{word-spacing:3.384385px;}
.wsad{word-spacing:3.443098px;}
.wsba{word-spacing:3.513145px;}
.ws69{word-spacing:3.526760px;}
.ws28{word-spacing:3.586536px;}
.ws4b{word-spacing:3.646312px;}
.ws45{word-spacing:3.706087px;}
.ws5e{word-spacing:3.765863px;}
.wsd6{word-spacing:3.765888px;}
.ws4e{word-spacing:3.885414px;}
.ws60{word-spacing:3.945190px;}
.ws98{word-spacing:4.124516px;}
.ws94{word-spacing:4.244068px;}
.ws61{word-spacing:4.303843px;}
.ws75{word-spacing:4.363619px;}
.wsc3{word-spacing:4.411469px;}
.ws5d{word-spacing:4.423394px;}
.ws3f{word-spacing:4.483170px;}
.ws5f{word-spacing:4.542946px;}
.ws91{word-spacing:4.602721px;}
.ws8f{word-spacing:4.662497px;}
.wse0{word-spacing:4.680461px;}
.ws8e{word-spacing:4.841824px;}
.wsd9{word-spacing:4.841856px;}
.ws54{word-spacing:4.961375px;}
.wse4{word-spacing:5.164646px;}
.wscd{word-spacing:5.326042px;}
.ws9e{word-spacing:5.439580px;}
.ws9d{word-spacing:5.499355px;}
.ws92{word-spacing:5.559131px;}
.wsa1{word-spacing:5.618906px;}
.wse7{word-spacing:5.702630px;}
.ws65{word-spacing:5.738458px;}
.ws41{word-spacing:5.858009px;}
.ws7c{word-spacing:6.037336px;}
.ws19{word-spacing:6.067206px;}
.ws22{word-spacing:6.079219px;}
.ws46{word-spacing:6.097111px;}
.ws1a{word-spacing:6.150892px;}
.ws83{word-spacing:6.156887px;}
.ws34{word-spacing:6.276438px;}
.ws33{word-spacing:6.336214px;}
.ws90{word-spacing:6.515540px;}
.ws84{word-spacing:6.814418px;}
.wse6{word-spacing:7.208986px;}
.ws66{word-spacing:7.232848px;}
.ws68{word-spacing:7.352399px;}
.ws20{word-spacing:7.531776px;}
.ws82{word-spacing:7.711052px;}
.ws35{word-spacing:7.950155px;}
.ws17{word-spacing:8.661460px;}
.ws67{word-spacing:9.085891px;}
.wsd{word-spacing:10.418056px;}
.ws10{word-spacing:10.460700px;}
.ws80{word-spacing:11.903099px;}
.ws7f{word-spacing:11.907329px;}
.wsc{word-spacing:12.929425px;}
.wsb6{word-spacing:13.126810px;}
.wsda{word-spacing:13.385520px;}
.wsdd{word-spacing:13.390118px;}
.wsc6{word-spacing:13.390982px;}
.wsdb{word-spacing:13.391520px;}
.wsb1{word-spacing:13.395802px;}
.wsbf{word-spacing:13.396608px;}
.wsc8{word-spacing:13.449600px;}
.wscf{word-spacing:13.503398px;}
.wsbb{word-spacing:13.557197px;}
.ws38{word-spacing:14.776565px;}
.ws64{word-spacing:14.884124px;}
.ws78{word-spacing:14.943900px;}
.wsa{word-spacing:15.483541px;}
.ws14{word-spacing:16.142252px;}
.ws15{word-spacing:16.151321px;}
.wse3{word-spacing:16.462310px;}
.wsb2{word-spacing:16.569907px;}
.wsea{word-spacing:16.617014px;}
.wsd8{word-spacing:16.617610px;}
.wsd1{word-spacing:16.618570px;}
.wsb9{word-spacing:16.620365px;}
.wsdf{word-spacing:16.621661px;}
.wse8{word-spacing:16.621853px;}
.wsc1{word-spacing:16.621920px;}
.wsbd{word-spacing:16.623706px;}
.wsc7{word-spacing:16.785101px;}
.wsc2{word-spacing:16.838899px;}
.wsb4{word-spacing:17.000294px;}
.wsd7{word-spacing:17.161690px;}
.ws16{word-spacing:17.699504px;}
.ws50{word-spacing:18.470660px;}
.ws76{word-spacing:19.232657px;}
.ws7d{word-spacing:20.921460px;}
.ws7e{word-spacing:21.220338px;}
.ws18{word-spacing:27.448877px;}
.wsb0{word-spacing:75.317760px;}
.ws6c{word-spacing:232.975507px;}
.ws6f{word-spacing:304.283750px;}
.ws6e{word-spacing:305.144525px;}
.ws6d{word-spacing:305.198323px;}
.ws70{word-spacing:323.973965px;}
.ws71{word-spacing:332.097523px;}
.ws72{word-spacing:352.271923px;}
.ws81{word-spacing:642.996271px;}
.ws87{word-spacing:672.748992px;}
.ws86{word-spacing:742.807133px;}
._2{margin-left:-9.898906px;}
._3{margin-left:-6.636457px;}
._9{margin-left:-5.397721px;}
._8{margin-left:-3.849538px;}
._6{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._7{width:1.091170px;}
._4{width:2.995580px;}
._57{width:4.890563px;}
._0{width:10.165172px;}
._11{width:11.955150px;}
._b{width:12.971268px;}
._c{width:14.274580px;}
._4e{width:15.362942px;}
._f{width:16.569907px;}
._10{width:18.100594px;}
._16{width:19.115255px;}
._14{width:20.562806px;}
._1a{width:21.943458px;}
._e{width:22.971917px;}
._17{width:24.209118px;}
._a{width:25.946136px;}
._15{width:27.437000px;}
._53{width:28.596636px;}
._51{width:29.708473px;}
._19{width:30.844210px;}
._d{width:32.637384px;}
._18{width:33.999379px;}
._54{width:35.506706px;}
._4f{width:36.564143px;}
._50{width:38.495486px;}
._1b{width:41.125613px;}
._56{width:61.868160px;}
._5{width:69.353500px;}
._55{width:88.767360px;}
._1d{width:154.835981px;}
._32{width:175.094440px;}
._33{width:220.046520px;}
._3c{width:242.497046px;}
._42{width:263.397635px;}
._29{width:266.248282px;}
._3e{width:267.627651px;}
._35{width:269.377670px;}
._27{width:272.166106px;}
._44{width:287.979883px;}
._38{width:290.655377px;}
._3b{width:293.954998px;}
._3d{width:302.607977px;}
._2a{width:305.198323px;}
._34{width:306.962014px;}
._25{width:319.616294px;}
._37{width:330.874774px;}
._23{width:343.341389px;}
._28{width:345.547123px;}
._40{width:354.782614px;}
._3a{width:360.758614px;}
._26{width:365.721523px;}
._22{width:380.838874px;}
._24{width:384.389568px;}
._20{width:389.392819px;}
._2c{width:402.465830px;}
._1f{width:415.538842px;}
._12{width:419.351202px;}
._2f{width:421.940851px;}
._2b{width:428.289062px;}
._1c{width:433.526761px;}
._2d{width:435.838720px;}
._2e{width:438.080371px;}
._31{width:445.343155px;}
._45{width:458.167412px;}
._30{width:465.033370px;}
._3f{width:507.280925px;}
._43{width:513.134972px;}
._39{width:526.337943px;}
._48{width:529.252752px;}
._21{width:530.990208px;}
._41{width:532.603240px;}
._36{width:542.957476px;}
._47{width:548.905075px;}
._4d{width:559.395763px;}
._46{width:583.783345px;}
._1e{width:660.321562px;}
._4b{width:700.831757px;}
._49{width:717.509261px;}
._4a{width:721.705536px;}
._4c{width:727.999949px;}
._52{width:2007.715301px;}
._13{width:2031.625301px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fsc{font-size:56.058000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fsb{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.yb{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y4f{bottom:31.890000px;}
.y2{bottom:37.114269px;}
.y10f{bottom:97.693500px;}
.y25{bottom:102.823500px;}
.y4e{bottom:103.621500px;}
.y1b6{bottom:106.246500px;}
.y1e1{bottom:106.696500px;}
.y10e{bottom:114.132000px;}
.y185{bottom:118.318500px;}
.y24{bottom:120.711000px;}
.y215{bottom:120.817500px;}
.y4d{bottom:122.449500px;}
.y1e0{bottom:123.955500px;}
.y1b5{bottom:125.076000px;}
.y85{bottom:128.196000px;}
.y184{bottom:137.148000px;}
.y10d{bottom:137.772000px;}
.y214{bottom:138.078000px;}
.y23{bottom:138.600000px;}
.ye4{bottom:140.767500px;}
.y1df{bottom:141.216000px;}
.y4c{bottom:141.279000px;}
.y1b4{bottom:143.905500px;}
.y84{bottom:147.025500px;}
.y154{bottom:150.982500px;}
.y10c{bottom:154.210500px;}
.y213{bottom:155.338500px;}
.y183{bottom:155.977500px;}
.yb6{bottom:156.459000px;}
.y22{bottom:156.487500px;}
.y1de{bottom:158.476500px;}
.ye3{bottom:159.597000px;}
.y4b{bottom:160.108500px;}
.y1b3{bottom:162.735000px;}
.y83{bottom:165.855000px;}
.y153{bottom:171.321000px;}
.y212{bottom:172.599000px;}
.y21{bottom:174.375000px;}
.y182{bottom:174.807000px;}
.yb5{bottom:175.288500px;}
.y1dd{bottom:175.737000px;}
.y10b{bottom:177.852000px;}
.ye2{bottom:178.426500px;}
.y4a{bottom:178.938000px;}
.y1b2{bottom:181.564500px;}
.y124{bottom:182.092500px;}
.y82{bottom:184.684500px;}
.y152{bottom:187.759500px;}
.y211{bottom:189.858000px;}
.y20{bottom:192.264000px;}
.y1dc{bottom:192.997500px;}
.y181{bottom:193.636500px;}
.yb4{bottom:194.118000px;}
.y10a{bottom:194.290500px;}
.ye1{bottom:197.256000px;}
.y49{bottom:197.767500px;}
.y1b1{bottom:200.394000px;}
.y123{bottom:200.922000px;}
.y81{bottom:203.514000px;}
.y151{bottom:204.196500px;}
.y210{bottom:207.118500px;}
.y1f{bottom:210.151500px;}
.y1db{bottom:210.258000px;}
.y180{bottom:212.466000px;}
.yb3{bottom:212.947500px;}
.ye0{bottom:216.085500px;}
.y48{bottom:216.597000px;}
.y109{bottom:217.930500px;}
.y1b0{bottom:219.223500px;}
.y122{bottom:219.751500px;}
.y150{bottom:220.635000px;}
.y80{bottom:222.343500px;}
.y20f{bottom:224.379000px;}
.y1da{bottom:227.518500px;}
.y1e{bottom:228.039000px;}
.y17f{bottom:231.295500px;}
.yb2{bottom:231.777000px;}
.y108{bottom:234.369000px;}
.ydf{bottom:234.915000px;}
.y47{bottom:235.426500px;}
.y1af{bottom:238.053000px;}
.y121{bottom:238.581000px;}
.y7f{bottom:241.173000px;}
.y20e{bottom:241.639500px;}
.y14f{bottom:244.276500px;}
.y1d9{bottom:244.779000px;}
.y17e{bottom:250.123500px;}
.yb1{bottom:250.606500px;}
.yde{bottom:253.744500px;}
.y46{bottom:254.256000px;}
.y1ae{bottom:256.882500px;}
.y120{bottom:257.410500px;}
.y107{bottom:258.010500px;}
.y20d{bottom:258.900000px;}
.y7e{bottom:260.002500px;}
.y1d8{bottom:262.039500px;}
.y17d{bottom:268.953000px;}
.yb0{bottom:269.436000px;}
.ydd{bottom:272.574000px;}
.y45{bottom:273.085500px;}
.y106{bottom:274.447500px;}
.y1ad{bottom:275.712000px;}
.y14e{bottom:275.895000px;}
.y20c{bottom:276.160500px;}
.y11f{bottom:276.240000px;}
.y7d{bottom:278.832000px;}
.y1d7{bottom:279.298500px;}
.y103{bottom:281.308500px;}
.y17c{bottom:287.782500px;}
.y105{bottom:290.886000px;}
.y44{bottom:291.915000px;}
.yaf{bottom:292.747500px;}
.y20b{bottom:293.421000px;}
.y1ac{bottom:294.541500px;}
.y11e{bottom:295.069500px;}
.y14d{bottom:295.128000px;}
.ydc{bottom:295.887000px;}
.y1d6{bottom:296.559000px;}
.y7c{bottom:297.661500px;}
.y17b{bottom:306.612000px;}
.y1d{bottom:307.299000px;}
.y104{bottom:307.324500px;}
.y20a{bottom:310.681500px;}
.y43{bottom:310.744500px;}
.y1ab{bottom:313.371000px;}
.y1d5{bottom:313.819500px;}
.y7b{bottom:316.491000px;}
.y11d{bottom:318.381000px;}
.y1c{bottom:325.186500px;}
.y17a{bottom:325.441500px;}
.yae{bottom:326.371500px;}
.y209{bottom:327.940500px;}
.ydb{bottom:329.511000px;}
.y42{bottom:329.574000px;}
.y102{bottom:330.966000px;}
.y1d4{bottom:331.080000px;}
.y14c{bottom:331.149000px;}
.y1aa{bottom:332.200500px;}
.y7a{bottom:335.320500px;}
.y1b{bottom:343.074000px;}
.y179{bottom:344.271000px;}
.yad{bottom:345.201000px;}
.y101{bottom:347.404500px;}
.yda{bottom:348.340500px;}
.y41{bottom:348.403500px;}
.y14b{bottom:349.978500px;}
.y1a9{bottom:351.030000px;}
.y11c{bottom:352.005000px;}
.y79{bottom:354.150000px;}
.y1a{bottom:360.963000px;}
.y208{bottom:362.461500px;}
.y178{bottom:363.100500px;}
.y100{bottom:363.843000px;}
.yac{bottom:364.030500px;}
.yd9{bottom:367.170000px;}
.y40{bottom:367.233000px;}
.y14a{bottom:368.808000px;}
.y1a8{bottom:369.859500px;}
.y1d3{bottom:370.084500px;}
.y11b{bottom:370.834500px;}
.y78{bottom:372.979500px;}
.y207{bottom:379.722000px;}
.y177{bottom:381.930000px;}
.yab{bottom:382.860000px;}
.yd8{bottom:385.999500px;}
.y3f{bottom:386.062500px;}
.yff{bottom:387.483000px;}
.y149{bottom:387.637500px;}
.y11a{bottom:389.664000px;}
.y77{bottom:391.809000px;}
.y1a7{bottom:393.172500px;}
.y206{bottom:396.982500px;}
.y19{bottom:399.024000px;}
.y176{bottom:400.759500px;}
.yaa{bottom:401.689500px;}
.y1d2{bottom:403.708500px;}
.yfe{bottom:403.921500px;}
.yd7{bottom:404.829000px;}
.y148{bottom:406.467000px;}
.y119{bottom:408.493500px;}
.y3e{bottom:409.375500px;}
.y76{bottom:410.638500px;}
.y205{bottom:414.243000px;}
.y18{bottom:416.913000px;}
.y175{bottom:419.589000px;}
.ya9{bottom:420.519000px;}
.y147{bottom:425.296500px;}
.y1a6{bottom:426.796500px;}
.y118{bottom:427.323000px;}
.yfd{bottom:427.561500px;}
.yd6{bottom:428.140500px;}
.y75{bottom:429.468000px;}
.y1d1{bottom:430.248000px;}
.y204{bottom:431.503500px;}
.y17{bottom:434.800500px;}
.y174{bottom:438.418500px;}
.ya8{bottom:439.348500px;}
.yfc{bottom:444.000000px;}
.y146{bottom:444.126000px;}
.y1a5{bottom:445.626000px;}
.y117{bottom:446.152500px;}
.y1d0{bottom:447.822000px;}
.y74{bottom:448.297500px;}
.y203{bottom:448.764000px;}
.y16{bottom:452.688000px;}
.y173{bottom:457.248000px;}
.ya7{bottom:458.178000px;}
.yd5{bottom:461.764500px;}
.y145{bottom:462.955500px;}
.y1a4{bottom:464.454000px;}
.y116{bottom:464.982000px;}
.y1cf{bottom:465.396000px;}
.y202{bottom:466.024500px;}
.y73{bottom:467.127000px;}
.yfb{bottom:467.641500px;}
.yfa{bottom:475.860000px;}
.y172{bottom:476.077500px;}
.ya6{bottom:477.007500px;}
.yd4{bottom:480.594000px;}
.y1a3{bottom:483.283500px;}
.y115{bottom:483.811500px;}
.y3d{bottom:484.525500px;}
.y72{bottom:485.956500px;}
.y144{bottom:486.268500px;}
.y15{bottom:488.509500px;}
.y1ce{bottom:491.937000px;}
.y171{bottom:494.907000px;}
.ya5{bottom:495.837000px;}
.yd3{bottom:499.423500px;}
.y201{bottom:500.544000px;}
.y1a2{bottom:502.113000px;}
.y71{bottom:504.786000px;}
.y14{bottom:506.397000px;}
.y114{bottom:507.124500px;}
.y1cd{bottom:509.511000px;}
.y170{bottom:513.736500px;}
.ya4{bottom:514.666500px;}
.yf9{bottom:515.698500px;}
.y200{bottom:517.804500px;}
.yd2{bottom:518.253000px;}
.y143{bottom:519.892500px;}
.y1a1{bottom:520.942500px;}
.y3c{bottom:521.914500px;}
.y70{bottom:523.615500px;}
.y13{bottom:524.286000px;}
.y16f{bottom:532.566000px;}
.ya3{bottom:533.496000px;}
.y1ff{bottom:535.065000px;}
.y1cc{bottom:536.052000px;}
.yd1{bottom:537.082500px;}
.y142{bottom:538.722000px;}
.y1a0{bottom:539.772000px;}
.y3b{bottom:541.372500px;}
.y12{bottom:542.173500px;}
.y6f{bottom:542.445000px;}
.y113{bottom:546.517500px;}
.y16e{bottom:551.395500px;}
.ya2{bottom:552.325500px;}
.yd0{bottom:555.912000px;}
.y141{bottom:557.551500px;}
.y19f{bottom:558.601500px;}
.y11{bottom:560.061000px;}
.y3a{bottom:560.829000px;}
.y6e{bottom:561.274500px;}
.y1cb{bottom:562.593000px;}
.y1fe{bottom:569.586000px;}
.y16d{bottom:570.225000px;}
.ya1{bottom:571.155000px;}
.y140{bottom:576.381000px;}
.y19e{bottom:577.431000px;}
.y10{bottom:577.950000px;}
.ycf{bottom:579.225000px;}
.y6d{bottom:580.104000px;}
.y1ca{bottom:580.167000px;}
.y39{bottom:580.285500px;}
.y1fd{bottom:586.846500px;}
.y16c{bottom:589.054500px;}
.yf8{bottom:589.984500px;}
.ya0{bottom:594.468000px;}
.yce{bottom:594.916500px;}
.y13f{bottom:595.210500px;}
.yf{bottom:595.837500px;}
.y19d{bottom:596.260500px;}
.y1c9{bottom:597.741000px;}
.y6c{bottom:598.932000px;}
.y38{bottom:599.743500px;}
.y1fc{bottom:604.107000px;}
.y16b{bottom:607.884000px;}
.yf7{bottom:608.814000px;}
.ye{bottom:613.725000px;}
.y13e{bottom:614.040000px;}
.y19c{bottom:615.090000px;}
.y6b{bottom:617.761500px;}
.y37{bottom:619.200000px;}
.y1fb{bottom:621.366000px;}
.y1c8{bottom:624.280500px;}
.y16a{bottom:626.713500px;}
.yf6{bottom:627.643500px;}
.y9f{bottom:628.092000px;}
.ycd{bottom:628.540500px;}
.yd{bottom:631.614000px;}
.y13d{bottom:632.868000px;}
.y19b{bottom:633.919500px;}
.y6a{bottom:636.591000px;}
.y1fa{bottom:638.626500px;}
.y36{bottom:638.658000px;}
.y169{bottom:645.543000px;}
.yf5{bottom:646.473000px;}
.y9e{bottom:646.921500px;}
.ycc{bottom:647.370000px;}
.y1c7{bottom:650.821500px;}
.y13c{bottom:651.697500px;}
.y19a{bottom:652.749000px;}
.ya{bottom:653.984964px;}
.y69{bottom:655.420500px;}
.y1f9{bottom:655.887000px;}
.y35{bottom:658.114500px;}
.y168{bottom:664.372500px;}
.yf4{bottom:665.302500px;}
.y9d{bottom:665.751000px;}
.ycb{bottom:666.199500px;}
.y1c6{bottom:668.395500px;}
.y13b{bottom:670.527000px;}
.y199{bottom:671.578500px;}
.y1f8{bottom:673.147500px;}
.y68{bottom:674.250000px;}
.y34{bottom:677.571000px;}
.y167{bottom:683.202000px;}
.yf3{bottom:684.132000px;}
.y9c{bottom:684.580500px;}
.yca{bottom:685.029000px;}
.y1c5{bottom:685.969500px;}
.y13a{bottom:689.356500px;}
.y198{bottom:690.408000px;}
.y67{bottom:693.079500px;}
.y33{bottom:697.029000px;}
.y166{bottom:702.031500px;}
.yf2{bottom:702.961500px;}
.y9b{bottom:703.410000px;}
.y1c4{bottom:703.543500px;}
.yc9{bottom:703.858500px;}
.y1f7{bottom:707.668500px;}
.y139{bottom:708.186000px;}
.y197{bottom:709.237500px;}
.y66{bottom:711.909000px;}
.y32{bottom:716.485500px;}
.y165{bottom:720.861000px;}
.yf1{bottom:721.791000px;}
.y9a{bottom:722.239500px;}
.yc8{bottom:722.686500px;}
.y1f6{bottom:724.929000px;}
.y196{bottom:728.067000px;}
.y1c3{bottom:730.084500px;}
.y65{bottom:730.738500px;}
.y138{bottom:731.499000px;}
.y31{bottom:735.942000px;}
.y164{bottom:739.690500px;}
.y99{bottom:741.067500px;}
.y1f5{bottom:742.189500px;}
.yf0{bottom:745.102500px;}
.yc7{bottom:745.999500px;}
.y195{bottom:746.896500px;}
.y137{bottom:747.190500px;}
.y1c2{bottom:748.129500px;}
.y64{bottom:749.568000px;}
.y30{bottom:755.400000px;}
.y163{bottom:758.518500px;}
.y1f4{bottom:759.450000px;}
.y98{bottom:759.897000px;}
.yef{bottom:765.277500px;}
.y194{bottom:765.726000px;}
.y63{bottom:768.397500px;}
.y2f{bottom:774.856500px;}
.y1f3{bottom:776.709000px;}
.y162{bottom:777.348000px;}
.y97{bottom:778.726500px;}
.yc6{bottom:779.623500px;}
.y1c1{bottom:784.107000px;}
.y193{bottom:784.555500px;}
.y136{bottom:785.608500px;}
.y62{bottom:787.227000px;}
.y1f2{bottom:793.969500px;}
.y2e{bottom:794.314500px;}
.y161{bottom:796.177500px;}
.y96{bottom:797.556000px;}
.yc5{bottom:798.453000px;}
.yee{bottom:798.901500px;}
.y1c0{bottom:802.936500px;}
.y192{bottom:803.385000px;}
.y61{bottom:806.056500px;}
.y135{bottom:807.682500px;}
.y1f1{bottom:811.230000px;}
.y160{bottom:815.007000px;}
.y95{bottom:816.385500px;}
.yc4{bottom:817.282500px;}
.yed{bottom:817.731000px;}
.y1bf{bottom:821.766000px;}
.y134{bottom:821.880000px;}
.y191{bottom:822.214500px;}
.y60{bottom:824.886000px;}
.y2d{bottom:825.931500px;}
.y1f0{bottom:828.490500px;}
.y15f{bottom:833.836500px;}
.y94{bottom:835.215000px;}
.y133{bottom:836.076000px;}
.yc3{bottom:836.112000px;}
.yec{bottom:836.560500px;}
.y1be{bottom:840.595500px;}
.y190{bottom:841.044000px;}
.y2c{bottom:842.070000px;}
.y5f{bottom:843.715500px;}
.y1ef{bottom:845.751000px;}
.y132{bottom:850.273500px;}
.y15e{bottom:852.666000px;}
.y93{bottom:854.044500px;}
.yc2{bottom:854.941500px;}
.yeb{bottom:855.390000px;}
.y1bd{bottom:859.425000px;}
.y18f{bottom:859.873500px;}
.y5e{bottom:862.545000px;}
.y2b{bottom:862.549500px;}
.y1ee{bottom:863.011500px;}
.y131{bottom:864.469500px;}
.y92{bottom:872.874000px;}
.yc1{bottom:873.771000px;}
.yea{bottom:874.219500px;}
.y15d{bottom:875.979000px;}
.y1bc{bottom:878.254500px;}
.y2a{bottom:878.689500px;}
.y18e{bottom:878.703000px;}
.y1ed{bottom:880.272000px;}
.y5d{bottom:881.374500px;}
.y130{bottom:885.868500px;}
.y29{bottom:890.490000px;}
.y91{bottom:891.703500px;}
.yc0{bottom:892.600500px;}
.ye9{bottom:893.049000px;}
.y1bb{bottom:897.084000px;}
.y18d{bottom:897.532500px;}
.y5c{bottom:900.204000px;}
.y12f{bottom:907.267500px;}
.y15c{bottom:909.603000px;}
.y90{bottom:910.533000px;}
.y28{bottom:910.968000px;}
.ybf{bottom:911.430000px;}
.ye8{bottom:911.878500px;}
.y216{bottom:914.791500px;}
.y1ec{bottom:914.793000px;}
.y1ba{bottom:915.913500px;}
.y18c{bottom:916.362000px;}
.y5b{bottom:919.033500px;}
.y12e{bottom:921.465000px;}
.y27{bottom:922.768500px;}
.y15b{bottom:928.432500px;}
.y8f{bottom:929.362500px;}
.ybe{bottom:930.259500px;}
.ye7{bottom:930.708000px;}
.y1eb{bottom:932.052000px;}
.y1b9{bottom:934.743000px;}
.y18b{bottom:935.191500px;}
.y5a{bottom:937.863000px;}
.y12d{bottom:942.864000px;}
.y26{bottom:943.248000px;}
.y15a{bottom:947.262000px;}
.y8e{bottom:948.192000px;}
.y1ea{bottom:949.312500px;}
.ye6{bottom:949.537500px;}
.ybd{bottom:953.572500px;}
.y18a{bottom:954.021000px;}
.y59{bottom:956.692500px;}
.y12c{bottom:964.263000px;}
.y1e9{bottom:966.573000px;}
.y8d{bottom:967.021500px;}
.ye5{bottom:968.367000px;}
.y1b8{bottom:972.402000px;}
.y189{bottom:972.849000px;}
.y58{bottom:975.522000px;}
.y9{bottom:976.473000px;}
.y159{bottom:978.429000px;}
.y1e8{bottom:983.833500px;}
.y12b{bottom:985.662000px;}
.y8c{bottom:985.851000px;}
.ybc{bottom:987.196500px;}
.y188{bottom:991.678500px;}
.y57{bottom:994.351500px;}
.y8{bottom:995.302500px;}
.y1b7{bottom:995.713500px;}
.y158{bottom:998.767500px;}
.y12a{bottom:999.858000px;}
.y1e7{bottom:1001.094000px;}
.y8b{bottom:1004.680500px;}
.ybb{bottom:1006.026000px;}
.y187{bottom:1010.508000px;}
.y56{bottom:1013.181000px;}
.y129{bottom:1014.055500px;}
.y157{bottom:1015.206000px;}
.y1e6{bottom:1018.354500px;}
.y8a{bottom:1023.510000px;}
.yba{bottom:1024.855500px;}
.y186{bottom:1029.337500px;}
.y156{bottom:1031.644500px;}
.y55{bottom:1032.010500px;}
.y128{bottom:1035.454500px;}
.y1e5{bottom:1035.615000px;}
.y7{bottom:1041.199500px;}
.y89{bottom:1042.339500px;}
.yb9{bottom:1043.685000px;}
.y112{bottom:1048.167000px;}
.y54{bottom:1050.840000px;}
.y1e4{bottom:1052.875500px;}
.y155{bottom:1055.284500px;}
.y127{bottom:1056.853500px;}
.y88{bottom:1061.169000px;}
.yb8{bottom:1062.513000px;}
.y111{bottom:1066.996500px;}
.y6{bottom:1069.443000px;}
.y53{bottom:1069.669500px;}
.y1e3{bottom:1070.134500px;}
.yb7{bottom:1081.342500px;}
.y87{bottom:1084.482000px;}
.y110{bottom:1085.826000px;}
.y126{bottom:1086.904500px;}
.y1e2{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y5{bottom:1097.688000px;}
.y86{bottom:1104.655500px;}
.y125{bottom:1106.137500px;}
.y51{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h1a{height:16.817382px;}
.h8{height:25.508090px;}
.h14{height:27.974981px;}
.hc{height:31.131341px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h18{height:34.574294px;}
.h17{height:34.717756px;}
.hb{height:36.319550px;}
.hf{height:38.896243px;}
.h1b{height:39.057638px;}
.h3{height:39.402747px;}
.h4{height:41.001535px;}
.hd{height:41.508281px;}
.h11{height:43.217759px;}
.he{height:43.660208px;}
.h5{height:43.815515px;}
.h10{height:46.697011px;}
.h1c{height:49.117939px;}
.h2{height:50.931027px;}
.h12{height:51.885221px;}
.h7{height:54.541601px;}
.h13{height:54.575123px;}
.h19{height:69.906281px;}
.h16{height:71.770243px;}
.h15{height:71.776243px;}
.h6{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:59.014071px;}
.x55{left:73.216500px;}
.x5a{left:75.889500px;}
.x53{left:85.446000px;}
.x59{left:91.735500px;}
.x5d{left:101.736000px;}
.x56{left:107.647500px;}
.x61{left:126.895500px;}
.x54{left:136.696500px;}
.x5e{left:139.173000px;}
.x60{left:140.638500px;}
.x58{left:143.937000px;}
.x5f{left:148.492500px;}
.x57{left:151.218000px;}
.x5b{left:162.109500px;}
.x5c{left:171.213000px;}
.x50{left:196.855500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x51{left:255.480000px;}
.x4d{left:259.903500px;}
.x5{left:271.221000px;}
.x37{left:280.986000px;}
.x8{left:282.786000px;}
.x4a{left:288.201000px;}
.x4c{left:292.827000px;}
.x38{left:295.930500px;}
.x4f{left:298.678500px;}
.x65{left:301.692000px;}
.x4e{left:303.594000px;}
.x52{left:307.290000px;}
.x7{left:309.465000px;}
.x45{left:313.614000px;}
.x3b{left:317.020500px;}
.x17{left:318.313500px;}
.x42{left:320.782500px;}
.x1f{left:322.074000px;}
.x18{left:325.785000px;}
.x3c{left:331.965000px;}
.x41{left:333.706500px;}
.x20{left:337.018500px;}
.x3d{left:341.823000px;}
.x66{left:344.724000px;}
.x69{left:350.143500px;}
.x67{left:354.319500px;}
.x68{left:355.368000px;}
.x3f{left:357.378000px;}
.x77{left:364.857000px;}
.x87{left:373.927500px;}
.x78{left:379.801500px;}
.x62{left:388.540500px;}
.x84{left:393.306000px;}
.x7c{left:394.840500px;}
.x9{left:400.080000px;}
.xa{left:407.553000px;}
.x83{left:415.005000px;}
.x86{left:432.772500px;}
.x13{left:434.043000px;}
.x14{left:441.514500px;}
.x79{left:448.459500px;}
.x75{left:453.700500px;}
.x7a{left:463.402500px;}
.x7d{left:465.895500px;}
.x76{left:468.645000px;}
.x19{left:477.927000px;}
.x7e{left:480.840000px;}
.x1a{left:492.871500px;}
.x85{left:494.350500px;}
.x71{left:501.828000px;}
.x43{left:503.697000px;}
.x44{left:505.572000px;}
.x6c{left:512.868000px;}
.x72{left:516.772500px;}
.x46{left:518.451000px;}
.x47{left:520.011000px;}
.x35{left:524.814000px;}
.x6d{left:527.812500px;}
.x48{left:532.821000px;}
.x40{left:536.365500px;}
.x49{left:537.682500px;}
.x36{left:539.758500px;}
.x2f{left:546.042000px;}
.x4b{left:548.544000px;}
.xf{left:554.458500px;}
.x21{left:558.637500px;}
.x30{left:559.702500px;}
.x10{left:561.931500px;}
.x22{left:573.582000px;}
.x26{left:575.445000px;}
.x7f{left:577.102500px;}
.x27{left:590.388000px;}
.x80{left:592.047000px;}
.x81{left:595.858500px;}
.x7b{left:596.863500px;}
.x82{left:610.801500px;}
.x31{left:612.492000px;}
.x1b{left:623.074500px;}
.x63{left:624.219000px;}
.x32{left:627.435000px;}
.x64{left:636.510000px;}
.x1c{left:638.017500px;}
.x70{left:639.495000px;}
.x39{left:654.703500px;}
.x3e{left:657.411000px;}
.xb{left:658.983000px;}
.x6a{left:660.550500px;}
.xc{left:666.456000px;}
.x3a{left:668.274000px;}
.x8d{left:669.345000px;}
.xd{left:673.972500px;}
.x6b{left:675.495000px;}
.xe{left:681.444000px;}
.x6e{left:693.981000px;}
.x8e{left:696.243000px;}
.x6f{left:708.924000px;}
.x15{left:719.295000px;}
.x16{left:726.766500px;}
.x1d{left:733.750500px;}
.x33{left:741.162000px;}
.x1e{left:748.695000px;}
.x8c{left:753.288000px;}
.x34{left:756.106500px;}
.x28{left:763.026000px;}
.x29{left:777.970500px;}
.x2d{left:781.870500px;}
.x2a{left:785.464500px;}
.x23{left:787.950000px;}
.x88{left:790.035000px;}
.x2c{left:793.084500px;}
.x2e{left:796.813500px;}
.x2b{left:800.407500px;}
.x24{left:802.893000px;}
.x89{left:810.390000px;}
.x73{left:816.951000px;}
.x25{left:818.011500px;}
.x8b{left:824.035500px;}
.x11{left:825.519000px;}
.x74{left:831.894000px;}
.x12{left:832.990500px;}
.x8a{left:837.289500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:25.242667pt;}
.v3{vertical-align:29.226667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000079pt;}
.ls35{letter-spacing:0.000503pt;}
.ls31{letter-spacing:0.000711pt;}
.lsd{letter-spacing:0.000830pt;}
.ls3e{letter-spacing:0.000853pt;}
.ls30{letter-spacing:0.000921pt;}
.lse{letter-spacing:0.001002pt;}
.ls2e{letter-spacing:0.001026pt;}
.ls32{letter-spacing:0.001156pt;}
.ls3b{letter-spacing:0.001408pt;}
.ls37{letter-spacing:0.001505pt;}
.ls36{letter-spacing:0.001512pt;}
.ls22{letter-spacing:0.001843pt;}
.ls2b{letter-spacing:0.002078pt;}
.lsb{letter-spacing:0.002198pt;}
.ls2f{letter-spacing:0.002262pt;}
.ls39{letter-spacing:0.002327pt;}
.ls2{letter-spacing:0.002422pt;}
.ls33{letter-spacing:0.002465pt;}
.ls3a{letter-spacing:0.002525pt;}
.ls38{letter-spacing:0.002553pt;}
.ls3c{letter-spacing:0.002577pt;}
.ls3d{letter-spacing:0.002746pt;}
.ls6{letter-spacing:0.003100pt;}
.ls2d{letter-spacing:0.003261pt;}
.ls20{letter-spacing:0.003430pt;}
.ls2a{letter-spacing:0.004267pt;}
.lsc{letter-spacing:0.004439pt;}
.ls28{letter-spacing:0.005015pt;}
.ls1b{letter-spacing:0.576078pt;}
.lsa{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls4{letter-spacing:9.298933pt;}
.ls11{letter-spacing:10.623733pt;}
.ls8{letter-spacing:10.626533pt;}
.ls10{letter-spacing:10.629067pt;}
.ls1c{letter-spacing:10.630803pt;}
.ls21{letter-spacing:11.896357pt;}
.ls2c{letter-spacing:11.911733pt;}
.ls23{letter-spacing:11.954133pt;}
.ls25{letter-spacing:11.959467pt;}
.ls29{letter-spacing:12.055553pt;}
.ls27{letter-spacing:12.066305pt;}
.ls24{letter-spacing:12.137129pt;}
.ls16{letter-spacing:13.063352pt;}
.ls15{letter-spacing:13.068596pt;}
.ls18{letter-spacing:13.150714pt;}
.ls1f{letter-spacing:13.278400pt;}
.ls19{letter-spacing:13.283467pt;}
.ls1{letter-spacing:13.283733pt;}
.ls13{letter-spacing:13.317592pt;}
.ls1a{letter-spacing:13.336601pt;}
.ls17{letter-spacing:13.366065pt;}
.ls1e{letter-spacing:14.991237pt;}
.ls1d{letter-spacing:14.996465pt;}
.lsf{letter-spacing:15.302554pt;}
.ls26{letter-spacing:15.856565pt;}
.ls14{letter-spacing:16.120648pt;}
.ls12{letter-spacing:16.769014pt;}
.ls0{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ws2{word-spacing:-13.283467pt;}
.wsa3{word-spacing:-11.955200pt;}
.ws39{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.wse{word-spacing:-9.298400pt;}
.ws51{word-spacing:-2.869229pt;}
.ws9f{word-spacing:-2.603559pt;}
.ws97{word-spacing:-2.337890pt;}
.ws2f{word-spacing:-2.284756pt;}
.ws55{word-spacing:-2.231622pt;}
.wsab{word-spacing:-2.151936pt;}
.ws4c{word-spacing:-2.019087pt;}
.wsac{word-spacing:-1.960653pt;}
.ws52{word-spacing:-1.859685pt;}
.wsc0{word-spacing:-1.721549pt;}
.ws9{word-spacing:-1.696326pt;}
.wsa0{word-spacing:-1.647150pt;}
.ws96{word-spacing:-1.594016pt;}
.ws30{word-spacing:-1.540882pt;}
.ws9a{word-spacing:-1.381481pt;}
.ws8{word-spacing:-1.175671pt;}
.ws36{word-spacing:-1.115811pt;}
.ws31{word-spacing:-0.956410pt;}
.ws79{word-spacing:-0.850142pt;}
.ws2b{word-spacing:-0.690740pt;}
.ws2a{word-spacing:-0.637606pt;}
.ws32{word-spacing:-0.425071pt;}
.ws9b{word-spacing:-0.371937pt;}
.ws48{word-spacing:-0.318803pt;}
.ws4a{word-spacing:-0.265669pt;}
.wsc4{word-spacing:-0.239104pt;}
.wsb5{word-spacing:-0.230363pt;}
.ws4d{word-spacing:-0.212535pt;}
.ws26{word-spacing:-0.191283pt;}
.ws42{word-spacing:-0.159402pt;}
.wsd0{word-spacing:-0.143462pt;}
.ws2d{word-spacing:-0.106268pt;}
.ws85{word-spacing:-0.099833pt;}
.wsb7{word-spacing:-0.095642pt;}
.ws1{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.047821pt;}
.ws1b{word-spacing:-0.042507pt;}
.wsf{word-spacing:-0.037194pt;}
.wsd2{word-spacing:-0.026206pt;}
.wse2{word-spacing:-0.026103pt;}
.ws6{word-spacing:-0.003222pt;}
.ws0{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.000140pt;}
.ws3{word-spacing:0.000311pt;}
.ws5{word-spacing:0.001652pt;}
.ws4{word-spacing:0.002111pt;}
.wsbc{word-spacing:0.047821pt;}
.ws3c{word-spacing:0.053134pt;}
.wsa2{word-spacing:0.095642pt;}
.ws3a{word-spacing:0.106268pt;}
.ws1d{word-spacing:0.143462pt;}
.ws37{word-spacing:0.159402pt;}
.ws11{word-spacing:0.185968pt;}
.ws1e{word-spacing:0.191283pt;}
.ws2e{word-spacing:0.212535pt;}
.ws24{word-spacing:0.239104pt;}
.ws13{word-spacing:0.260355pt;}
.ws3b{word-spacing:0.265669pt;}
.wsaa{word-spacing:0.286925pt;}
.ws47{word-spacing:0.318803pt;}
.ws59{word-spacing:0.371937pt;}
.wsaf{word-spacing:0.478208pt;}
.ws93{word-spacing:0.531339pt;}
.ws8d{word-spacing:0.584473pt;}
.wsd4{word-spacing:0.621670pt;}
.ws40{word-spacing:0.637606pt;}
.ws7a{word-spacing:0.690740pt;}
.ws2c{word-spacing:0.743874pt;}
.ws7b{word-spacing:0.797008pt;}
.wsd3{word-spacing:0.860774pt;}
.ws8c{word-spacing:0.903276pt;}
.wsa6{word-spacing:0.908595pt;}
.ws57{word-spacing:0.956410pt;}
.ws5a{word-spacing:1.009543pt;}
.ws5c{word-spacing:1.062677pt;}
.ws3d{word-spacing:1.115811pt;}
.ws56{word-spacing:1.168945pt;}
.ws1f{word-spacing:1.195520pt;}
.ws63{word-spacing:1.275213pt;}
.wsa5{word-spacing:1.291162pt;}
.ws6a{word-spacing:1.328347pt;}
.ws25{word-spacing:1.434624pt;}
.ws95{word-spacing:1.487748pt;}
.wsa4{word-spacing:1.530266pt;}
.ws99{word-spacing:1.540882pt;}
.wsce{word-spacing:1.578086pt;}
.ws6b{word-spacing:1.647150pt;}
.ws8b{word-spacing:1.700284pt;}
.wsc9{word-spacing:1.721549pt;}
.ws12{word-spacing:1.785293pt;}
.ws44{word-spacing:1.965953pt;}
.ws73{word-spacing:2.019087pt;}
.ws89{word-spacing:2.056294pt;}
.ws23{word-spacing:2.104115pt;}
.ws77{word-spacing:2.178489pt;}
.wsb{word-spacing:2.229386pt;}
.wsd5{word-spacing:2.247578pt;}
.ws3e{word-spacing:2.337890pt;}
.ws88{word-spacing:2.343219pt;}
.ws49{word-spacing:2.444158pt;}
.ws43{word-spacing:2.497292pt;}
.wsa9{word-spacing:2.534502pt;}
.ws62{word-spacing:2.550426pt;}
.ws1c{word-spacing:2.550432pt;}
.wscb{word-spacing:2.582323pt;}
.ws5b{word-spacing:2.603559pt;}
.ws58{word-spacing:2.656693pt;}
.ws74{word-spacing:2.709827pt;}
.ws4f{word-spacing:2.762961pt;}
.wsae{word-spacing:2.773606pt;}
.ws53{word-spacing:2.816095pt;}
.wsa8{word-spacing:2.821427pt;}
.ws27{word-spacing:2.861926pt;}
.wscc{word-spacing:2.864879pt;}
.wsa7{word-spacing:2.866509pt;}
.wsb8{word-spacing:2.867200pt;}
.wsde{word-spacing:2.867507pt;}
.wse1{word-spacing:2.867806pt;}
.wsc5{word-spacing:2.867959pt;}
.wsdc{word-spacing:2.868207pt;}
.wsca{word-spacing:2.868651pt;}
.wsb3{word-spacing:2.869248pt;}
.wsbe{word-spacing:2.871228pt;}
.ws29{word-spacing:2.922363pt;}
.wse5{word-spacing:2.964890pt;}
.ws9c{word-spacing:2.975497pt;}
.wse9{word-spacing:3.008342pt;}
.wsad{word-spacing:3.060531pt;}
.wsba{word-spacing:3.122796pt;}
.ws69{word-spacing:3.134898pt;}
.ws28{word-spacing:3.188032pt;}
.ws4b{word-spacing:3.241166pt;}
.ws45{word-spacing:3.294300pt;}
.ws5e{word-spacing:3.347434pt;}
.wsd6{word-spacing:3.347456pt;}
.ws4e{word-spacing:3.453701pt;}
.ws60{word-spacing:3.506835pt;}
.ws98{word-spacing:3.666237pt;}
.ws94{word-spacing:3.772505pt;}
.ws61{word-spacing:3.825638pt;}
.ws75{word-spacing:3.878772pt;}
.wsc3{word-spacing:3.921306pt;}
.ws5d{word-spacing:3.931906pt;}
.ws3f{word-spacing:3.985040pt;}
.ws5f{word-spacing:4.038174pt;}
.ws91{word-spacing:4.091308pt;}
.ws8f{word-spacing:4.144442pt;}
.wse0{word-spacing:4.160410pt;}
.ws8e{word-spacing:4.303843pt;}
.wsd9{word-spacing:4.303872pt;}
.ws54{word-spacing:4.410111pt;}
.wse4{word-spacing:4.590797pt;}
.wscd{word-spacing:4.734259pt;}
.ws9e{word-spacing:4.835182pt;}
.ws9d{word-spacing:4.888316pt;}
.ws92{word-spacing:4.941450pt;}
.wsa1{word-spacing:4.994583pt;}
.wse7{word-spacing:5.069005pt;}
.ws65{word-spacing:5.100851pt;}
.ws41{word-spacing:5.207119pt;}
.ws7c{word-spacing:5.366521pt;}
.ws19{word-spacing:5.393072pt;}
.ws22{word-spacing:5.403750pt;}
.ws46{word-spacing:5.419654pt;}
.ws1a{word-spacing:5.467459pt;}
.ws83{word-spacing:5.472788pt;}
.ws34{word-spacing:5.579056pt;}
.ws33{word-spacing:5.632190pt;}
.ws90{word-spacing:5.791591pt;}
.ws84{word-spacing:6.057261pt;}
.wse6{word-spacing:6.407987pt;}
.ws66{word-spacing:6.429198pt;}
.ws68{word-spacing:6.535466pt;}
.ws20{word-spacing:6.694912pt;}
.ws82{word-spacing:6.854269pt;}
.ws35{word-spacing:7.066804pt;}
.ws17{word-spacing:7.699075pt;}
.ws67{word-spacing:8.076348pt;}
.wsd{word-spacing:9.260494pt;}
.ws10{word-spacing:9.298400pt;}
.ws80{word-spacing:10.580533pt;}
.ws7f{word-spacing:10.584293pt;}
.wsc{word-spacing:11.492822pt;}
.wsb6{word-spacing:11.668275pt;}
.wsda{word-spacing:11.898240pt;}
.wsdd{word-spacing:11.902327pt;}
.wsc6{word-spacing:11.903095pt;}
.wsdb{word-spacing:11.903573pt;}
.wsb1{word-spacing:11.907379pt;}
.wsbf{word-spacing:11.908096pt;}
.wsc8{word-spacing:11.955200pt;}
.wscf{word-spacing:12.003021pt;}
.wsbb{word-spacing:12.050842pt;}
.ws38{word-spacing:13.134725pt;}
.ws64{word-spacing:13.230333pt;}
.ws78{word-spacing:13.283467pt;}
.wsa{word-spacing:13.763148pt;}
.ws14{word-spacing:14.348669pt;}
.ws15{word-spacing:14.356730pt;}
.wse3{word-spacing:14.633165pt;}
.wsb2{word-spacing:14.728806pt;}
.wsea{word-spacing:14.770679pt;}
.wsd8{word-spacing:14.771209pt;}
.wsd1{word-spacing:14.772062pt;}
.wsb9{word-spacing:14.773658pt;}
.wsdf{word-spacing:14.774810pt;}
.wse8{word-spacing:14.774980pt;}
.wsc1{word-spacing:14.775040pt;}
.wsbd{word-spacing:14.776627pt;}
.wsc7{word-spacing:14.920090pt;}
.wsc2{word-spacing:14.967910pt;}
.wsb4{word-spacing:15.111373pt;}
.wsd7{word-spacing:15.254835pt;}
.ws16{word-spacing:15.732893pt;}
.ws50{word-spacing:16.418365pt;}
.ws76{word-spacing:17.095695pt;}
.ws7d{word-spacing:18.596853pt;}
.ws7e{word-spacing:18.862523pt;}
.ws18{word-spacing:24.399002pt;}
.wsb0{word-spacing:66.949120pt;}
.ws6c{word-spacing:207.089340pt;}
.ws6f{word-spacing:270.474445pt;}
.ws6e{word-spacing:271.239578pt;}
.ws6d{word-spacing:271.287398pt;}
.ws70{word-spacing:287.976858pt;}
.ws71{word-spacing:295.197798pt;}
.ws72{word-spacing:313.130598pt;}
.ws81{word-spacing:571.552241pt;}
.ws87{word-spacing:597.999104pt;}
.ws86{word-spacing:660.273007pt;}
._2{margin-left:-8.799027pt;}
._3{margin-left:-5.899073pt;}
._9{margin-left:-4.797974pt;}
._8{margin-left:-3.421811pt;}
._6{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._7{width:0.969929pt;}
._4{width:2.662738pt;}
._57{width:4.347167pt;}
._0{width:9.035708pt;}
._11{width:10.626800pt;}
._b{width:11.530016pt;}
._c{width:12.688515pt;}
._4e{width:13.655948pt;}
._f{width:14.728806pt;}
._10{width:16.089417pt;}
._16{width:16.991338pt;}
._14{width:18.278050pt;}
._1a{width:19.505296pt;}
._e{width:20.419482pt;}
._17{width:21.519216pt;}
._a{width:23.063232pt;}
._15{width:24.388445pt;}
._53{width:25.419232pt;}
._51{width:26.407532pt;}
._19{width:27.417075pt;}
._d{width:29.011008pt;}
._18{width:30.221671pt;}
._54{width:31.561517pt;}
._4f{width:32.501461pt;}
._50{width:34.218210pt;}
._1b{width:36.556100pt;}
._56{width:54.993920pt;}
._5{width:61.647555pt;}
._55{width:78.904320pt;}
._1d{width:137.631983pt;}
._32{width:155.639502pt;}
._33{width:195.596907pt;}
._3c{width:215.552930pt;}
._42{width:234.131231pt;}
._29{width:236.665139pt;}
._3e{width:237.891245pt;}
._35{width:239.446818pt;}
._27{width:241.925427pt;}
._44{width:255.982118pt;}
._38{width:258.360335pt;}
._3b{width:261.293332pt;}
._3d{width:268.984868pt;}
._2a{width:271.287398pt;}
._34{width:272.855124pt;}
._25{width:284.103373pt;}
._37{width:294.110910pt;}
._23{width:305.192346pt;}
._28{width:307.152998pt;}
._40{width:315.362324pt;}
._3a{width:320.674324pt;}
._26{width:325.085798pt;}
._22{width:338.523443pt;}
._24{width:341.679616pt;}
._20{width:346.126950pt;}
._2c{width:357.747405pt;}
._1f{width:369.367859pt;}
._12{width:372.756624pt;}
._2f{width:375.058534pt;}
._2b{width:380.701389pt;}
._1c{width:385.357121pt;}
._2d{width:387.412195pt;}
._2e{width:389.404774pt;}
._31{width:395.860582pt;}
._45{width:407.259922pt;}
._30{width:413.362995pt;}
._3f{width:450.916378pt;}
._43{width:456.119975pt;}
._39{width:467.855949pt;}
._48{width:470.446891pt;}
._21{width:471.991296pt;}
._41{width:473.425102pt;}
._36{width:482.628868pt;}
._47{width:487.915622pt;}
._4d{width:497.240678pt;}
._46{width:518.918529pt;}
._1e{width:586.952499pt;}
._4b{width:622.961562pt;}
._49{width:637.786010pt;}
._4a{width:641.516032pt;}
._4c{width:647.111066pt;}
._52{width:1784.635823pt;}
._13{width:1805.889156pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fsc{font-size:49.829333pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fsb{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.yb{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y4f{bottom:28.346667pt;}
.y2{bottom:32.990462pt;}
.y10f{bottom:86.838667pt;}
.y25{bottom:91.398667pt;}
.y4e{bottom:92.108000pt;}
.y1b6{bottom:94.441333pt;}
.y1e1{bottom:94.841333pt;}
.y10e{bottom:101.450667pt;}
.y185{bottom:105.172000pt;}
.y24{bottom:107.298667pt;}
.y215{bottom:107.393333pt;}
.y4d{bottom:108.844000pt;}
.y1e0{bottom:110.182667pt;}
.y1b5{bottom:111.178667pt;}
.y85{bottom:113.952000pt;}
.y184{bottom:121.909333pt;}
.y10d{bottom:122.464000pt;}
.y214{bottom:122.736000pt;}
.y23{bottom:123.200000pt;}
.ye4{bottom:125.126667pt;}
.y1df{bottom:125.525333pt;}
.y4c{bottom:125.581333pt;}
.y1b4{bottom:127.916000pt;}
.y84{bottom:130.689333pt;}
.y154{bottom:134.206667pt;}
.y10c{bottom:137.076000pt;}
.y213{bottom:138.078667pt;}
.y183{bottom:138.646667pt;}
.yb6{bottom:139.074667pt;}
.y22{bottom:139.100000pt;}
.y1de{bottom:140.868000pt;}
.ye3{bottom:141.864000pt;}
.y4b{bottom:142.318667pt;}
.y1b3{bottom:144.653333pt;}
.y83{bottom:147.426667pt;}
.y153{bottom:152.285333pt;}
.y212{bottom:153.421333pt;}
.y21{bottom:155.000000pt;}
.y182{bottom:155.384000pt;}
.yb5{bottom:155.812000pt;}
.y1dd{bottom:156.210667pt;}
.y10b{bottom:158.090667pt;}
.ye2{bottom:158.601333pt;}
.y4a{bottom:159.056000pt;}
.y1b2{bottom:161.390667pt;}
.y124{bottom:161.860000pt;}
.y82{bottom:164.164000pt;}
.y152{bottom:166.897333pt;}
.y211{bottom:168.762667pt;}
.y20{bottom:170.901333pt;}
.y1dc{bottom:171.553333pt;}
.y181{bottom:172.121333pt;}
.yb4{bottom:172.549333pt;}
.y10a{bottom:172.702667pt;}
.ye1{bottom:175.338667pt;}
.y49{bottom:175.793333pt;}
.y1b1{bottom:178.128000pt;}
.y123{bottom:178.597333pt;}
.y81{bottom:180.901333pt;}
.y151{bottom:181.508000pt;}
.y210{bottom:184.105333pt;}
.y1f{bottom:186.801333pt;}
.y1db{bottom:186.896000pt;}
.y180{bottom:188.858667pt;}
.yb3{bottom:189.286667pt;}
.ye0{bottom:192.076000pt;}
.y48{bottom:192.530667pt;}
.y109{bottom:193.716000pt;}
.y1b0{bottom:194.865333pt;}
.y122{bottom:195.334667pt;}
.y150{bottom:196.120000pt;}
.y80{bottom:197.638667pt;}
.y20f{bottom:199.448000pt;}
.y1da{bottom:202.238667pt;}
.y1e{bottom:202.701333pt;}
.y17f{bottom:205.596000pt;}
.yb2{bottom:206.024000pt;}
.y108{bottom:208.328000pt;}
.ydf{bottom:208.813333pt;}
.y47{bottom:209.268000pt;}
.y1af{bottom:211.602667pt;}
.y121{bottom:212.072000pt;}
.y7f{bottom:214.376000pt;}
.y20e{bottom:214.790667pt;}
.y14f{bottom:217.134667pt;}
.y1d9{bottom:217.581333pt;}
.y17e{bottom:222.332000pt;}
.yb1{bottom:222.761333pt;}
.yde{bottom:225.550667pt;}
.y46{bottom:226.005333pt;}
.y1ae{bottom:228.340000pt;}
.y120{bottom:228.809333pt;}
.y107{bottom:229.342667pt;}
.y20d{bottom:230.133333pt;}
.y7e{bottom:231.113333pt;}
.y1d8{bottom:232.924000pt;}
.y17d{bottom:239.069333pt;}
.yb0{bottom:239.498667pt;}
.ydd{bottom:242.288000pt;}
.y45{bottom:242.742667pt;}
.y106{bottom:243.953333pt;}
.y1ad{bottom:245.077333pt;}
.y14e{bottom:245.240000pt;}
.y20c{bottom:245.476000pt;}
.y11f{bottom:245.546667pt;}
.y7d{bottom:247.850667pt;}
.y1d7{bottom:248.265333pt;}
.y103{bottom:250.052000pt;}
.y17c{bottom:255.806667pt;}
.y105{bottom:258.565333pt;}
.y44{bottom:259.480000pt;}
.yaf{bottom:260.220000pt;}
.y20b{bottom:260.818667pt;}
.y1ac{bottom:261.814667pt;}
.y11e{bottom:262.284000pt;}
.y14d{bottom:262.336000pt;}
.ydc{bottom:263.010667pt;}
.y1d6{bottom:263.608000pt;}
.y7c{bottom:264.588000pt;}
.y17b{bottom:272.544000pt;}
.y1d{bottom:273.154667pt;}
.y104{bottom:273.177333pt;}
.y20a{bottom:276.161333pt;}
.y43{bottom:276.217333pt;}
.y1ab{bottom:278.552000pt;}
.y1d5{bottom:278.950667pt;}
.y7b{bottom:281.325333pt;}
.y11d{bottom:283.005333pt;}
.y1c{bottom:289.054667pt;}
.y17a{bottom:289.281333pt;}
.yae{bottom:290.108000pt;}
.y209{bottom:291.502667pt;}
.ydb{bottom:292.898667pt;}
.y42{bottom:292.954667pt;}
.y102{bottom:294.192000pt;}
.y1d4{bottom:294.293333pt;}
.y14c{bottom:294.354667pt;}
.y1aa{bottom:295.289333pt;}
.y7a{bottom:298.062667pt;}
.y1b{bottom:304.954667pt;}
.y179{bottom:306.018667pt;}
.yad{bottom:306.845333pt;}
.y101{bottom:308.804000pt;}
.yda{bottom:309.636000pt;}
.y41{bottom:309.692000pt;}
.y14b{bottom:311.092000pt;}
.y1a9{bottom:312.026667pt;}
.y11c{bottom:312.893333pt;}
.y79{bottom:314.800000pt;}
.y1a{bottom:320.856000pt;}
.y208{bottom:322.188000pt;}
.y178{bottom:322.756000pt;}
.y100{bottom:323.416000pt;}
.yac{bottom:323.582667pt;}
.yd9{bottom:326.373333pt;}
.y40{bottom:326.429333pt;}
.y14a{bottom:327.829333pt;}
.y1a8{bottom:328.764000pt;}
.y1d3{bottom:328.964000pt;}
.y11b{bottom:329.630667pt;}
.y78{bottom:331.537333pt;}
.y207{bottom:337.530667pt;}
.y177{bottom:339.493333pt;}
.yab{bottom:340.320000pt;}
.yd8{bottom:343.110667pt;}
.y3f{bottom:343.166667pt;}
.yff{bottom:344.429333pt;}
.y149{bottom:344.566667pt;}
.y11a{bottom:346.368000pt;}
.y77{bottom:348.274667pt;}
.y1a7{bottom:349.486667pt;}
.y206{bottom:352.873333pt;}
.y19{bottom:354.688000pt;}
.y176{bottom:356.230667pt;}
.yaa{bottom:357.057333pt;}
.y1d2{bottom:358.852000pt;}
.yfe{bottom:359.041333pt;}
.yd7{bottom:359.848000pt;}
.y148{bottom:361.304000pt;}
.y119{bottom:363.105333pt;}
.y3e{bottom:363.889333pt;}
.y76{bottom:365.012000pt;}
.y205{bottom:368.216000pt;}
.y18{bottom:370.589333pt;}
.y175{bottom:372.968000pt;}
.ya9{bottom:373.794667pt;}
.y147{bottom:378.041333pt;}
.y1a6{bottom:379.374667pt;}
.y118{bottom:379.842667pt;}
.yfd{bottom:380.054667pt;}
.yd6{bottom:380.569333pt;}
.y75{bottom:381.749333pt;}
.y1d1{bottom:382.442667pt;}
.y204{bottom:383.558667pt;}
.y17{bottom:386.489333pt;}
.y174{bottom:389.705333pt;}
.ya8{bottom:390.532000pt;}
.yfc{bottom:394.666667pt;}
.y146{bottom:394.778667pt;}
.y1a5{bottom:396.112000pt;}
.y117{bottom:396.580000pt;}
.y1d0{bottom:398.064000pt;}
.y74{bottom:398.486667pt;}
.y203{bottom:398.901333pt;}
.y16{bottom:402.389333pt;}
.y173{bottom:406.442667pt;}
.ya7{bottom:407.269333pt;}
.yd5{bottom:410.457333pt;}
.y145{bottom:411.516000pt;}
.y1a4{bottom:412.848000pt;}
.y116{bottom:413.317333pt;}
.y1cf{bottom:413.685333pt;}
.y202{bottom:414.244000pt;}
.y73{bottom:415.224000pt;}
.yfb{bottom:415.681333pt;}
.yfa{bottom:422.986667pt;}
.y172{bottom:423.180000pt;}
.ya6{bottom:424.006667pt;}
.yd4{bottom:427.194667pt;}
.y1a3{bottom:429.585333pt;}
.y115{bottom:430.054667pt;}
.y3d{bottom:430.689333pt;}
.y72{bottom:431.961333pt;}
.y144{bottom:432.238667pt;}
.y15{bottom:434.230667pt;}
.y1ce{bottom:437.277333pt;}
.y171{bottom:439.917333pt;}
.ya5{bottom:440.744000pt;}
.yd3{bottom:443.932000pt;}
.y201{bottom:444.928000pt;}
.y1a2{bottom:446.322667pt;}
.y71{bottom:448.698667pt;}
.y14{bottom:450.130667pt;}
.y114{bottom:450.777333pt;}
.y1cd{bottom:452.898667pt;}
.y170{bottom:456.654667pt;}
.ya4{bottom:457.481333pt;}
.yf9{bottom:458.398667pt;}
.y200{bottom:460.270667pt;}
.yd2{bottom:460.669333pt;}
.y143{bottom:462.126667pt;}
.y1a1{bottom:463.060000pt;}
.y3c{bottom:463.924000pt;}
.y70{bottom:465.436000pt;}
.y13{bottom:466.032000pt;}
.y16f{bottom:473.392000pt;}
.ya3{bottom:474.218667pt;}
.y1ff{bottom:475.613333pt;}
.y1cc{bottom:476.490667pt;}
.yd1{bottom:477.406667pt;}
.y142{bottom:478.864000pt;}
.y1a0{bottom:479.797333pt;}
.y3b{bottom:481.220000pt;}
.y12{bottom:481.932000pt;}
.y6f{bottom:482.173333pt;}
.y113{bottom:485.793333pt;}
.y16e{bottom:490.129333pt;}
.ya2{bottom:490.956000pt;}
.yd0{bottom:494.144000pt;}
.y141{bottom:495.601333pt;}
.y19f{bottom:496.534667pt;}
.y11{bottom:497.832000pt;}
.y3a{bottom:498.514667pt;}
.y6e{bottom:498.910667pt;}
.y1cb{bottom:500.082667pt;}
.y1fe{bottom:506.298667pt;}
.y16d{bottom:506.866667pt;}
.ya1{bottom:507.693333pt;}
.y140{bottom:512.338667pt;}
.y19e{bottom:513.272000pt;}
.y10{bottom:513.733333pt;}
.ycf{bottom:514.866667pt;}
.y6d{bottom:515.648000pt;}
.y1ca{bottom:515.704000pt;}
.y39{bottom:515.809333pt;}
.y1fd{bottom:521.641333pt;}
.y16c{bottom:523.604000pt;}
.yf8{bottom:524.430667pt;}
.ya0{bottom:528.416000pt;}
.yce{bottom:528.814667pt;}
.y13f{bottom:529.076000pt;}
.yf{bottom:529.633333pt;}
.y19d{bottom:530.009333pt;}
.y1c9{bottom:531.325333pt;}
.y6c{bottom:532.384000pt;}
.y38{bottom:533.105333pt;}
.y1fc{bottom:536.984000pt;}
.y16b{bottom:540.341333pt;}
.yf7{bottom:541.168000pt;}
.ye{bottom:545.533333pt;}
.y13e{bottom:545.813333pt;}
.y19c{bottom:546.746667pt;}
.y6b{bottom:549.121333pt;}
.y37{bottom:550.400000pt;}
.y1fb{bottom:552.325333pt;}
.y1c8{bottom:554.916000pt;}
.y16a{bottom:557.078667pt;}
.yf6{bottom:557.905333pt;}
.y9f{bottom:558.304000pt;}
.ycd{bottom:558.702667pt;}
.yd{bottom:561.434667pt;}
.y13d{bottom:562.549333pt;}
.y19b{bottom:563.484000pt;}
.y6a{bottom:565.858667pt;}
.y1fa{bottom:567.668000pt;}
.y36{bottom:567.696000pt;}
.y169{bottom:573.816000pt;}
.yf5{bottom:574.642667pt;}
.y9e{bottom:575.041333pt;}
.ycc{bottom:575.440000pt;}
.y1c7{bottom:578.508000pt;}
.y13c{bottom:579.286667pt;}
.y19a{bottom:580.221333pt;}
.ya{bottom:581.319968pt;}
.y69{bottom:582.596000pt;}
.y1f9{bottom:583.010667pt;}
.y35{bottom:584.990667pt;}
.y168{bottom:590.553333pt;}
.yf4{bottom:591.380000pt;}
.y9d{bottom:591.778667pt;}
.ycb{bottom:592.177333pt;}
.y1c6{bottom:594.129333pt;}
.y13b{bottom:596.024000pt;}
.y199{bottom:596.958667pt;}
.y1f8{bottom:598.353333pt;}
.y68{bottom:599.333333pt;}
.y34{bottom:602.285333pt;}
.y167{bottom:607.290667pt;}
.yf3{bottom:608.117333pt;}
.y9c{bottom:608.516000pt;}
.yca{bottom:608.914667pt;}
.y1c5{bottom:609.750667pt;}
.y13a{bottom:612.761333pt;}
.y198{bottom:613.696000pt;}
.y67{bottom:616.070667pt;}
.y33{bottom:619.581333pt;}
.y166{bottom:624.028000pt;}
.yf2{bottom:624.854667pt;}
.y9b{bottom:625.253333pt;}
.y1c4{bottom:625.372000pt;}
.yc9{bottom:625.652000pt;}
.y1f7{bottom:629.038667pt;}
.y139{bottom:629.498667pt;}
.y197{bottom:630.433333pt;}
.y66{bottom:632.808000pt;}
.y32{bottom:636.876000pt;}
.y165{bottom:640.765333pt;}
.yf1{bottom:641.592000pt;}
.y9a{bottom:641.990667pt;}
.yc8{bottom:642.388000pt;}
.y1f6{bottom:644.381333pt;}
.y196{bottom:647.170667pt;}
.y1c3{bottom:648.964000pt;}
.y65{bottom:649.545333pt;}
.y138{bottom:650.221333pt;}
.y31{bottom:654.170667pt;}
.y164{bottom:657.502667pt;}
.y99{bottom:658.726667pt;}
.y1f5{bottom:659.724000pt;}
.yf0{bottom:662.313333pt;}
.yc7{bottom:663.110667pt;}
.y195{bottom:663.908000pt;}
.y137{bottom:664.169333pt;}
.y1c2{bottom:665.004000pt;}
.y64{bottom:666.282667pt;}
.y30{bottom:671.466667pt;}
.y163{bottom:674.238667pt;}
.y1f4{bottom:675.066667pt;}
.y98{bottom:675.464000pt;}
.yef{bottom:680.246667pt;}
.y194{bottom:680.645333pt;}
.y63{bottom:683.020000pt;}
.y2f{bottom:688.761333pt;}
.y1f3{bottom:690.408000pt;}
.y162{bottom:690.976000pt;}
.y97{bottom:692.201333pt;}
.yc6{bottom:692.998667pt;}
.y1c1{bottom:696.984000pt;}
.y193{bottom:697.382667pt;}
.y136{bottom:698.318667pt;}
.y62{bottom:699.757333pt;}
.y1f2{bottom:705.750667pt;}
.y2e{bottom:706.057333pt;}
.y161{bottom:707.713333pt;}
.y96{bottom:708.938667pt;}
.yc5{bottom:709.736000pt;}
.yee{bottom:710.134667pt;}
.y1c0{bottom:713.721333pt;}
.y192{bottom:714.120000pt;}
.y61{bottom:716.494667pt;}
.y135{bottom:717.940000pt;}
.y1f1{bottom:721.093333pt;}
.y160{bottom:724.450667pt;}
.y95{bottom:725.676000pt;}
.yc4{bottom:726.473333pt;}
.yed{bottom:726.872000pt;}
.y1bf{bottom:730.458667pt;}
.y134{bottom:730.560000pt;}
.y191{bottom:730.857333pt;}
.y60{bottom:733.232000pt;}
.y2d{bottom:734.161333pt;}
.y1f0{bottom:736.436000pt;}
.y15f{bottom:741.188000pt;}
.y94{bottom:742.413333pt;}
.y133{bottom:743.178667pt;}
.yc3{bottom:743.210667pt;}
.yec{bottom:743.609333pt;}
.y1be{bottom:747.196000pt;}
.y190{bottom:747.594667pt;}
.y2c{bottom:748.506667pt;}
.y5f{bottom:749.969333pt;}
.y1ef{bottom:751.778667pt;}
.y132{bottom:755.798667pt;}
.y15e{bottom:757.925333pt;}
.y93{bottom:759.150667pt;}
.yc2{bottom:759.948000pt;}
.yeb{bottom:760.346667pt;}
.y1bd{bottom:763.933333pt;}
.y18f{bottom:764.332000pt;}
.y5e{bottom:766.706667pt;}
.y2b{bottom:766.710667pt;}
.y1ee{bottom:767.121333pt;}
.y131{bottom:768.417333pt;}
.y92{bottom:775.888000pt;}
.yc1{bottom:776.685333pt;}
.yea{bottom:777.084000pt;}
.y15d{bottom:778.648000pt;}
.y1bc{bottom:780.670667pt;}
.y2a{bottom:781.057333pt;}
.y18e{bottom:781.069333pt;}
.y1ed{bottom:782.464000pt;}
.y5d{bottom:783.444000pt;}
.y130{bottom:787.438667pt;}
.y29{bottom:791.546667pt;}
.y91{bottom:792.625333pt;}
.yc0{bottom:793.422667pt;}
.ye9{bottom:793.821333pt;}
.y1bb{bottom:797.408000pt;}
.y18d{bottom:797.806667pt;}
.y5c{bottom:800.181333pt;}
.y12f{bottom:806.460000pt;}
.y15c{bottom:808.536000pt;}
.y90{bottom:809.362667pt;}
.y28{bottom:809.749333pt;}
.ybf{bottom:810.160000pt;}
.ye8{bottom:810.558667pt;}
.y216{bottom:813.148000pt;}
.y1ec{bottom:813.149333pt;}
.y1ba{bottom:814.145333pt;}
.y18c{bottom:814.544000pt;}
.y5b{bottom:816.918667pt;}
.y12e{bottom:819.080000pt;}
.y27{bottom:820.238667pt;}
.y15b{bottom:825.273333pt;}
.y8f{bottom:826.100000pt;}
.ybe{bottom:826.897333pt;}
.ye7{bottom:827.296000pt;}
.y1eb{bottom:828.490667pt;}
.y1b9{bottom:830.882667pt;}
.y18b{bottom:831.281333pt;}
.y5a{bottom:833.656000pt;}
.y12d{bottom:838.101333pt;}
.y26{bottom:838.442667pt;}
.y15a{bottom:842.010667pt;}
.y8e{bottom:842.837333pt;}
.y1ea{bottom:843.833333pt;}
.ye6{bottom:844.033333pt;}
.ybd{bottom:847.620000pt;}
.y18a{bottom:848.018667pt;}
.y59{bottom:850.393333pt;}
.y12c{bottom:857.122667pt;}
.y1e9{bottom:859.176000pt;}
.y8d{bottom:859.574667pt;}
.ye5{bottom:860.770667pt;}
.y1b8{bottom:864.357333pt;}
.y189{bottom:864.754667pt;}
.y58{bottom:867.130667pt;}
.y9{bottom:867.976000pt;}
.y159{bottom:869.714667pt;}
.y1e8{bottom:874.518667pt;}
.y12b{bottom:876.144000pt;}
.y8c{bottom:876.312000pt;}
.ybc{bottom:877.508000pt;}
.y188{bottom:881.492000pt;}
.y57{bottom:883.868000pt;}
.y8{bottom:884.713333pt;}
.y1b7{bottom:885.078667pt;}
.y158{bottom:887.793333pt;}
.y12a{bottom:888.762667pt;}
.y1e7{bottom:889.861333pt;}
.y8b{bottom:893.049333pt;}
.ybb{bottom:894.245333pt;}
.y187{bottom:898.229333pt;}
.y56{bottom:900.605333pt;}
.y129{bottom:901.382667pt;}
.y157{bottom:902.405333pt;}
.y1e6{bottom:905.204000pt;}
.y8a{bottom:909.786667pt;}
.yba{bottom:910.982667pt;}
.y186{bottom:914.966667pt;}
.y156{bottom:917.017333pt;}
.y55{bottom:917.342667pt;}
.y128{bottom:920.404000pt;}
.y1e5{bottom:920.546667pt;}
.y7{bottom:925.510667pt;}
.y89{bottom:926.524000pt;}
.yb9{bottom:927.720000pt;}
.y112{bottom:931.704000pt;}
.y54{bottom:934.080000pt;}
.y1e4{bottom:935.889333pt;}
.y155{bottom:938.030667pt;}
.y127{bottom:939.425333pt;}
.y88{bottom:943.261333pt;}
.yb8{bottom:944.456000pt;}
.y111{bottom:948.441333pt;}
.y6{bottom:950.616000pt;}
.y53{bottom:950.817333pt;}
.y1e3{bottom:951.230667pt;}
.yb7{bottom:961.193333pt;}
.y87{bottom:963.984000pt;}
.y110{bottom:965.178667pt;}
.y126{bottom:966.137333pt;}
.y1e2{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y5{bottom:975.722667pt;}
.y86{bottom:981.916000pt;}
.y125{bottom:983.233333pt;}
.y51{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h1a{height:14.948784pt;}
.h8{height:22.673858pt;}
.h14{height:24.866650pt;}
.hc{height:27.672303pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h18{height:30.732706pt;}
.h17{height:30.860227pt;}
.hb{height:32.284045pt;}
.hf{height:34.574438pt;}
.h1b{height:34.717901pt;}
.h3{height:35.024664pt;}
.h4{height:36.445809pt;}
.hd{height:36.896250pt;}
.h11{height:38.415786pt;}
.he{height:38.809074pt;}
.h5{height:38.947124pt;}
.h10{height:41.508454pt;}
.h1c{height:43.660390pt;}
.h2{height:45.272024pt;}
.h12{height:46.120196pt;}
.h7{height:48.481423pt;}
.h13{height:48.511220pt;}
.h19{height:62.138916pt;}
.h16{height:63.795772pt;}
.h15{height:63.801105pt;}
.h6{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:52.456952pt;}
.x55{left:65.081333pt;}
.x5a{left:67.457333pt;}
.x53{left:75.952000pt;}
.x59{left:81.542667pt;}
.x5d{left:90.432000pt;}
.x56{left:95.686667pt;}
.x61{left:112.796000pt;}
.x54{left:121.508000pt;}
.x5e{left:123.709333pt;}
.x60{left:125.012000pt;}
.x58{left:127.944000pt;}
.x5f{left:131.993333pt;}
.x57{left:134.416000pt;}
.x5b{left:144.097333pt;}
.x5c{left:152.189333pt;}
.x50{left:174.982667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x51{left:227.093333pt;}
.x4d{left:231.025333pt;}
.x5{left:241.085333pt;}
.x37{left:249.765333pt;}
.x8{left:251.365333pt;}
.x4a{left:256.178667pt;}
.x4c{left:260.290667pt;}
.x38{left:263.049333pt;}
.x4f{left:265.492000pt;}
.x65{left:268.170667pt;}
.x4e{left:269.861333pt;}
.x52{left:273.146667pt;}
.x7{left:275.080000pt;}
.x45{left:278.768000pt;}
.x3b{left:281.796000pt;}
.x17{left:282.945333pt;}
.x42{left:285.140000pt;}
.x1f{left:286.288000pt;}
.x18{left:289.586667pt;}
.x3c{left:295.080000pt;}
.x41{left:296.628000pt;}
.x20{left:299.572000pt;}
.x3d{left:303.842667pt;}
.x66{left:306.421333pt;}
.x69{left:311.238667pt;}
.x67{left:314.950667pt;}
.x68{left:315.882667pt;}
.x3f{left:317.669333pt;}
.x77{left:324.317333pt;}
.x87{left:332.380000pt;}
.x78{left:337.601333pt;}
.x62{left:345.369333pt;}
.x84{left:349.605333pt;}
.x7c{left:350.969333pt;}
.x9{left:355.626667pt;}
.xa{left:362.269333pt;}
.x83{left:368.893333pt;}
.x86{left:384.686667pt;}
.x13{left:385.816000pt;}
.x14{left:392.457333pt;}
.x79{left:398.630667pt;}
.x75{left:403.289333pt;}
.x7a{left:411.913333pt;}
.x7d{left:414.129333pt;}
.x76{left:416.573333pt;}
.x19{left:424.824000pt;}
.x7e{left:427.413333pt;}
.x1a{left:438.108000pt;}
.x85{left:439.422667pt;}
.x71{left:446.069333pt;}
.x43{left:447.730667pt;}
.x44{left:449.397333pt;}
.x6c{left:455.882667pt;}
.x72{left:459.353333pt;}
.x46{left:460.845333pt;}
.x47{left:462.232000pt;}
.x35{left:466.501333pt;}
.x6d{left:469.166667pt;}
.x48{left:473.618667pt;}
.x40{left:476.769333pt;}
.x49{left:477.940000pt;}
.x36{left:479.785333pt;}
.x2f{left:485.370667pt;}
.x4b{left:487.594667pt;}
.xf{left:492.852000pt;}
.x21{left:496.566667pt;}
.x30{left:497.513333pt;}
.x10{left:499.494667pt;}
.x22{left:509.850667pt;}
.x26{left:511.506667pt;}
.x7f{left:512.980000pt;}
.x27{left:524.789333pt;}
.x80{left:526.264000pt;}
.x81{left:529.652000pt;}
.x7b{left:530.545333pt;}
.x82{left:542.934667pt;}
.x31{left:544.437333pt;}
.x1b{left:553.844000pt;}
.x63{left:554.861333pt;}
.x32{left:557.720000pt;}
.x64{left:565.786667pt;}
.x1c{left:567.126667pt;}
.x70{left:568.440000pt;}
.x39{left:581.958667pt;}
.x3e{left:584.365333pt;}
.xb{left:585.762667pt;}
.x6a{left:587.156000pt;}
.xc{left:592.405333pt;}
.x3a{left:594.021333pt;}
.x8d{left:594.973333pt;}
.xd{left:599.086667pt;}
.x6b{left:600.440000pt;}
.xe{left:605.728000pt;}
.x6e{left:616.872000pt;}
.x8e{left:618.882667pt;}
.x6f{left:630.154667pt;}
.x15{left:639.373333pt;}
.x16{left:646.014667pt;}
.x1d{left:652.222667pt;}
.x33{left:658.810667pt;}
.x1e{left:665.506667pt;}
.x8c{left:669.589333pt;}
.x34{left:672.094667pt;}
.x28{left:678.245333pt;}
.x29{left:691.529333pt;}
.x2d{left:694.996000pt;}
.x2a{left:698.190667pt;}
.x23{left:700.400000pt;}
.x88{left:702.253333pt;}
.x2c{left:704.964000pt;}
.x2e{left:708.278667pt;}
.x2b{left:711.473333pt;}
.x24{left:713.682667pt;}
.x89{left:720.346667pt;}
.x73{left:726.178667pt;}
.x25{left:727.121333pt;}
.x8b{left:732.476000pt;}
.x11{left:733.794667pt;}
.x74{left:739.461333pt;}
.x12{left:740.436000pt;}
.x8a{left:744.257333pt;}
}




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