
    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_ab3c0d8fd5e390cc871b490d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014000;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_04a9f68f57d0f4580ad288a8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_99a0bf41a9a11d3b5216df91.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3ff7b1a56dc8fb0cdebaf6d9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_70176ce1ae4a254cc2422dd2.woff')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_7d207d8f9f48ec10e2b751dc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_3ff7b1a56dc8fb0cdebaf6d9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_8283fc543f7c8dbe1a13ef49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4797a2cfc5a74fd6bade2b2b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922000;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_353aab2273f9e5678d5c1441.woff')format("woff");}.ffa{font-family:ffa;line-height:1.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fafedde0cafb4a02fa22c21a.woff')format("woff");}.ffb{font-family:ffb;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;}
.m8{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);}
.mf{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);}
.m19{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m13{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);}
.m1c{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);}
.m12{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);}
.m21{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);}
.m3{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);}
.m11{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);}
.m4{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);}
.m7{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);}
.m1a{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);}
.m1f{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);}
.m14{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m22{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);}
.m17{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);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m15{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);}
.m20{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);}
.m1{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);}
.ma{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);}
.m10{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);}
.me{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);}
.m9{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);}
.m6{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);}
.m24{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);}
.m5{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);}
.m29{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);}
.m1e{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);}
.m18{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);}
.m27{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);}
.m23{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);}
.m25{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);}
.m28{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{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:-11.952000px;}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.294000px;}
.v2{vertical-align:35.868000px;}
.v5{vertical-align:66.384000px;}
.lsa{letter-spacing:0.000000px;}
.ls74{letter-spacing:0.000030px;}
.ls8d{letter-spacing:0.000435px;}
.ls34{letter-spacing:0.000583px;}
.ls33{letter-spacing:0.000600px;}
.ls9f{letter-spacing:0.000800px;}
.lsa0{letter-spacing:0.000901px;}
.ls3e{letter-spacing:0.001258px;}
.lsa5{letter-spacing:0.001502px;}
.ls75{letter-spacing:0.001996px;}
.ls66{letter-spacing:0.003639px;}
.ls9b{letter-spacing:0.004800px;}
.ls65{letter-spacing:0.005282px;}
.ls70{letter-spacing:0.042583px;}
.ls24{letter-spacing:0.048583px;}
.ls95{letter-spacing:0.106800px;}
.ls2c{letter-spacing:0.460741px;}
.ls72{letter-spacing:0.524012px;}
.ls6e{letter-spacing:0.530012px;}
.ls36{letter-spacing:0.564600px;}
.ls39{letter-spacing:0.565200px;}
.ls3a{letter-spacing:0.570600px;}
.ls3c{letter-spacing:0.571200px;}
.ls81{letter-spacing:0.670741px;}
.ls64{letter-spacing:0.714780px;}
.ls4a{letter-spacing:0.750017px;}
.ls6c{letter-spacing:0.794815px;}
.ls35{letter-spacing:0.888571px;}
.ls45{letter-spacing:0.996583px;}
.ls6a{letter-spacing:1.134571px;}
.ls6b{letter-spacing:1.140000px;}
.ls5b{letter-spacing:1.492200px;}
.ls47{letter-spacing:1.494017px;}
.ls6d{letter-spacing:1.494172px;}
.ls5f{letter-spacing:1.499108px;}
.ls44{letter-spacing:2.020741px;}
.ls5d{letter-spacing:2.064017px;}
.ls58{letter-spacing:2.092200px;}
.ls7d{letter-spacing:2.314741px;}
.ls77{letter-spacing:2.316583px;}
.ls5c{letter-spacing:2.320741px;}
.ls57{letter-spacing:2.434741px;}
.ls7a{letter-spacing:2.614741px;}
.ls7e{letter-spacing:2.808017px;}
.ls3d{letter-spacing:2.988571px;}
.ls32{letter-spacing:2.989200px;}
.ls3b{letter-spacing:3.066600px;}
.ls25{letter-spacing:3.559200px;}
.ls2d{letter-spacing:3.876571px;}
.ls2f{letter-spacing:4.303200px;}
.ls46{letter-spacing:4.408741px;}
.ls43{letter-spacing:4.620571px;}
.ls63{letter-spacing:8.020554px;}
.ls0{letter-spacing:8.373300px;}
.ls56{letter-spacing:9.566383px;}
.ls2e{letter-spacing:9.752100px;}
.ls6f{letter-spacing:9.758100px;}
.ls4b{letter-spacing:11.306100px;}
.ls5e{letter-spacing:11.900100px;}
.ls9{letter-spacing:11.954850px;}
.ls29{letter-spacing:12.129483px;}
.ls38{letter-spacing:12.135483px;}
.ls59{letter-spacing:13.042741px;}
.ls91{letter-spacing:13.146270px;}
.lsa6{letter-spacing:13.257789px;}
.ls9c{letter-spacing:13.268501px;}
.ls4c{letter-spacing:13.270183px;}
.ls96{letter-spacing:13.327407px;}
.ls9a{letter-spacing:13.332753px;}
.ls1c{letter-spacing:13.389734px;}
.ls98{letter-spacing:13.394400px;}
.ls92{letter-spacing:13.448400px;}
.ls93{letter-spacing:13.454400px;}
.ls99{letter-spacing:13.481053px;}
.ls94{letter-spacing:13.484002px;}
.ls9d{letter-spacing:13.517234px;}
.lsa1{letter-spacing:13.523155px;}
.lsa4{letter-spacing:13.553409px;}
.ls97{letter-spacing:13.592996px;}
.lsa3{letter-spacing:13.660380px;}
.lsa8{letter-spacing:13.712480px;}
.ls1f{letter-spacing:13.808164px;}
.ls1d{letter-spacing:13.927715px;}
.ls1e{letter-spacing:13.987490px;}
.ls69{letter-spacing:14.337483px;}
.ls5a{letter-spacing:14.403483px;}
.ls16{letter-spacing:14.525471px;}
.ls67{letter-spacing:14.631813px;}
.lsf{letter-spacing:14.645022px;}
.ls1b{letter-spacing:14.704798px;}
.ls10{letter-spacing:14.764573px;}
.ls20{letter-spacing:14.824349px;}
.ls7f{letter-spacing:14.834251px;}
.ls15{letter-spacing:14.884124px;}
.ls40{letter-spacing:14.915163px;}
.ls6{letter-spacing:14.943900px;}
.ls17{letter-spacing:15.003676px;}
.ls62{letter-spacing:15.042063px;}
.ls14{letter-spacing:15.063451px;}
.ls73{letter-spacing:15.063835px;}
.ls13{letter-spacing:15.123227px;}
.lse{letter-spacing:15.183002px;}
.ls21{letter-spacing:15.720983px;}
.ls4e{letter-spacing:15.780758px;}
.ls2b{letter-spacing:15.900310px;}
.ls9e{letter-spacing:15.920988px;}
.lsa2{letter-spacing:16.147859px;}
.ls85{letter-spacing:16.199188px;}
.ls53{letter-spacing:16.242571px;}
.ls28{letter-spacing:16.248571px;}
.ls22{letter-spacing:16.258963px;}
.ls4f{letter-spacing:16.318739px;}
.ls8e{letter-spacing:16.378514px;}
.ls37{letter-spacing:16.381258px;}
.ls87{letter-spacing:16.438290px;}
.ls86{letter-spacing:16.498066px;}
.ls8f{letter-spacing:16.557841px;}
.lsa7{letter-spacing:16.682400px;}
.ls27{letter-spacing:17.109483px;}
.ls52{letter-spacing:17.115483px;}
.ls42{letter-spacing:17.127483px;}
.ls8a{letter-spacing:17.155597px;}
.ls49{letter-spacing:17.211483px;}
.ls8c{letter-spacing:17.215373px;}
.ls18{letter-spacing:17.334924px;}
.ls51{letter-spacing:17.500466px;}
.ls1a{letter-spacing:17.574026px;}
.lsb{letter-spacing:17.633802px;}
.ls61{letter-spacing:17.636134px;}
.lsd{letter-spacing:17.693578px;}
.ls82{letter-spacing:17.813129px;}
.ls3f{letter-spacing:18.052231px;}
.ls76{letter-spacing:18.106520px;}
.ls50{letter-spacing:18.153407px;}
.ls89{letter-spacing:18.171782px;}
.ls4d{letter-spacing:18.351109px;}
.ls8b{letter-spacing:18.470660px;}
.ls90{letter-spacing:18.530436px;}
.ls19{letter-spacing:18.709763px;}
.ls2{letter-spacing:18.889090px;}
.ls4{letter-spacing:18.948865px;}
.ls7{letter-spacing:19.068416px;}
.ls5{letter-spacing:19.128192px;}
.lsc{letter-spacing:19.187968px;}
.ls80{letter-spacing:19.383483px;}
.ls11{letter-spacing:19.486846px;}
.ls26{letter-spacing:19.890583px;}
.ls31{letter-spacing:20.443255px;}
.ls88{letter-spacing:20.503031px;}
.ls54{letter-spacing:20.905200px;}
.ls3{letter-spacing:21.041011px;}
.ls68{letter-spacing:21.228571px;}
.ls41{letter-spacing:21.234571px;}
.ls48{letter-spacing:21.324571px;}
.ls8{letter-spacing:21.339889px;}
.ls7b{letter-spacing:21.786571px;}
.ls83{letter-spacing:21.818094px;}
.ls12{letter-spacing:21.877870px;}
.ls23{letter-spacing:22.394583px;}
.ls30{letter-spacing:23.312484px;}
.ls79{letter-spacing:24.903483px;}
.ls84{letter-spacing:25.464406px;}
.ls55{letter-spacing:25.839483px;}
.ls7c{letter-spacing:26.397483px;}
.ls78{letter-spacing:27.439200px;}
.ls1{letter-spacing:28.453654px;}
.ls71{letter-spacing:698.690012px;}
.ls60{letter-spacing:710.836741px;}
.ls2a{letter-spacing:948.463200px;}
.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;}
}
.ws19{word-spacing:-14.943900px;}
.wsb1{word-spacing:-13.449600px;}
.ws25{word-spacing:-11.955150px;}
.ws73{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws43{word-spacing:-3.526760px;}
.ws64{word-spacing:-2.510575px;}
.ws3e{word-spacing:-2.450800px;}
.ws20{word-spacing:-2.391024px;}
.ws74{word-spacing:-2.211697px;}
.ws97{word-spacing:-2.151922px;}
.wsa7{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws87{word-spacing:-2.032370px;}
.wsba{word-spacing:-1.990541px;}
.ws8d{word-spacing:-1.866167px;}
.ws8e{word-spacing:-1.853044px;}
.ws4a{word-spacing:-1.793268px;}
.ws78{word-spacing:-1.733492px;}
.ws77{word-spacing:-1.673717px;}
.ws50{word-spacing:-1.554166px;}
.ws60{word-spacing:-1.434614px;}
.ws89{word-spacing:-1.374839px;}
.ws5a{word-spacing:-1.315063px;}
.ws86{word-spacing:-1.255288px;}
.ws44{word-spacing:-1.195512px;}
.ws59{word-spacing:-1.135736px;}
.ws6a{word-spacing:-1.075961px;}
.ws17{word-spacing:-1.016185px;}
.ws2f{word-spacing:-0.956410px;}
.ws42{word-spacing:-0.896634px;}
.ws31{word-spacing:-0.836858px;}
.wsab{word-spacing:-0.717307px;}
.wsa8{word-spacing:-0.657532px;}
.ws47{word-spacing:-0.537980px;}
.ws1b{word-spacing:-0.478205px;}
.ws52{word-spacing:-0.418429px;}
.ws4b{word-spacing:-0.358654px;}
.wsb0{word-spacing:-0.322790px;}
.ws3b{word-spacing:-0.298878px;}
.wsc2{word-spacing:-0.268992px;}
.ws32{word-spacing:-0.239102px;}
.ws72{word-spacing:-0.217512px;}
.wsbc{word-spacing:-0.215194px;}
.ws14{word-spacing:-0.179327px;}
.wsb9{word-spacing:-0.161395px;}
.ws7{word-spacing:-0.119551px;}
.wsb8{word-spacing:-0.107597px;}
.ws75{word-spacing:-0.062287px;}
.ws23{word-spacing:-0.059776px;}
.wsb4{word-spacing:-0.053798px;}
.ws24{word-spacing:-0.000448px;}
.ws5{word-spacing:0.000000px;}
.ws92{word-spacing:0.003704px;}
.wsb5{word-spacing:0.053798px;}
.ws11{word-spacing:0.059776px;}
.wsb6{word-spacing:0.107597px;}
.ws26{word-spacing:0.119551px;}
.wsb7{word-spacing:0.161395px;}
.wsa{word-spacing:0.179327px;}
.ws6d{word-spacing:0.183121px;}
.wsb2{word-spacing:0.215194px;}
.ws9{word-spacing:0.239102px;}
.wsbf{word-spacing:0.268992px;}
.ws38{word-spacing:0.298878px;}
.ws2b{word-spacing:0.358654px;}
.ws1{word-spacing:0.417541px;}
.ws2{word-spacing:0.418196px;}
.ws6b{word-spacing:0.418429px;}
.ws4{word-spacing:0.422252px;}
.ws45{word-spacing:0.478205px;}
.ws95{word-spacing:0.537980px;}
.wsc9{word-spacing:0.537984px;}
.ws39{word-spacing:0.597756px;}
.wsa4{word-spacing:0.657532px;}
.ws84{word-spacing:0.717307px;}
.ws5e{word-spacing:0.777083px;}
.wsa5{word-spacing:0.836858px;}
.ws6c{word-spacing:0.896634px;}
.ws69{word-spacing:0.956410px;}
.wsc8{word-spacing:0.968371px;}
.ws33{word-spacing:1.016185px;}
.wsc3{word-spacing:1.022170px;}
.ws29{word-spacing:1.075961px;}
.ws63{word-spacing:1.135736px;}
.ws61{word-spacing:1.195512px;}
.ws9b{word-spacing:1.255288px;}
.ws34{word-spacing:1.315063px;}
.ws2c{word-spacing:1.374839px;}
.ws40{word-spacing:1.434614px;}
.wsa2{word-spacing:1.494390px;}
.ws4d{word-spacing:1.554166px;}
.ws2a{word-spacing:1.613941px;}
.ws7b{word-spacing:1.673717px;}
.ws48{word-spacing:1.733492px;}
.wsa3{word-spacing:1.793268px;}
.ws1c{word-spacing:1.853044px;}
.ws27{word-spacing:1.912819px;}
.wsbd{word-spacing:1.936742px;}
.wsb{word-spacing:1.972595px;}
.ws1f{word-spacing:2.032370px;}
.ws80{word-spacing:2.092146px;}
.wsc4{word-spacing:2.098138px;}
.ws3d{word-spacing:2.151922px;}
.ws62{word-spacing:2.211697px;}
.ws46{word-spacing:2.271473px;}
.ws53{word-spacing:2.391024px;}
.wsbe{word-spacing:2.474726px;}
.ws9c{word-spacing:2.510575px;}
.ws8a{word-spacing:2.576976px;}
.ws56{word-spacing:2.630126px;}
.ws30{word-spacing:2.689902px;}
.wsc0{word-spacing:2.689920px;}
.ws2d{word-spacing:2.749678px;}
.ws5d{word-spacing:2.809453px;}
.ws41{word-spacing:2.869229px;}
.ws6{word-spacing:2.869236px;}
.ws36{word-spacing:2.929004px;}
.ws8f{word-spacing:2.930995px;}
.ws58{word-spacing:3.048556px;}
.wsb3{word-spacing:3.066509px;}
.wsc{word-spacing:3.108331px;}
.ws91{word-spacing:3.168107px;}
.wsc6{word-spacing:3.221539px;}
.wsaf{word-spacing:3.224822px;}
.ws90{word-spacing:3.227882px;}
.wsbb{word-spacing:3.227904px;}
.wsca{word-spacing:3.228826px;}
.ws12{word-spacing:3.287658px;}
.ws57{word-spacing:3.347434px;}
.ws79{word-spacing:3.407209px;}
.ws13{word-spacing:3.414375px;}
.ws7a{word-spacing:3.466985px;}
.wscc{word-spacing:3.496896px;}
.ws7f{word-spacing:3.526760px;}
.wsc1{word-spacing:3.550694px;}
.wsad{word-spacing:3.586536px;}
.ws4c{word-spacing:3.646312px;}
.wsaa{word-spacing:3.706087px;}
.ws82{word-spacing:3.765863px;}
.ws3f{word-spacing:3.825638px;}
.ws88{word-spacing:3.885414px;}
.ws18{word-spacing:4.004965px;}
.wsc7{word-spacing:4.034880px;}
.ws35{word-spacing:4.064741px;}
.wscb{word-spacing:4.088678px;}
.ws16{word-spacing:4.124516px;}
.ws1d{word-spacing:4.184292px;}
.ws7c{word-spacing:4.244068px;}
.ws10{word-spacing:4.303843px;}
.ws15{word-spacing:4.303872px;}
.ws4e{word-spacing:4.423394px;}
.ws54{word-spacing:4.483170px;}
.ws3c{word-spacing:4.542946px;}
.ws3a{word-spacing:4.602721px;}
.ws85{word-spacing:4.662497px;}
.ws2e{word-spacing:4.841824px;}
.ws8c{word-spacing:4.884638px;}
.ws8b{word-spacing:4.890002px;}
.ws5b{word-spacing:4.901599px;}
.ws21{word-spacing:5.021150px;}
.ws6f{word-spacing:5.024242px;}
.ws1a{word-spacing:5.080926px;}
.ws93{word-spacing:5.140702px;}
.ws9f{word-spacing:5.200477px;}
.ws5f{word-spacing:5.320028px;}
.ws1e{word-spacing:5.379804px;}
.ws7e{word-spacing:5.439580px;}
.wse{word-spacing:5.499355px;}
.wsa6{word-spacing:5.559131px;}
.ws8{word-spacing:5.618906px;}
.ws28{word-spacing:5.678682px;}
.wsa9{word-spacing:5.738458px;}
.ws9a{word-spacing:5.858009px;}
.ws94{word-spacing:5.917784px;}
.wsc5{word-spacing:5.971622px;}
.ws81{word-spacing:6.037336px;}
.ws71{word-spacing:6.170418px;}
.wsd{word-spacing:6.216662px;}
.ws66{word-spacing:6.276438px;}
.ws9d{word-spacing:6.336214px;}
.wsa0{word-spacing:6.455765px;}
.ws4f{word-spacing:6.515540px;}
.ws76{word-spacing:6.575316px;}
.ws6e{word-spacing:6.575782px;}
.wsae{word-spacing:6.671002px;}
.ws49{word-spacing:6.694867px;}
.ws99{word-spacing:6.754643px;}
.ws51{word-spacing:6.814418px;}
.ws98{word-spacing:6.874194px;}
.ws83{word-spacing:7.053521px;}
.ws55{word-spacing:7.113296px;}
.wsa1{word-spacing:7.352399px;}
.ws9e{word-spacing:7.412174px;}
.ws22{word-spacing:7.471950px;}
.ws5c{word-spacing:7.770828px;}
.wsf{word-spacing:7.830604px;}
.wsac{word-spacing:7.890379px;}
.ws96{word-spacing:8.009930px;}
.ws37{word-spacing:8.249033px;}
.ws65{word-spacing:8.308808px;}
.ws7d{word-spacing:16.796944px;}
.ws68{word-spacing:227.565709px;}
.ws70{word-spacing:685.348006px;}
.ws67{word-spacing:1009.430557px;}
._1a{margin-left:-23.252708px;}
._36{margin-left:-20.242564px;}
._34{margin-left:-7.711052px;}
._f{margin-left:-6.575316px;}
._4{margin-left:-5.499355px;}
._3{margin-left:-4.399495px;}
._14{margin-left:-3.287658px;}
._1{margin-left:-1.506341px;}
._2b{width:1.319767px;}
._2c{width:2.327696px;}
._19{width:3.347434px;}
._1c{width:4.793999px;}
._0{width:10.879128px;}
._15{width:12.863705px;}
._13{width:13.879890px;}
._1b{width:15.804660px;}
._2a{width:16.856719px;}
._c{width:17.884855px;}
._7{width:19.319470px;}
._d{width:20.431307px;}
._e{width:21.531167px;}
._8{width:22.726679px;}
._18{width:23.898289px;}
._6{width:24.986201px;}
._b{width:26.779469px;}
._2d{width:28.453186px;}
._a{width:30.079078px;}
._10{width:31.991897px;}
._1e{width:34.442696px;}
._5{width:36.116413px;}
._9{width:37.132598px;}
._16{width:38.148784px;}
._17{width:39.846426px;}
._35{width:41.364715px;}
._1d{width:42.380900px;}
._1f{width:44.365446px;}
._2{width:54.428083px;}
._33{width:94.576950px;}
._32{width:113.346488px;}
._26{width:175.030996px;}
._29{width:193.075188px;}
._28{width:200.427587px;}
._25{width:253.388768px;}
._24{width:259.426104px;}
._23{width:268.153342px;}
._27{width:366.364914px;}
._31{width:387.644766px;}
._20{width:405.338344px;}
._30{width:443.774054px;}
._21{width:523.335378px;}
._2f{width:558.304104px;}
._22{width:760.883612px;}
._11{width:1704.399000px;}
._2e{width:2500.851000px;}
._12{width:2524.761000px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs7{font-size:45.429600px;}
.fsb{font-size:47.337600px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs9{font-size:58.875516px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs5{font-size:65.856049px;}
.fs4{font-size:71.731200px;}
.fsa{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yb0{bottom:2.963254px;}
.y10c{bottom:8.404293px;}
.y3d{bottom:45.921000px;}
.y10a{bottom:99.720000px;}
.y13{bottom:100.260000px;}
.y1e1{bottom:102.126000px;}
.ye5{bottom:104.437500px;}
.y213{bottom:105.961500px;}
.y3c{bottom:106.518000px;}
.y1a0{bottom:109.398000px;}
.yb3{bottom:110.832000px;}
.yc9{bottom:110.955000px;}
.y9d{bottom:113.358000px;}
.y178{bottom:115.839000px;}
.y70{bottom:116.407500px;}
.y12{bottom:118.147500px;}
.y109{bottom:120.610500px;}
.y149{bottom:120.787500px;}
.y1e0{bottom:121.276500px;}
.y212{bottom:125.112000px;}
.ye4{bottom:125.328000px;}
.y3b{bottom:127.408500px;}
.y19f{bottom:130.290000px;}
.yb2{bottom:131.724000px;}
.yc8{bottom:131.847000px;}
.y9c{bottom:134.250000px;}
.y11{bottom:136.035000px;}
.y177{bottom:136.731000px;}
.y6f{bottom:137.298000px;}
.y1bf{bottom:137.731500px;}
.y148{bottom:140.080500px;}
.y1df{bottom:140.427000px;}
.y108{bottom:141.502500px;}
.y211{bottom:144.262500px;}
.ye3{bottom:146.220000px;}
.y3a{bottom:148.300500px;}
.y19e{bottom:151.180500px;}
.yc7{bottom:152.739000px;}
.y10{bottom:153.922500px;}
.y9b{bottom:155.142000px;}
.y176{bottom:157.621500px;}
.y146{bottom:158.013000px;}
.y6e{bottom:158.190000px;}
.y1be{bottom:158.623500px;}
.y1de{bottom:159.577500px;}
.y11a{bottom:162.394500px;}
.y210{bottom:163.413000px;}
.y107{bottom:166.878000px;}
.ye2{bottom:167.112000px;}
.yb1{bottom:167.352000px;}
.y39{bottom:169.192500px;}
.yf{bottom:171.811500px;}
.y19d{bottom:172.072500px;}
.yc6{bottom:173.629500px;}
.y147{bottom:175.945500px;}
.y9a{bottom:176.032500px;}
.y175{bottom:178.513500px;}
.y1dd{bottom:178.728000px;}
.y6d{bottom:179.082000px;}
.y1bd{bottom:179.514000px;}
.y20f{bottom:182.563500px;}
.y119{bottom:183.285000px;}
.y106{bottom:187.768500px;}
.ye1{bottom:188.002500px;}
.ye{bottom:189.699000px;}
.y38{bottom:190.083000px;}
.yaf{bottom:192.769664px;}
.y19c{bottom:192.964500px;}
.yc5{bottom:194.521500px;}
.y99{bottom:196.924500px;}
.y1dc{bottom:197.878500px;}
.y174{bottom:199.405500px;}
.y6c{bottom:199.972500px;}
.y1bc{bottom:200.406000px;}
.y145{bottom:201.081000px;}
.y20e{bottom:201.714000px;}
.y118{bottom:204.177000px;}
.yd{bottom:207.586500px;}
.y105{bottom:208.660500px;}
.ye0{bottom:208.894500px;}
.y37{bottom:210.975000px;}
.y19b{bottom:213.856500px;}
.yc4{bottom:215.413500px;}
.y1db{bottom:217.029000px;}
.y98{bottom:217.816500px;}
.y144{bottom:219.013500px;}
.y173{bottom:220.296000px;}
.y6b{bottom:220.864500px;}
.y1bb{bottom:221.298000px;}
.y117{bottom:225.069000px;}
.yc{bottom:225.475500px;}
.y104{bottom:229.552500px;}
.ydf{bottom:229.786500px;}
.y36{bottom:231.867000px;}
.y19a{bottom:234.747000px;}
.y1da{bottom:236.179500px;}
.y143{bottom:236.946000px;}
.y97{bottom:238.707000px;}
.y20d{bottom:240.015000px;}
.y6a{bottom:241.756500px;}
.y1ba{bottom:242.190000px;}
.y172{bottom:245.671500px;}
.y13f{bottom:245.913000px;}
.y116{bottom:245.961000px;}
.y103{bottom:250.443000px;}
.yde{bottom:250.677000px;}
.yb{bottom:252.330000px;}
.y35{bottom:252.759000px;}
.yc3{bottom:254.494500px;}
.y142{bottom:254.878500px;}
.y1d9{bottom:255.330000px;}
.y199{bottom:255.639000px;}
.y20c{bottom:259.165500px;}
.y96{bottom:259.599000px;}
.y69{bottom:262.647000px;}
.y1b9{bottom:263.080500px;}
.y115{bottom:266.851500px;}
.ya{bottom:270.217500px;}
.y102{bottom:271.335000px;}
.ydd{bottom:271.569000px;}
.y141{bottom:272.811000px;}
.y34{bottom:273.649500px;}
.y1d8{bottom:274.482000px;}
.y198{bottom:276.531000px;}
.yc2{bottom:276.775500px;}
.y20b{bottom:278.316000px;}
.y95{bottom:280.491000px;}
.y171{bottom:281.013000px;}
.y68{bottom:283.539000px;}
.y1b8{bottom:283.972500px;}
.y114{bottom:287.743500px;}
.y9{bottom:288.105000px;}
.y140{bottom:290.743500px;}
.y101{bottom:292.227000px;}
.ydc{bottom:292.461000px;}
.y1d7{bottom:293.632500px;}
.y33{bottom:294.541500px;}
.yc0{bottom:294.708000px;}
.y197{bottom:297.421500px;}
.y20a{bottom:297.466500px;}
.y94{bottom:301.381500px;}
.y170{bottom:301.905000px;}
.y67{bottom:304.431000px;}
.y8{bottom:305.994000px;}
.y113{bottom:308.635500px;}
.y1b7{bottom:309.346500px;}
.yc1{bottom:312.640500px;}
.y1d6{bottom:312.783000px;}
.y100{bottom:313.117500px;}
.ydb{bottom:313.351500px;}
.y32{bottom:315.433500px;}
.y13e{bottom:315.879000px;}
.y209{bottom:316.617000px;}
.y196{bottom:318.313500px;}
.y93{bottom:322.273500px;}
.y16f{bottom:322.797000px;}
.y7{bottom:323.881500px;}
.y66{bottom:325.323000px;}
.y112{bottom:329.526000px;}
.y1d5{bottom:331.933500px;}
.y13c{bottom:333.811500px;}
.yff{bottom:334.009500px;}
.yda{bottom:334.243500px;}
.y208{bottom:335.767500px;}
.y31{bottom:336.324000px;}
.ybe{bottom:337.776000px;}
.y6{bottom:341.769000px;}
.y92{bottom:343.165500px;}
.y16e{bottom:343.687500px;}
.y65{bottom:346.213500px;}
.ybd{bottom:346.741500px;}
.y1b6{bottom:348.171000px;}
.y111{bottom:350.418000px;}
.y1d4{bottom:351.084000px;}
.y13d{bottom:351.745500px;}
.yfe{bottom:354.901500px;}
.y207{bottom:354.918000px;}
.yd9{bottom:355.135500px;}
.ybf{bottom:355.708500px;}
.y30{bottom:357.216000px;}
.y91{bottom:364.056000px;}
.y16d{bottom:364.579500px;}
.y5{bottom:365.635500px;}
.y64{bottom:367.105500px;}
.y1b5{bottom:369.063000px;}
.y1d3{bottom:370.234500px;}
.y110{bottom:371.310000px;}
.y206{bottom:374.070000px;}
.yfd{bottom:375.792000px;}
.yd8{bottom:376.027500px;}
.y13b{bottom:376.879500px;}
.y2f{bottom:378.108000px;}
.y195{bottom:379.030500px;}
.ybc{bottom:380.844000px;}
.y4{bottom:383.523000px;}
.y90{bottom:384.948000px;}
.y16c{bottom:385.471500px;}
.y63{bottom:387.997500px;}
.y1d2{bottom:389.385000px;}
.ybb{bottom:389.809500px;}
.y1b4{bottom:389.955000px;}
.y10f{bottom:392.200500px;}
.y205{bottom:393.220500px;}
.yfc{bottom:396.684000px;}
.yd7{bottom:396.918000px;}
.y2e{bottom:398.998500px;}
.y194{bottom:399.922500px;}
.y3{bottom:401.410500px;}
.y16b{bottom:406.363500px;}
.y1d1{bottom:408.535500px;}
.y62{bottom:408.888000px;}
.y13a{bottom:409.545000px;}
.y8f{bottom:410.323500px;}
.y1b3{bottom:410.845500px;}
.y204{bottom:412.371000px;}
.y10e{bottom:413.092500px;}
.yfb{bottom:417.576000px;}
.yd6{bottom:417.810000px;}
.y2{bottom:419.299500px;}
.y2d{bottom:419.890500px;}
.y193{bottom:420.813000px;}
.yba{bottom:423.912000px;}
.y16a{bottom:427.254000px;}
.y1d0{bottom:427.686000px;}
.y61{bottom:429.780000px;}
.y203{bottom:431.521500px;}
.y1b2{bottom:431.737500px;}
.yb8{bottom:432.877500px;}
.yfa{bottom:438.468000px;}
.yd5{bottom:438.702000px;}
.y192{bottom:441.705000px;}
.yb9{bottom:441.844500px;}
.y1{bottom:443.164500px;}
.y2c{bottom:445.266000px;}
.y10d{bottom:446.023500px;}
.y139{bottom:446.649000px;}
.y1cf{bottom:446.836500px;}
.y169{bottom:448.146000px;}
.y8e{bottom:449.146500px;}
.y60{bottom:450.672000px;}
.y1b1{bottom:452.629500px;}
.yf9{bottom:459.358500px;}
.y191{bottom:462.597000px;}
.yd4{bottom:464.076000px;}
.y1ce{bottom:465.987000px;}
.yb7{bottom:466.978500px;}
.y138{bottom:467.541000px;}
.y168{bottom:469.038000px;}
.y202{bottom:469.822500px;}
.y8d{bottom:470.038500px;}
.y10b{bottom:471.441000px;}
.y5f{bottom:471.562500px;}
.y1b0{bottom:473.520000px;}
.yf8{bottom:480.250500px;}
.y190{bottom:483.489000px;}
.y1cd{bottom:485.137500px;}
.y137{bottom:488.433000px;}
.y201{bottom:488.973000px;}
.y167{bottom:489.928500px;}
.y8c{bottom:490.930500px;}
.yb6{bottom:492.114000px;}
.y5e{bottom:492.454500px;}
.y1af{bottom:494.412000px;}
.yd3{bottom:499.419000px;}
.yf7{bottom:501.142500px;}
.y1cc{bottom:504.288000px;}
.y18f{bottom:504.379500px;}
.y200{bottom:508.123500px;}
.y136{bottom:509.325000px;}
.y166{bottom:510.820500px;}
.y8b{bottom:511.822500px;}
.y5d{bottom:513.346500px;}
.y1ae{bottom:515.304000px;}
.yd2{bottom:520.309500px;}
.yf6{bottom:522.033000px;}
.y1cb{bottom:523.438500px;}
.y2b{bottom:524.476500px;}
.y18e{bottom:525.271500px;}
.y1ff{bottom:527.274000px;}
.yb5{bottom:527.769000px;}
.y135{bottom:530.215500px;}
.y165{bottom:531.712500px;}
.y8a{bottom:532.713000px;}
.y5c{bottom:534.237000px;}
.y1ad{bottom:536.194500px;}
.yd1{bottom:541.201500px;}
.y1ca{bottom:542.589000px;}
.yf5{bottom:542.925000px;}
.y2a{bottom:545.368500px;}
.y18d{bottom:546.163500px;}
.y1fe{bottom:546.424500px;}
.y134{bottom:551.107500px;}
.y164{bottom:552.603000px;}
.y89{bottom:553.605000px;}
.y5b{bottom:555.129000px;}
.yae{bottom:555.562500px;}
.y1ac{bottom:557.086500px;}
.yb4{bottom:558.610500px;}
.yd0{bottom:559.027500px;}
.ycf{bottom:562.093500px;}
.yf4{bottom:563.817000px;}
.y1fd{bottom:565.575000px;}
.y1c9{bottom:566.223000px;}
.y18c{bottom:567.054000px;}
.y133{bottom:571.999500px;}
.y163{bottom:573.495000px;}
.y88{bottom:574.497000px;}
.y5a{bottom:576.021000px;}
.yad{bottom:576.454500px;}
.y1ab{bottom:577.978500px;}
.yce{bottom:579.919500px;}
.ycd{bottom:582.984000px;}
.y29{bottom:584.193000px;}
.y1fc{bottom:584.725500px;}
.y18b{bottom:587.946000px;}
.y132{bottom:592.890000px;}
.y162{bottom:594.387000px;}
.y87{bottom:595.387500px;}
.y59{bottom:596.913000px;}
.yac{bottom:597.345000px;}
.yf3{bottom:598.234500px;}
.y1aa{bottom:598.870500px;}
.y1fb{bottom:603.876000px;}
.y1c8{bottom:605.047500px;}
.y28{bottom:605.085000px;}
.y18a{bottom:608.838000px;}
.y86{bottom:616.279500px;}
.y58{bottom:617.803500px;}
.yab{bottom:618.237000px;}
.y131{bottom:618.265500px;}
.y161{bottom:619.761000px;}
.ycc{bottom:621.286500px;}
.y1fa{bottom:623.026500px;}
.y27{bottom:625.975500px;}
.y189{bottom:629.728500px;}
.y1c7{bottom:633.513000px;}
.y85{bottom:637.171500px;}
.y57{bottom:638.695500px;}
.yaa{bottom:639.129000px;}
.y1a9{bottom:640.653000px;}
.y1f9{bottom:642.177000px;}
.y26{bottom:646.867500px;}
.y188{bottom:650.620500px;}
.y160{bottom:655.104000px;}
.y130{bottom:657.090000px;}
.y84{bottom:658.062000px;}
.y56{bottom:659.587500px;}
.ya9{bottom:660.019500px;}
.y1f8{bottom:661.327500px;}
.y1a8{bottom:661.545000px;}
.y1c6{bottom:661.977000px;}
.y25{bottom:667.759500px;}
.y187{bottom:671.512500px;}
.y15f{bottom:675.996000px;}
.ycb{bottom:677.413500px;}
.y12f{bottom:677.980500px;}
.y83{bottom:678.954000px;}
.y55{bottom:680.478000px;}
.ya8{bottom:680.911500px;}
.y1a7{bottom:682.435500px;}
.y24{bottom:688.650000px;}
.y1c5{bottom:690.442500px;}
.y186{bottom:692.403000px;}
.y12e{bottom:695.808000px;}
.y15e{bottom:696.886500px;}
.y12d{bottom:698.872500px;}
.y1f7{bottom:699.628500px;}
.y82{bottom:699.846000px;}
.y54{bottom:701.370000px;}
.ya7{bottom:701.803500px;}
.y1a6{bottom:703.327500px;}
.y23{bottom:709.542000px;}
.y185{bottom:713.295000px;}
.y15d{bottom:717.778500px;}
.y1f6{bottom:718.779000px;}
.y1c4{bottom:718.908000px;}
.y12c{bottom:719.764500px;}
.y81{bottom:720.736500px;}
.y53{bottom:722.262000px;}
.ya6{bottom:722.694000px;}
.y1a5{bottom:724.219500px;}
.y22{bottom:730.434000px;}
.y184{bottom:734.187000px;}
.y1f5{bottom:737.929500px;}
.y15c{bottom:738.670500px;}
.y12b{bottom:740.655000px;}
.y80{bottom:741.628500px;}
.y52{bottom:743.152500px;}
.ya5{bottom:743.586000px;}
.y1a4{bottom:745.110000px;}
.y1c3{bottom:747.373500px;}
.y21{bottom:751.324500px;}
.y183{bottom:755.077500px;}
.y1f4{bottom:757.081500px;}
.y12a{bottom:759.306000px;}
.y15b{bottom:759.561000px;}
.y129{bottom:761.547000px;}
.y7f{bottom:762.520500px;}
.y51{bottom:764.044500px;}
.ya4{bottom:764.478000px;}
.y1a3{bottom:766.002000px;}
.y1c2{bottom:766.872000px;}
.y20{bottom:772.216500px;}
.y182{bottom:775.969500px;}
.y1f3{bottom:776.232000px;}
.y15a{bottom:780.453000px;}
.y128{bottom:782.439000px;}
.y7e{bottom:783.411000px;}
.y50{bottom:784.936500px;}
.ya3{bottom:785.368500px;}
.y1a2{bottom:786.894000px;}
.y1f{bottom:793.108500px;}
.y1f2{bottom:795.382500px;}
.y181{bottom:796.861500px;}
.y159{bottom:801.345000px;}
.y127{bottom:803.329500px;}
.y7d{bottom:804.303000px;}
.y4f{bottom:805.827000px;}
.ya2{bottom:806.260500px;}
.yf2{bottom:807.784500px;}
.y1e{bottom:814.000500px;}
.y1f1{bottom:814.533000px;}
.y180{bottom:817.753500px;}
.y158{bottom:822.235500px;}
.y126{bottom:824.221500px;}
.y7c{bottom:825.195000px;}
.y4e{bottom:826.719000px;}
.ya1{bottom:827.152500px;}
.yf1{bottom:828.676500px;}
.y1f0{bottom:833.683500px;}
.y1d{bottom:834.891000px;}
.y17f{bottom:838.644000px;}
.y157{bottom:843.127500px;}
.y125{bottom:844.044000px;}
.y7b{bottom:846.087000px;}
.y124{bottom:847.108500px;}
.y4d{bottom:847.611000px;}
.ya0{bottom:848.044500px;}
.yf0{bottom:849.568500px;}
.y1ef{bottom:852.834000px;}
.y1c{bottom:855.783000px;}
.y17e{bottom:859.536000px;}
.y156{bottom:864.019500px;}
.y7a{bottom:866.977500px;}
.y4c{bottom:868.503000px;}
.y9f{bottom:868.935000px;}
.yef{bottom:870.460500px;}
.y1ee{bottom:871.984500px;}
.y1b{bottom:876.675000px;}
.y17d{bottom:880.428000px;}
.y123{bottom:881.458500px;}
.y155{bottom:884.910000px;}
.y79{bottom:887.869500px;}
.y4b{bottom:889.393500px;}
.y1ed{bottom:891.135000px;}
.yee{bottom:891.351000px;}
.y9e{bottom:894.310500px;}
.y1a{bottom:897.565500px;}
.y122{bottom:897.844500px;}
.y17c{bottom:901.318500px;}
.y154{bottom:905.802000px;}
.y78{bottom:908.761500px;}
.y4a{bottom:910.285500px;}
.yed{bottom:912.243000px;}
.y1a1{bottom:916.726500px;}
.y17b{bottom:922.210500px;}
.y153{bottom:926.694000px;}
.y19{bottom:927.424500px;}
.y1ec{bottom:929.436000px;}
.y77{bottom:929.652000px;}
.y49{bottom:931.177500px;}
.yec{bottom:933.135000px;}
.y121{bottom:938.140500px;}
.y17a{bottom:943.102500px;}
.y152{bottom:947.584500px;}
.y1eb{bottom:948.586500px;}
.y76{bottom:950.544000px;}
.y48{bottom:952.068000px;}
.yeb{bottom:954.025500px;}
.y120{bottom:959.032500px;}
.y179{bottom:963.993000px;}
.y18{bottom:967.443000px;}
.y1ea{bottom:967.737000px;}
.y151{bottom:968.476500px;}
.y75{bottom:971.436000px;}
.y47{bottom:972.960000px;}
.yea{bottom:974.917500px;}
.y11f{bottom:979.924500px;}
.y216{bottom:982.158000px;}
.y17{bottom:983.583000px;}
.y1e9{bottom:986.887500px;}
.y150{bottom:989.368500px;}
.y74{bottom:992.326500px;}
.y46{bottom:993.852000px;}
.ye9{bottom:995.809500px;}
.y11e{bottom:1000.815000px;}
.y215{bottom:1001.308500px;}
.y1e8{bottom:1006.038000px;}
.y14f{bottom:1010.260500px;}
.y73{bottom:1013.218500px;}
.y45{bottom:1014.742500px;}
.ye8{bottom:1016.700000px;}
.y214{bottom:1020.459000px;}
.y11d{bottom:1021.707000px;}
.y1e7{bottom:1025.188500px;}
.y14e{bottom:1031.151000px;}
.y16{bottom:1032.600000px;}
.y72{bottom:1034.110500px;}
.y44{bottom:1035.634500px;}
.ye7{bottom:1037.592000px;}
.y11c{bottom:1042.599000px;}
.y1e6{bottom:1044.339000px;}
.y14d{bottom:1052.043000px;}
.y1c1{bottom:1055.001000px;}
.y43{bottom:1056.526500px;}
.y71{bottom:1059.484500px;}
.ye6{bottom:1062.967500px;}
.y1e5{bottom:1063.489500px;}
.y15{bottom:1071.424500px;}
.y14c{bottom:1072.935000px;}
.y42{bottom:1077.417000px;}
.y1c0{bottom:1080.376500px;}
.y11b{bottom:1080.900000px;}
.y1e4{bottom:1082.640000px;}
.y14b{bottom:1093.825500px;}
.y41{bottom:1098.309000px;}
.y1e3{bottom:1101.790500px;}
.y14{bottom:1102.761000px;}
.y14a{bottom:1114.717500px;}
.yca{bottom:1119.043500px;}
.y40{bottom:1119.201000px;}
.y1e2{bottom:1120.941000px;}
.y3f{bottom:1140.091500px;}
.y3e{bottom:1200.196500px;}
.h2{height:30.587087px;}
.h3{height:30.712615px;}
.h11{height:33.345326px;}
.h7{height:34.956859px;}
.ha{height:35.100320px;}
.h17{height:35.503200px;}
.h12{height:36.639326px;}
.hd{height:39.326630px;}
.h19{height:39.488026px;}
.h15{height:42.977977px;}
.h6{height:43.217759px;}
.h8{height:43.695964px;}
.h4{height:43.875290px;}
.h13{height:44.597206px;}
.he{height:46.714950px;}
.hc{height:48.073630px;}
.h9{height:51.861658px;}
.h16{height:52.592177px;}
.h18{height:68.775024px;}
.h5{height:77.792486px;}
.h10{height:79.557964px;}
.hf{height:79.563964px;}
.hb{height:340.234729px;}
.h14{height:447.762401px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:616.567402px;}
.w3{width:778.181110px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x31{left:57.188559px;}
.x1b{left:69.420000px;}
.x18{left:71.257500px;}
.x16{left:84.490500px;}
.x56{left:85.848000px;}
.x11{left:88.189500px;}
.x10{left:122.941500px;}
.xa{left:137.976000px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x53{left:260.554500px;}
.x4d{left:262.056000px;}
.x4{left:281.479500px;}
.x4a{left:290.868000px;}
.x3f{left:298.015500px;}
.x3b{left:303.849000px;}
.x22{left:304.917000px;}
.x3c{left:310.963500px;}
.x2d{left:312.907500px;}
.xf{left:318.372000px;}
.x23{left:320.449500px;}
.x2f{left:359.239500px;}
.x29{left:378.487500px;}
.x2a{left:399.252000px;}
.x2e{left:422.526000px;}
.x12{left:425.488500px;}
.x26{left:438.756000px;}
.x38{left:439.957500px;}
.x19{left:441.876000px;}
.x37{left:443.010000px;}
.x1c{left:446.821500px;}
.x42{left:473.742000px;}
.x1d{left:474.999000px;}
.x30{left:483.301500px;}
.x17{left:492.034500px;}
.xe{left:501.696000px;}
.x13{left:504.661500px;}
.x3d{left:510.289500px;}
.x3e{left:514.735500px;}
.x43{left:547.107000px;}
.x39{left:554.095500px;}
.x44{left:558.144000px;}
.x33{left:570.622500px;}
.x3a{left:573.280500px;}
.x45{left:578.389500px;}
.x34{left:586.249500px;}
.x40{left:604.935000px;}
.x2b{left:606.504000px;}
.xb{left:612.826031px;}
.x41{left:615.103500px;}
.x6{left:617.545500px;}
.x2c{left:626.613000px;}
.x46{left:632.389500px;}
.x7{left:638.041500px;}
.x27{left:642.391500px;}
.x8{left:655.381500px;}
.x51{left:656.716500px;}
.x54{left:657.972000px;}
.x28{left:661.180500px;}
.x50{left:663.516000px;}
.x24{left:664.768500px;}
.x14{left:667.152000px;}
.x1a{left:672.390000px;}
.x1e{left:674.863500px;}
.x9{left:675.877500px;}
.x4f{left:677.421000px;}
.x20{left:683.019000px;}
.x4e{left:687.627000px;}
.x1f{left:689.628000px;}
.x4b{left:691.534500px;}
.x15{left:696.024000px;}
.x4c{left:698.932500px;}
.x52{left:702.825000px;}
.x47{left:705.915000px;}
.x55{left:719.764500px;}
.x21{left:735.610500px;}
.x48{left:759.342000px;}
.x49{left:769.579500px;}
.x32{left:771.697165px;}
.x35{left:772.986000px;}
.x5{left:779.989500px;}
.x36{left:791.193000px;}
.x25{left:818.803500px;}
.xc{left:821.343000px;}
.xd{left:836.970000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.928000pt;}
.v2{vertical-align:31.882667pt;}
.v5{vertical-align:59.008000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls74{letter-spacing:0.000027pt;}
.ls8d{letter-spacing:0.000387pt;}
.ls34{letter-spacing:0.000518pt;}
.ls33{letter-spacing:0.000533pt;}
.ls9f{letter-spacing:0.000711pt;}
.lsa0{letter-spacing:0.000801pt;}
.ls3e{letter-spacing:0.001118pt;}
.lsa5{letter-spacing:0.001335pt;}
.ls75{letter-spacing:0.001774pt;}
.ls66{letter-spacing:0.003235pt;}
.ls9b{letter-spacing:0.004267pt;}
.ls65{letter-spacing:0.004695pt;}
.ls70{letter-spacing:0.037852pt;}
.ls24{letter-spacing:0.043185pt;}
.ls95{letter-spacing:0.094933pt;}
.ls2c{letter-spacing:0.409548pt;}
.ls72{letter-spacing:0.465788pt;}
.ls6e{letter-spacing:0.471121pt;}
.ls36{letter-spacing:0.501867pt;}
.ls39{letter-spacing:0.502400pt;}
.ls3a{letter-spacing:0.507200pt;}
.ls3c{letter-spacing:0.507733pt;}
.ls81{letter-spacing:0.596214pt;}
.ls64{letter-spacing:0.635360pt;}
.ls4a{letter-spacing:0.666682pt;}
.ls6c{letter-spacing:0.706502pt;}
.ls35{letter-spacing:0.789841pt;}
.ls45{letter-spacing:0.885852pt;}
.ls6a{letter-spacing:1.008508pt;}
.ls6b{letter-spacing:1.013333pt;}
.ls5b{letter-spacing:1.326400pt;}
.ls47{letter-spacing:1.328015pt;}
.ls6d{letter-spacing:1.328153pt;}
.ls5f{letter-spacing:1.332541pt;}
.ls44{letter-spacing:1.796214pt;}
.ls5d{letter-spacing:1.834682pt;}
.ls58{letter-spacing:1.859733pt;}
.ls7d{letter-spacing:2.057548pt;}
.ls77{letter-spacing:2.059185pt;}
.ls5c{letter-spacing:2.062881pt;}
.ls57{letter-spacing:2.164214pt;}
.ls7a{letter-spacing:2.324214pt;}
.ls7e{letter-spacing:2.496015pt;}
.ls3d{letter-spacing:2.656508pt;}
.ls32{letter-spacing:2.657067pt;}
.ls3b{letter-spacing:2.725867pt;}
.ls25{letter-spacing:3.163733pt;}
.ls2d{letter-spacing:3.445841pt;}
.ls2f{letter-spacing:3.825067pt;}
.ls46{letter-spacing:3.918881pt;}
.ls43{letter-spacing:4.107174pt;}
.ls63{letter-spacing:7.129381pt;}
.ls0{letter-spacing:7.442933pt;}
.ls56{letter-spacing:8.503452pt;}
.ls2e{letter-spacing:8.668533pt;}
.ls6f{letter-spacing:8.673867pt;}
.ls4b{letter-spacing:10.049867pt;}
.ls5e{letter-spacing:10.577867pt;}
.ls9{letter-spacing:10.626533pt;}
.ls29{letter-spacing:10.781762pt;}
.ls38{letter-spacing:10.787096pt;}
.ls59{letter-spacing:11.593548pt;}
.ls91{letter-spacing:11.685574pt;}
.lsa6{letter-spacing:11.784701pt;}
.ls9c{letter-spacing:11.794223pt;}
.ls4c{letter-spacing:11.795718pt;}
.ls96{letter-spacing:11.846584pt;}
.ls9a{letter-spacing:11.851336pt;}
.ls1c{letter-spacing:11.901986pt;}
.ls98{letter-spacing:11.906133pt;}
.ls92{letter-spacing:11.954133pt;}
.ls93{letter-spacing:11.959467pt;}
.ls99{letter-spacing:11.983158pt;}
.ls94{letter-spacing:11.985779pt;}
.ls9d{letter-spacing:12.015319pt;}
.lsa1{letter-spacing:12.020582pt;}
.lsa4{letter-spacing:12.047475pt;}
.ls97{letter-spacing:12.082663pt;}
.lsa3{letter-spacing:12.142560pt;}
.lsa8{letter-spacing:12.188871pt;}
.ls1f{letter-spacing:12.273923pt;}
.ls1d{letter-spacing:12.380191pt;}
.ls1e{letter-spacing:12.433325pt;}
.ls69{letter-spacing:12.744429pt;}
.ls5a{letter-spacing:12.803096pt;}
.ls16{letter-spacing:12.911530pt;}
.ls67{letter-spacing:13.006056pt;}
.lsf{letter-spacing:13.017797pt;}
.ls1b{letter-spacing:13.070931pt;}
.ls10{letter-spacing:13.124065pt;}
.ls20{letter-spacing:13.177199pt;}
.ls7f{letter-spacing:13.186001pt;}
.ls15{letter-spacing:13.230333pt;}
.ls40{letter-spacing:13.257922pt;}
.ls6{letter-spacing:13.283467pt;}
.ls17{letter-spacing:13.336601pt;}
.ls62{letter-spacing:13.370723pt;}
.ls14{letter-spacing:13.389734pt;}
.ls73{letter-spacing:13.390075pt;}
.ls13{letter-spacing:13.442868pt;}
.lse{letter-spacing:13.496002pt;}
.ls21{letter-spacing:13.974207pt;}
.ls4e{letter-spacing:14.027341pt;}
.ls2b{letter-spacing:14.133609pt;}
.ls9e{letter-spacing:14.151990pt;}
.lsa2{letter-spacing:14.353652pt;}
.ls85{letter-spacing:14.399278pt;}
.ls53{letter-spacing:14.437841pt;}
.ls28{letter-spacing:14.443174pt;}
.ls22{letter-spacing:14.452412pt;}
.ls4f{letter-spacing:14.505546pt;}
.ls8e{letter-spacing:14.558679pt;}
.ls37{letter-spacing:14.561118pt;}
.ls87{letter-spacing:14.611813pt;}
.ls86{letter-spacing:14.664947pt;}
.ls8f{letter-spacing:14.718081pt;}
.lsa7{letter-spacing:14.828800pt;}
.ls27{letter-spacing:15.208429pt;}
.ls52{letter-spacing:15.213762pt;}
.ls42{letter-spacing:15.224429pt;}
.ls8a{letter-spacing:15.249420pt;}
.ls49{letter-spacing:15.299096pt;}
.ls8c{letter-spacing:15.302554pt;}
.ls18{letter-spacing:15.408821pt;}
.ls51{letter-spacing:15.555969pt;}
.ls1a{letter-spacing:15.621357pt;}
.lsb{letter-spacing:15.674491pt;}
.ls61{letter-spacing:15.676564pt;}
.lsd{letter-spacing:15.727625pt;}
.ls82{letter-spacing:15.833892pt;}
.ls3f{letter-spacing:16.046428pt;}
.ls76{letter-spacing:16.094685pt;}
.ls50{letter-spacing:16.136362pt;}
.ls89{letter-spacing:16.152695pt;}
.ls4d{letter-spacing:16.312097pt;}
.ls8b{letter-spacing:16.418365pt;}
.ls90{letter-spacing:16.471499pt;}
.ls19{letter-spacing:16.630900pt;}
.ls2{letter-spacing:16.790302pt;}
.ls4{letter-spacing:16.843436pt;}
.ls7{letter-spacing:16.949703pt;}
.ls5{letter-spacing:17.002837pt;}
.lsc{letter-spacing:17.055971pt;}
.ls80{letter-spacing:17.229762pt;}
.ls11{letter-spacing:17.321641pt;}
.ls26{letter-spacing:17.680518pt;}
.ls31{letter-spacing:18.171782pt;}
.ls88{letter-spacing:18.224916pt;}
.ls54{letter-spacing:18.582400pt;}
.ls3{letter-spacing:18.703121pt;}
.ls68{letter-spacing:18.869841pt;}
.ls41{letter-spacing:18.875174pt;}
.ls48{letter-spacing:18.955174pt;}
.ls8{letter-spacing:18.968790pt;}
.ls7b{letter-spacing:19.365841pt;}
.ls83{letter-spacing:19.393861pt;}
.ls12{letter-spacing:19.446995pt;}
.ls23{letter-spacing:19.906296pt;}
.ls30{letter-spacing:20.722208pt;}
.ls79{letter-spacing:22.136429pt;}
.ls84{letter-spacing:22.635027pt;}
.ls55{letter-spacing:22.968429pt;}
.ls7c{letter-spacing:23.464429pt;}
.ls78{letter-spacing:24.390400pt;}
.ls1{letter-spacing:25.292137pt;}
.ls71{letter-spacing:621.057788pt;}
.ls60{letter-spacing:631.854881pt;}
.ls2a{letter-spacing:843.078400pt;}
.ws19{word-spacing:-13.283467pt;}
.wsb1{word-spacing:-11.955200pt;}
.ws25{word-spacing:-10.626800pt;}
.ws73{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws43{word-spacing:-3.134898pt;}
.ws64{word-spacing:-2.231622pt;}
.ws3e{word-spacing:-2.178489pt;}
.ws20{word-spacing:-2.125355pt;}
.ws74{word-spacing:-1.965953pt;}
.ws97{word-spacing:-1.912819pt;}
.wsa7{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws87{word-spacing:-1.806551pt;}
.wsba{word-spacing:-1.769370pt;}
.ws8d{word-spacing:-1.658815pt;}
.ws8e{word-spacing:-1.647150pt;}
.ws4a{word-spacing:-1.594016pt;}
.ws78{word-spacing:-1.540882pt;}
.ws77{word-spacing:-1.487748pt;}
.ws50{word-spacing:-1.381481pt;}
.ws60{word-spacing:-1.275213pt;}
.ws89{word-spacing:-1.222079pt;}
.ws5a{word-spacing:-1.168945pt;}
.ws86{word-spacing:-1.115811pt;}
.ws44{word-spacing:-1.062677pt;}
.ws59{word-spacing:-1.009543pt;}
.ws6a{word-spacing:-0.956410pt;}
.ws17{word-spacing:-0.903276pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws42{word-spacing:-0.797008pt;}
.ws31{word-spacing:-0.743874pt;}
.wsab{word-spacing:-0.637606pt;}
.wsa8{word-spacing:-0.584473pt;}
.ws47{word-spacing:-0.478205pt;}
.ws1b{word-spacing:-0.425071pt;}
.ws52{word-spacing:-0.371937pt;}
.ws4b{word-spacing:-0.318803pt;}
.wsb0{word-spacing:-0.286925pt;}
.ws3b{word-spacing:-0.265669pt;}
.wsc2{word-spacing:-0.239104pt;}
.ws32{word-spacing:-0.212535pt;}
.ws72{word-spacing:-0.193344pt;}
.wsbc{word-spacing:-0.191283pt;}
.ws14{word-spacing:-0.159402pt;}
.wsb9{word-spacing:-0.143462pt;}
.ws7{word-spacing:-0.106268pt;}
.wsb8{word-spacing:-0.095642pt;}
.ws75{word-spacing:-0.055366pt;}
.ws23{word-spacing:-0.053134pt;}
.wsb4{word-spacing:-0.047821pt;}
.ws24{word-spacing:-0.000398pt;}
.ws5{word-spacing:0.000000pt;}
.ws92{word-spacing:0.003292pt;}
.wsb5{word-spacing:0.047821pt;}
.ws11{word-spacing:0.053134pt;}
.wsb6{word-spacing:0.095642pt;}
.ws26{word-spacing:0.106268pt;}
.wsb7{word-spacing:0.143462pt;}
.wsa{word-spacing:0.159402pt;}
.ws6d{word-spacing:0.162775pt;}
.wsb2{word-spacing:0.191283pt;}
.ws9{word-spacing:0.212535pt;}
.wsbf{word-spacing:0.239104pt;}
.ws38{word-spacing:0.265669pt;}
.ws2b{word-spacing:0.318803pt;}
.ws1{word-spacing:0.371148pt;}
.ws2{word-spacing:0.371730pt;}
.ws6b{word-spacing:0.371937pt;}
.ws4{word-spacing:0.375335pt;}
.ws45{word-spacing:0.425071pt;}
.ws95{word-spacing:0.478205pt;}
.wsc9{word-spacing:0.478208pt;}
.ws39{word-spacing:0.531339pt;}
.wsa4{word-spacing:0.584473pt;}
.ws84{word-spacing:0.637606pt;}
.ws5e{word-spacing:0.690740pt;}
.wsa5{word-spacing:0.743874pt;}
.ws6c{word-spacing:0.797008pt;}
.ws69{word-spacing:0.850142pt;}
.wsc8{word-spacing:0.860774pt;}
.ws33{word-spacing:0.903276pt;}
.wsc3{word-spacing:0.908595pt;}
.ws29{word-spacing:0.956410pt;}
.ws63{word-spacing:1.009543pt;}
.ws61{word-spacing:1.062677pt;}
.ws9b{word-spacing:1.115811pt;}
.ws34{word-spacing:1.168945pt;}
.ws2c{word-spacing:1.222079pt;}
.ws40{word-spacing:1.275213pt;}
.wsa2{word-spacing:1.328347pt;}
.ws4d{word-spacing:1.381481pt;}
.ws2a{word-spacing:1.434614pt;}
.ws7b{word-spacing:1.487748pt;}
.ws48{word-spacing:1.540882pt;}
.wsa3{word-spacing:1.594016pt;}
.ws1c{word-spacing:1.647150pt;}
.ws27{word-spacing:1.700284pt;}
.wsbd{word-spacing:1.721549pt;}
.wsb{word-spacing:1.753418pt;}
.ws1f{word-spacing:1.806551pt;}
.ws80{word-spacing:1.859685pt;}
.wsc4{word-spacing:1.865011pt;}
.ws3d{word-spacing:1.912819pt;}
.ws62{word-spacing:1.965953pt;}
.ws46{word-spacing:2.019087pt;}
.ws53{word-spacing:2.125355pt;}
.wsbe{word-spacing:2.199757pt;}
.ws9c{word-spacing:2.231622pt;}
.ws8a{word-spacing:2.290645pt;}
.ws56{word-spacing:2.337890pt;}
.ws30{word-spacing:2.391024pt;}
.wsc0{word-spacing:2.391040pt;}
.ws2d{word-spacing:2.444158pt;}
.ws5d{word-spacing:2.497292pt;}
.ws41{word-spacing:2.550426pt;}
.ws6{word-spacing:2.550432pt;}
.ws36{word-spacing:2.603559pt;}
.ws8f{word-spacing:2.605329pt;}
.ws58{word-spacing:2.709827pt;}
.wsb3{word-spacing:2.725786pt;}
.wsc{word-spacing:2.762961pt;}
.ws91{word-spacing:2.816095pt;}
.wsc6{word-spacing:2.863590pt;}
.wsaf{word-spacing:2.866509pt;}
.ws90{word-spacing:2.869229pt;}
.wsbb{word-spacing:2.869248pt;}
.wsca{word-spacing:2.870067pt;}
.ws12{word-spacing:2.922363pt;}
.ws57{word-spacing:2.975497pt;}
.ws79{word-spacing:3.028630pt;}
.ws13{word-spacing:3.035000pt;}
.ws7a{word-spacing:3.081764pt;}
.wscc{word-spacing:3.108352pt;}
.ws7f{word-spacing:3.134898pt;}
.wsc1{word-spacing:3.156173pt;}
.wsad{word-spacing:3.188032pt;}
.ws4c{word-spacing:3.241166pt;}
.wsaa{word-spacing:3.294300pt;}
.ws82{word-spacing:3.347434pt;}
.ws3f{word-spacing:3.400567pt;}
.ws88{word-spacing:3.453701pt;}
.ws18{word-spacing:3.559969pt;}
.wsc7{word-spacing:3.586560pt;}
.ws35{word-spacing:3.613103pt;}
.wscb{word-spacing:3.634381pt;}
.ws16{word-spacing:3.666237pt;}
.ws1d{word-spacing:3.719371pt;}
.ws7c{word-spacing:3.772505pt;}
.ws10{word-spacing:3.825638pt;}
.ws15{word-spacing:3.825664pt;}
.ws4e{word-spacing:3.931906pt;}
.ws54{word-spacing:3.985040pt;}
.ws3c{word-spacing:4.038174pt;}
.ws3a{word-spacing:4.091308pt;}
.ws85{word-spacing:4.144442pt;}
.ws2e{word-spacing:4.303843pt;}
.ws8c{word-spacing:4.341901pt;}
.ws8b{word-spacing:4.346669pt;}
.ws5b{word-spacing:4.356977pt;}
.ws21{word-spacing:4.463245pt;}
.ws6f{word-spacing:4.465993pt;}
.ws1a{word-spacing:4.516379pt;}
.ws93{word-spacing:4.569513pt;}
.ws9f{word-spacing:4.622646pt;}
.ws5f{word-spacing:4.728914pt;}
.ws1e{word-spacing:4.782048pt;}
.ws7e{word-spacing:4.835182pt;}
.wse{word-spacing:4.888316pt;}
.wsa6{word-spacing:4.941450pt;}
.ws8{word-spacing:4.994583pt;}
.ws28{word-spacing:5.047717pt;}
.wsa9{word-spacing:5.100851pt;}
.ws9a{word-spacing:5.207119pt;}
.ws94{word-spacing:5.260253pt;}
.wsc5{word-spacing:5.308109pt;}
.ws81{word-spacing:5.366521pt;}
.ws71{word-spacing:5.484816pt;}
.wsd{word-spacing:5.525922pt;}
.ws66{word-spacing:5.579056pt;}
.ws9d{word-spacing:5.632190pt;}
.wsa0{word-spacing:5.738458pt;}
.ws4f{word-spacing:5.791591pt;}
.ws76{word-spacing:5.844725pt;}
.ws6e{word-spacing:5.845139pt;}
.wsae{word-spacing:5.929779pt;}
.ws49{word-spacing:5.950993pt;}
.ws99{word-spacing:6.004127pt;}
.ws51{word-spacing:6.057261pt;}
.ws98{word-spacing:6.110395pt;}
.ws83{word-spacing:6.269796pt;}
.ws55{word-spacing:6.322930pt;}
.wsa1{word-spacing:6.535466pt;}
.ws9e{word-spacing:6.588599pt;}
.ws22{word-spacing:6.641733pt;}
.ws5c{word-spacing:6.907403pt;}
.wsf{word-spacing:6.960537pt;}
.wsac{word-spacing:7.013670pt;}
.ws96{word-spacing:7.119938pt;}
.ws37{word-spacing:7.332474pt;}
.ws65{word-spacing:7.385607pt;}
.ws7d{word-spacing:14.930617pt;}
.ws68{word-spacing:202.280630pt;}
.ws70{word-spacing:609.198227pt;}
.ws67{word-spacing:897.271606pt;}
._1a{margin-left:-20.669074pt;}
._36{margin-left:-17.993390pt;}
._34{margin-left:-6.854269pt;}
._f{margin-left:-5.844725pt;}
._4{margin-left:-4.888316pt;}
._3{margin-left:-3.910662pt;}
._14{margin-left:-2.922363pt;}
._1{margin-left:-1.338970pt;}
._2b{width:1.173126pt;}
._2c{width:2.069063pt;}
._19{width:2.975497pt;}
._1c{width:4.261332pt;}
._0{width:9.670336pt;}
._15{width:11.434404pt;}
._13{width:12.337680pt;}
._1b{width:14.048587pt;}
._2a{width:14.983750pt;}
._c{width:15.897649pt;}
._7{width:17.172862pt;}
._d{width:18.161162pt;}
._e{width:19.138815pt;}
._8{width:20.201492pt;}
._18{width:21.242924pt;}
._6{width:22.209956pt;}
._b{width:23.803972pt;}
._2d{width:25.291721pt;}
._a{width:26.736958pt;}
._10{width:28.437242pt;}
._1e{width:30.615730pt;}
._5{width:32.103478pt;}
._9{width:33.006754pt;}
._16{width:33.910030pt;}
._17{width:35.419045pt;}
._35{width:36.768636pt;}
._1d{width:37.671911pt;}
._1f{width:39.435952pt;}
._2{width:48.380518pt;}
._33{width:84.068400pt;}
._32{width:100.752434pt;}
._26{width:155.583107pt;}
._29{width:171.622389pt;}
._28{width:178.157855pt;}
._25{width:225.234461pt;}
._24{width:230.600981pt;}
._23{width:238.358526pt;}
._27{width:325.657701pt;}
._31{width:344.573125pt;}
._20{width:360.300750pt;}
._30{width:394.465826pt;}
._21{width:465.187003pt;}
._2f{width:496.270315pt;}
._22{width:676.340989pt;}
._11{width:1515.021333pt;}
._2e{width:2222.978667pt;}
._12{width:2244.232000pt;}
.fs0{font-size:37.193600pt;}
.fs7{font-size:40.381867pt;}
.fsb{font-size:42.077867pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs9{font-size:52.333792pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs5{font-size:58.538710pt;}
.fs4{font-size:63.761067pt;}
.fsa{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:2.634003pt;}
.y10c{bottom:7.470483pt;}
.y3d{bottom:40.818667pt;}
.y10a{bottom:88.640000pt;}
.y13{bottom:89.120000pt;}
.y1e1{bottom:90.778667pt;}
.ye5{bottom:92.833333pt;}
.y213{bottom:94.188000pt;}
.y3c{bottom:94.682667pt;}
.y1a0{bottom:97.242667pt;}
.yb3{bottom:98.517333pt;}
.yc9{bottom:98.626667pt;}
.y9d{bottom:100.762667pt;}
.y178{bottom:102.968000pt;}
.y70{bottom:103.473333pt;}
.y12{bottom:105.020000pt;}
.y109{bottom:107.209333pt;}
.y149{bottom:107.366667pt;}
.y1e0{bottom:107.801333pt;}
.y212{bottom:111.210667pt;}
.ye4{bottom:111.402667pt;}
.y3b{bottom:113.252000pt;}
.y19f{bottom:115.813333pt;}
.yb2{bottom:117.088000pt;}
.yc8{bottom:117.197333pt;}
.y9c{bottom:119.333333pt;}
.y11{bottom:120.920000pt;}
.y177{bottom:121.538667pt;}
.y6f{bottom:122.042667pt;}
.y1bf{bottom:122.428000pt;}
.y148{bottom:124.516000pt;}
.y1df{bottom:124.824000pt;}
.y108{bottom:125.780000pt;}
.y211{bottom:128.233333pt;}
.ye3{bottom:129.973333pt;}
.y3a{bottom:131.822667pt;}
.y19e{bottom:134.382667pt;}
.yc7{bottom:135.768000pt;}
.y10{bottom:136.820000pt;}
.y9b{bottom:137.904000pt;}
.y176{bottom:140.108000pt;}
.y146{bottom:140.456000pt;}
.y6e{bottom:140.613333pt;}
.y1be{bottom:140.998667pt;}
.y1de{bottom:141.846667pt;}
.y11a{bottom:144.350667pt;}
.y210{bottom:145.256000pt;}
.y107{bottom:148.336000pt;}
.ye2{bottom:148.544000pt;}
.yb1{bottom:148.757333pt;}
.y39{bottom:150.393333pt;}
.yf{bottom:152.721333pt;}
.y19d{bottom:152.953333pt;}
.yc6{bottom:154.337333pt;}
.y147{bottom:156.396000pt;}
.y9a{bottom:156.473333pt;}
.y175{bottom:158.678667pt;}
.y1dd{bottom:158.869333pt;}
.y6d{bottom:159.184000pt;}
.y1bd{bottom:159.568000pt;}
.y20f{bottom:162.278667pt;}
.y119{bottom:162.920000pt;}
.y106{bottom:166.905333pt;}
.ye1{bottom:167.113333pt;}
.ye{bottom:168.621333pt;}
.y38{bottom:168.962667pt;}
.yaf{bottom:171.350813pt;}
.y19c{bottom:171.524000pt;}
.yc5{bottom:172.908000pt;}
.y99{bottom:175.044000pt;}
.y1dc{bottom:175.892000pt;}
.y174{bottom:177.249333pt;}
.y6c{bottom:177.753333pt;}
.y1bc{bottom:178.138667pt;}
.y145{bottom:178.738667pt;}
.y20e{bottom:179.301333pt;}
.y118{bottom:181.490667pt;}
.yd{bottom:184.521333pt;}
.y105{bottom:185.476000pt;}
.ye0{bottom:185.684000pt;}
.y37{bottom:187.533333pt;}
.y19b{bottom:190.094667pt;}
.yc4{bottom:191.478667pt;}
.y1db{bottom:192.914667pt;}
.y98{bottom:193.614667pt;}
.y144{bottom:194.678667pt;}
.y173{bottom:195.818667pt;}
.y6b{bottom:196.324000pt;}
.y1bb{bottom:196.709333pt;}
.y117{bottom:200.061333pt;}
.yc{bottom:200.422667pt;}
.y104{bottom:204.046667pt;}
.ydf{bottom:204.254667pt;}
.y36{bottom:206.104000pt;}
.y19a{bottom:208.664000pt;}
.y1da{bottom:209.937333pt;}
.y143{bottom:210.618667pt;}
.y97{bottom:212.184000pt;}
.y20d{bottom:213.346667pt;}
.y6a{bottom:214.894667pt;}
.y1ba{bottom:215.280000pt;}
.y172{bottom:218.374667pt;}
.y13f{bottom:218.589333pt;}
.y116{bottom:218.632000pt;}
.y103{bottom:222.616000pt;}
.yde{bottom:222.824000pt;}
.yb{bottom:224.293333pt;}
.y35{bottom:224.674667pt;}
.yc3{bottom:226.217333pt;}
.y142{bottom:226.558667pt;}
.y1d9{bottom:226.960000pt;}
.y199{bottom:227.234667pt;}
.y20c{bottom:230.369333pt;}
.y96{bottom:230.754667pt;}
.y69{bottom:233.464000pt;}
.y1b9{bottom:233.849333pt;}
.y115{bottom:237.201333pt;}
.ya{bottom:240.193333pt;}
.y102{bottom:241.186667pt;}
.ydd{bottom:241.394667pt;}
.y141{bottom:242.498667pt;}
.y34{bottom:243.244000pt;}
.y1d8{bottom:243.984000pt;}
.y198{bottom:245.805333pt;}
.yc2{bottom:246.022667pt;}
.y20b{bottom:247.392000pt;}
.y95{bottom:249.325333pt;}
.y171{bottom:249.789333pt;}
.y68{bottom:252.034667pt;}
.y1b8{bottom:252.420000pt;}
.y114{bottom:255.772000pt;}
.y9{bottom:256.093333pt;}
.y140{bottom:258.438667pt;}
.y101{bottom:259.757333pt;}
.ydc{bottom:259.965333pt;}
.y1d7{bottom:261.006667pt;}
.y33{bottom:261.814667pt;}
.yc0{bottom:261.962667pt;}
.y197{bottom:264.374667pt;}
.y20a{bottom:264.414667pt;}
.y94{bottom:267.894667pt;}
.y170{bottom:268.360000pt;}
.y67{bottom:270.605333pt;}
.y8{bottom:271.994667pt;}
.y113{bottom:274.342667pt;}
.y1b7{bottom:274.974667pt;}
.yc1{bottom:277.902667pt;}
.y1d6{bottom:278.029333pt;}
.y100{bottom:278.326667pt;}
.ydb{bottom:278.534667pt;}
.y32{bottom:280.385333pt;}
.y13e{bottom:280.781333pt;}
.y209{bottom:281.437333pt;}
.y196{bottom:282.945333pt;}
.y93{bottom:286.465333pt;}
.y16f{bottom:286.930667pt;}
.y7{bottom:287.894667pt;}
.y66{bottom:289.176000pt;}
.y112{bottom:292.912000pt;}
.y1d5{bottom:295.052000pt;}
.y13c{bottom:296.721333pt;}
.yff{bottom:296.897333pt;}
.yda{bottom:297.105333pt;}
.y208{bottom:298.460000pt;}
.y31{bottom:298.954667pt;}
.ybe{bottom:300.245333pt;}
.y6{bottom:303.794667pt;}
.y92{bottom:305.036000pt;}
.y16e{bottom:305.500000pt;}
.y65{bottom:307.745333pt;}
.ybd{bottom:308.214667pt;}
.y1b6{bottom:309.485333pt;}
.y111{bottom:311.482667pt;}
.y1d4{bottom:312.074667pt;}
.y13d{bottom:312.662667pt;}
.yfe{bottom:315.468000pt;}
.y207{bottom:315.482667pt;}
.yd9{bottom:315.676000pt;}
.ybf{bottom:316.185333pt;}
.y30{bottom:317.525333pt;}
.y91{bottom:323.605333pt;}
.y16d{bottom:324.070667pt;}
.y5{bottom:325.009333pt;}
.y64{bottom:326.316000pt;}
.y1b5{bottom:328.056000pt;}
.y1d3{bottom:329.097333pt;}
.y110{bottom:330.053333pt;}
.y206{bottom:332.506667pt;}
.yfd{bottom:334.037333pt;}
.yd8{bottom:334.246667pt;}
.y13b{bottom:335.004000pt;}
.y2f{bottom:336.096000pt;}
.y195{bottom:336.916000pt;}
.ybc{bottom:338.528000pt;}
.y4{bottom:340.909333pt;}
.y90{bottom:342.176000pt;}
.y16c{bottom:342.641333pt;}
.y63{bottom:344.886667pt;}
.y1d2{bottom:346.120000pt;}
.ybb{bottom:346.497333pt;}
.y1b4{bottom:346.626667pt;}
.y10f{bottom:348.622667pt;}
.y205{bottom:349.529333pt;}
.yfc{bottom:352.608000pt;}
.yd7{bottom:352.816000pt;}
.y2e{bottom:354.665333pt;}
.y194{bottom:355.486667pt;}
.y3{bottom:356.809333pt;}
.y16b{bottom:361.212000pt;}
.y1d1{bottom:363.142667pt;}
.y62{bottom:363.456000pt;}
.y13a{bottom:364.040000pt;}
.y8f{bottom:364.732000pt;}
.y1b3{bottom:365.196000pt;}
.y204{bottom:366.552000pt;}
.y10e{bottom:367.193333pt;}
.yfb{bottom:371.178667pt;}
.yd6{bottom:371.386667pt;}
.y2{bottom:372.710667pt;}
.y2d{bottom:373.236000pt;}
.y193{bottom:374.056000pt;}
.yba{bottom:376.810667pt;}
.y16a{bottom:379.781333pt;}
.y1d0{bottom:380.165333pt;}
.y61{bottom:382.026667pt;}
.y203{bottom:383.574667pt;}
.y1b2{bottom:383.766667pt;}
.yb8{bottom:384.780000pt;}
.yfa{bottom:389.749333pt;}
.yd5{bottom:389.957333pt;}
.y192{bottom:392.626667pt;}
.yb9{bottom:392.750667pt;}
.y1{bottom:393.924000pt;}
.y2c{bottom:395.792000pt;}
.y10d{bottom:396.465333pt;}
.y139{bottom:397.021333pt;}
.y1cf{bottom:397.188000pt;}
.y169{bottom:398.352000pt;}
.y8e{bottom:399.241333pt;}
.y60{bottom:400.597333pt;}
.y1b1{bottom:402.337333pt;}
.yf9{bottom:408.318667pt;}
.y191{bottom:411.197333pt;}
.yd4{bottom:412.512000pt;}
.y1ce{bottom:414.210667pt;}
.yb7{bottom:415.092000pt;}
.y138{bottom:415.592000pt;}
.y168{bottom:416.922667pt;}
.y202{bottom:417.620000pt;}
.y8d{bottom:417.812000pt;}
.y10b{bottom:419.058667pt;}
.y5f{bottom:419.166667pt;}
.y1b0{bottom:420.906667pt;}
.yf8{bottom:426.889333pt;}
.y190{bottom:429.768000pt;}
.y1cd{bottom:431.233333pt;}
.y137{bottom:434.162667pt;}
.y201{bottom:434.642667pt;}
.y167{bottom:435.492000pt;}
.y8c{bottom:436.382667pt;}
.yb6{bottom:437.434667pt;}
.y5e{bottom:437.737333pt;}
.y1af{bottom:439.477333pt;}
.yd3{bottom:443.928000pt;}
.yf7{bottom:445.460000pt;}
.y1cc{bottom:448.256000pt;}
.y18f{bottom:448.337333pt;}
.y200{bottom:451.665333pt;}
.y136{bottom:452.733333pt;}
.y166{bottom:454.062667pt;}
.y8b{bottom:454.953333pt;}
.y5d{bottom:456.308000pt;}
.y1ae{bottom:458.048000pt;}
.yd2{bottom:462.497333pt;}
.yf6{bottom:464.029333pt;}
.y1cb{bottom:465.278667pt;}
.y2b{bottom:466.201333pt;}
.y18e{bottom:466.908000pt;}
.y1ff{bottom:468.688000pt;}
.yb5{bottom:469.128000pt;}
.y135{bottom:471.302667pt;}
.y165{bottom:472.633333pt;}
.y8a{bottom:473.522667pt;}
.y5c{bottom:474.877333pt;}
.y1ad{bottom:476.617333pt;}
.yd1{bottom:481.068000pt;}
.y1ca{bottom:482.301333pt;}
.yf5{bottom:482.600000pt;}
.y2a{bottom:484.772000pt;}
.y18d{bottom:485.478667pt;}
.y1fe{bottom:485.710667pt;}
.y134{bottom:489.873333pt;}
.y164{bottom:491.202667pt;}
.y89{bottom:492.093333pt;}
.y5b{bottom:493.448000pt;}
.yae{bottom:493.833333pt;}
.y1ac{bottom:495.188000pt;}
.yb4{bottom:496.542667pt;}
.yd0{bottom:496.913333pt;}
.ycf{bottom:499.638667pt;}
.yf4{bottom:501.170667pt;}
.y1fd{bottom:502.733333pt;}
.y1c9{bottom:503.309333pt;}
.y18c{bottom:504.048000pt;}
.y133{bottom:508.444000pt;}
.y163{bottom:509.773333pt;}
.y88{bottom:510.664000pt;}
.y5a{bottom:512.018667pt;}
.yad{bottom:512.404000pt;}
.y1ab{bottom:513.758667pt;}
.yce{bottom:515.484000pt;}
.ycd{bottom:518.208000pt;}
.y29{bottom:519.282667pt;}
.y1fc{bottom:519.756000pt;}
.y18b{bottom:522.618667pt;}
.y132{bottom:527.013333pt;}
.y162{bottom:528.344000pt;}
.y87{bottom:529.233333pt;}
.y59{bottom:530.589333pt;}
.yac{bottom:530.973333pt;}
.yf3{bottom:531.764000pt;}
.y1aa{bottom:532.329333pt;}
.y1fb{bottom:536.778667pt;}
.y1c8{bottom:537.820000pt;}
.y28{bottom:537.853333pt;}
.y18a{bottom:541.189333pt;}
.y86{bottom:547.804000pt;}
.y58{bottom:549.158667pt;}
.yab{bottom:549.544000pt;}
.y131{bottom:549.569333pt;}
.y161{bottom:550.898667pt;}
.ycc{bottom:552.254667pt;}
.y1fa{bottom:553.801333pt;}
.y27{bottom:556.422667pt;}
.y189{bottom:559.758667pt;}
.y1c7{bottom:563.122667pt;}
.y85{bottom:566.374667pt;}
.y57{bottom:567.729333pt;}
.yaa{bottom:568.114667pt;}
.y1a9{bottom:569.469333pt;}
.y1f9{bottom:570.824000pt;}
.y26{bottom:574.993333pt;}
.y188{bottom:578.329333pt;}
.y160{bottom:582.314667pt;}
.y130{bottom:584.080000pt;}
.y84{bottom:584.944000pt;}
.y56{bottom:586.300000pt;}
.ya9{bottom:586.684000pt;}
.y1f8{bottom:587.846667pt;}
.y1a8{bottom:588.040000pt;}
.y1c6{bottom:588.424000pt;}
.y25{bottom:593.564000pt;}
.y187{bottom:596.900000pt;}
.y15f{bottom:600.885333pt;}
.ycb{bottom:602.145333pt;}
.y12f{bottom:602.649333pt;}
.y83{bottom:603.514667pt;}
.y55{bottom:604.869333pt;}
.ya8{bottom:605.254667pt;}
.y1a7{bottom:606.609333pt;}
.y24{bottom:612.133333pt;}
.y1c5{bottom:613.726667pt;}
.y186{bottom:615.469333pt;}
.y12e{bottom:618.496000pt;}
.y15e{bottom:619.454667pt;}
.y12d{bottom:621.220000pt;}
.y1f7{bottom:621.892000pt;}
.y82{bottom:622.085333pt;}
.y54{bottom:623.440000pt;}
.ya7{bottom:623.825333pt;}
.y1a6{bottom:625.180000pt;}
.y23{bottom:630.704000pt;}
.y185{bottom:634.040000pt;}
.y15d{bottom:638.025333pt;}
.y1f6{bottom:638.914667pt;}
.y1c4{bottom:639.029333pt;}
.y12c{bottom:639.790667pt;}
.y81{bottom:640.654667pt;}
.y53{bottom:642.010667pt;}
.ya6{bottom:642.394667pt;}
.y1a5{bottom:643.750667pt;}
.y22{bottom:649.274667pt;}
.y184{bottom:652.610667pt;}
.y1f5{bottom:655.937333pt;}
.y15c{bottom:656.596000pt;}
.y12b{bottom:658.360000pt;}
.y80{bottom:659.225333pt;}
.y52{bottom:660.580000pt;}
.ya5{bottom:660.965333pt;}
.y1a4{bottom:662.320000pt;}
.y1c3{bottom:664.332000pt;}
.y21{bottom:667.844000pt;}
.y183{bottom:671.180000pt;}
.y1f4{bottom:672.961333pt;}
.y12a{bottom:674.938667pt;}
.y15b{bottom:675.165333pt;}
.y129{bottom:676.930667pt;}
.y7f{bottom:677.796000pt;}
.y51{bottom:679.150667pt;}
.ya4{bottom:679.536000pt;}
.y1a3{bottom:680.890667pt;}
.y1c2{bottom:681.664000pt;}
.y20{bottom:686.414667pt;}
.y182{bottom:689.750667pt;}
.y1f3{bottom:689.984000pt;}
.y15a{bottom:693.736000pt;}
.y128{bottom:695.501333pt;}
.y7e{bottom:696.365333pt;}
.y50{bottom:697.721333pt;}
.ya3{bottom:698.105333pt;}
.y1a2{bottom:699.461333pt;}
.y1f{bottom:704.985333pt;}
.y1f2{bottom:707.006667pt;}
.y181{bottom:708.321333pt;}
.y159{bottom:712.306667pt;}
.y127{bottom:714.070667pt;}
.y7d{bottom:714.936000pt;}
.y4f{bottom:716.290667pt;}
.ya2{bottom:716.676000pt;}
.yf2{bottom:718.030667pt;}
.y1e{bottom:723.556000pt;}
.y1f1{bottom:724.029333pt;}
.y180{bottom:726.892000pt;}
.y158{bottom:730.876000pt;}
.y126{bottom:732.641333pt;}
.y7c{bottom:733.506667pt;}
.y4e{bottom:734.861333pt;}
.ya1{bottom:735.246667pt;}
.yf1{bottom:736.601333pt;}
.y1f0{bottom:741.052000pt;}
.y1d{bottom:742.125333pt;}
.y17f{bottom:745.461333pt;}
.y157{bottom:749.446667pt;}
.y125{bottom:750.261333pt;}
.y7b{bottom:752.077333pt;}
.y124{bottom:752.985333pt;}
.y4d{bottom:753.432000pt;}
.ya0{bottom:753.817333pt;}
.yf0{bottom:755.172000pt;}
.y1ef{bottom:758.074667pt;}
.y1c{bottom:760.696000pt;}
.y17e{bottom:764.032000pt;}
.y156{bottom:768.017333pt;}
.y7a{bottom:770.646667pt;}
.y4c{bottom:772.002667pt;}
.y9f{bottom:772.386667pt;}
.yef{bottom:773.742667pt;}
.y1ee{bottom:775.097333pt;}
.y1b{bottom:779.266667pt;}
.y17d{bottom:782.602667pt;}
.y123{bottom:783.518667pt;}
.y155{bottom:786.586667pt;}
.y79{bottom:789.217333pt;}
.y4b{bottom:790.572000pt;}
.y1ed{bottom:792.120000pt;}
.yee{bottom:792.312000pt;}
.y9e{bottom:794.942667pt;}
.y1a{bottom:797.836000pt;}
.y122{bottom:798.084000pt;}
.y17c{bottom:801.172000pt;}
.y154{bottom:805.157333pt;}
.y78{bottom:807.788000pt;}
.y4a{bottom:809.142667pt;}
.yed{bottom:810.882667pt;}
.y1a1{bottom:814.868000pt;}
.y17b{bottom:819.742667pt;}
.y153{bottom:823.728000pt;}
.y19{bottom:824.377333pt;}
.y1ec{bottom:826.165333pt;}
.y77{bottom:826.357333pt;}
.y49{bottom:827.713333pt;}
.yec{bottom:829.453333pt;}
.y121{bottom:833.902667pt;}
.y17a{bottom:838.313333pt;}
.y152{bottom:842.297333pt;}
.y1eb{bottom:843.188000pt;}
.y76{bottom:844.928000pt;}
.y48{bottom:846.282667pt;}
.yeb{bottom:848.022667pt;}
.y120{bottom:852.473333pt;}
.y179{bottom:856.882667pt;}
.y18{bottom:859.949333pt;}
.y1ea{bottom:860.210667pt;}
.y151{bottom:860.868000pt;}
.y75{bottom:863.498667pt;}
.y47{bottom:864.853333pt;}
.yea{bottom:866.593333pt;}
.y11f{bottom:871.044000pt;}
.y216{bottom:873.029333pt;}
.y17{bottom:874.296000pt;}
.y1e9{bottom:877.233333pt;}
.y150{bottom:879.438667pt;}
.y74{bottom:882.068000pt;}
.y46{bottom:883.424000pt;}
.ye9{bottom:885.164000pt;}
.y11e{bottom:889.613333pt;}
.y215{bottom:890.052000pt;}
.y1e8{bottom:894.256000pt;}
.y14f{bottom:898.009333pt;}
.y73{bottom:900.638667pt;}
.y45{bottom:901.993333pt;}
.ye8{bottom:903.733333pt;}
.y214{bottom:907.074667pt;}
.y11d{bottom:908.184000pt;}
.y1e7{bottom:911.278667pt;}
.y14e{bottom:916.578667pt;}
.y16{bottom:917.866667pt;}
.y72{bottom:919.209333pt;}
.y44{bottom:920.564000pt;}
.ye7{bottom:922.304000pt;}
.y11c{bottom:926.754667pt;}
.y1e6{bottom:928.301333pt;}
.y14d{bottom:935.149333pt;}
.y1c1{bottom:937.778667pt;}
.y43{bottom:939.134667pt;}
.y71{bottom:941.764000pt;}
.ye6{bottom:944.860000pt;}
.y1e5{bottom:945.324000pt;}
.y15{bottom:952.377333pt;}
.y14c{bottom:953.720000pt;}
.y42{bottom:957.704000pt;}
.y1c0{bottom:960.334667pt;}
.y11b{bottom:960.800000pt;}
.y1e4{bottom:962.346667pt;}
.y14b{bottom:972.289333pt;}
.y41{bottom:976.274667pt;}
.y1e3{bottom:979.369333pt;}
.y14{bottom:980.232000pt;}
.y14a{bottom:990.860000pt;}
.yca{bottom:994.705333pt;}
.y40{bottom:994.845333pt;}
.y1e2{bottom:996.392000pt;}
.y3f{bottom:1013.414667pt;}
.y3e{bottom:1066.841333pt;}
.h2{height:27.188522pt;}
.h3{height:27.300102pt;}
.h11{height:29.640290pt;}
.h7{height:31.072763pt;}
.ha{height:31.200285pt;}
.h17{height:31.558400pt;}
.h12{height:32.568290pt;}
.hd{height:34.957005pt;}
.h19{height:35.100467pt;}
.h15{height:38.202646pt;}
.h6{height:38.415786pt;}
.h8{height:38.840857pt;}
.h4{height:39.000258pt;}
.h13{height:39.641961pt;}
.he{height:41.524400pt;}
.hc{height:42.732115pt;}
.h9{height:46.099251pt;}
.h16{height:46.748602pt;}
.h18{height:61.133355pt;}
.h5{height:69.148877pt;}
.h10{height:70.718190pt;}
.hf{height:70.723523pt;}
.hb{height:302.430871pt;}
.h14{height:398.011023pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:548.059913pt;}
.w3{width:691.716542pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x31{left:50.834275pt;}
.x1b{left:61.706667pt;}
.x18{left:63.340000pt;}
.x16{left:75.102667pt;}
.x56{left:76.309333pt;}
.x11{left:78.390667pt;}
.x10{left:109.281333pt;}
.xa{left:122.645333pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x53{left:231.604000pt;}
.x4d{left:232.938667pt;}
.x4{left:250.204000pt;}
.x4a{left:258.549333pt;}
.x3f{left:264.902667pt;}
.x3b{left:270.088000pt;}
.x22{left:271.037333pt;}
.x3c{left:276.412000pt;}
.x2d{left:278.140000pt;}
.xf{left:282.997333pt;}
.x23{left:284.844000pt;}
.x2f{left:319.324000pt;}
.x29{left:336.433333pt;}
.x2a{left:354.890667pt;}
.x2e{left:375.578667pt;}
.x12{left:378.212000pt;}
.x26{left:390.005333pt;}
.x38{left:391.073333pt;}
.x19{left:392.778667pt;}
.x37{left:393.786667pt;}
.x1c{left:397.174667pt;}
.x42{left:421.104000pt;}
.x1d{left:422.221333pt;}
.x30{left:429.601333pt;}
.x17{left:437.364000pt;}
.xe{left:445.952000pt;}
.x13{left:448.588000pt;}
.x3d{left:453.590667pt;}
.x3e{left:457.542667pt;}
.x43{left:486.317333pt;}
.x39{left:492.529333pt;}
.x44{left:496.128000pt;}
.x33{left:507.220000pt;}
.x3a{left:509.582667pt;}
.x45{left:514.124000pt;}
.x34{left:521.110667pt;}
.x40{left:537.720000pt;}
.x2b{left:539.114667pt;}
.xb{left:544.734250pt;}
.x41{left:546.758667pt;}
.x6{left:548.929333pt;}
.x2c{left:556.989333pt;}
.x46{left:562.124000pt;}
.x7{left:567.148000pt;}
.x27{left:571.014667pt;}
.x8{left:582.561333pt;}
.x51{left:583.748000pt;}
.x54{left:584.864000pt;}
.x28{left:587.716000pt;}
.x50{left:589.792000pt;}
.x24{left:590.905333pt;}
.x14{left:593.024000pt;}
.x1a{left:597.680000pt;}
.x1e{left:599.878667pt;}
.x9{left:600.780000pt;}
.x4f{left:602.152000pt;}
.x20{left:607.128000pt;}
.x4e{left:611.224000pt;}
.x1f{left:613.002667pt;}
.x4b{left:614.697333pt;}
.x15{left:618.688000pt;}
.x4c{left:621.273333pt;}
.x52{left:624.733333pt;}
.x47{left:627.480000pt;}
.x55{left:639.790667pt;}
.x21{left:653.876000pt;}
.x48{left:674.970667pt;}
.x49{left:684.070667pt;}
.x32{left:685.953035pt;}
.x35{left:687.098667pt;}
.x5{left:693.324000pt;}
.x36{left:703.282667pt;}
.x25{left:727.825333pt;}
.xc{left:730.082667pt;}
.xd{left:743.973333pt;}
}




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