
    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_35ed9af8f1ae43c92e4a4d77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903320;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_017ee12aaadd25dbb66ef69a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_3b87a0f42a1fb56c71615323.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ac1248cd9ea5a5b9980d2eb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.756348;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_f962735adf41b62638e10cb2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_2ce41bc230fc406e2f6446dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967773;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_856d5c598de4ac5033797f0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_efe84b9b928a055fe95e8e4e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959000;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_e6ebb3c71c2313d5b6e3cd28.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932129;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_0ef82656dc5b9c55cf164f16.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939000;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_d21e05c38696bec20b37deb8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932129;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;}
.m4{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m27{transform:matrix(0.000000,-0.247921,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247921,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247921,0.250000,0.000000,0,0);}
.m2a{transform:matrix(0.000000,-0.247978,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247978,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247978,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.248791,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248791,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248791,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.248816,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248816,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248816,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249461,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249461,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249461,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249549,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249549,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249549,0.250000,0.000000,0,0);}
.m21{transform:matrix(0.000000,-0.249648,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249648,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249648,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249680,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249680,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249680,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249740,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249740,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249740,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.249960,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249960,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249960,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.079326,-0.237081,0.237081,0.079326,0,0);-ms-transform:matrix(0.079326,-0.237081,0.237081,0.079326,0,0);-webkit-transform:matrix(0.079326,-0.237081,0.237081,0.079326,0,0);}
.m24{transform:matrix(0.093426,-0.231239,0.231796,0.093652,0,0);-ms-transform:matrix(0.093426,-0.231239,0.231796,0.093652,0,0);-webkit-transform:matrix(0.093426,-0.231239,0.231796,0.093652,0,0);}
.m1b{transform:matrix(0.143750,-0.204535,0.204537,0.143751,0,0);-ms-transform:matrix(0.143750,-0.204535,0.204537,0.143751,0,0);-webkit-transform:matrix(0.143750,-0.204535,0.204537,0.143751,0,0);}
.m1e{transform:matrix(0.216748,-0.124635,0.124622,0.216724,0,0);-ms-transform:matrix(0.216748,-0.124635,0.124622,0.216724,0,0);-webkit-transform:matrix(0.216748,-0.124635,0.124622,0.216724,0,0);}
.mc{transform:matrix(0.245116,-0.047646,0.047702,0.245407,0,0);-ms-transform:matrix(0.245116,-0.047646,0.047702,0.245407,0,0);-webkit-transform:matrix(0.245116,-0.047646,0.047702,0.245407,0,0);}
.m28{transform:matrix(0.247351,-0.008638,0.008725,0.249848,0,0);-ms-transform:matrix(0.247351,-0.008638,0.008725,0.249848,0,0);-webkit-transform:matrix(0.247351,-0.008638,0.008725,0.249848,0,0);}
.m2c{transform:matrix(0.247374,-0.017298,0.017439,0.249391,0,0);-ms-transform:matrix(0.247374,-0.017298,0.017439,0.249391,0,0);-webkit-transform:matrix(0.247374,-0.017298,0.017439,0.249391,0,0);}
.m10{transform:matrix(0.247601,-0.030402,0.030467,0.248137,0,0);-ms-transform:matrix(0.247601,-0.030402,0.030467,0.248137,0,0);-webkit-transform:matrix(0.247601,-0.030402,0.030467,0.248137,0,0);}
.m2e{transform:matrix(0.247723,0.018626,-0.018745,0.249296,0,0);-ms-transform:matrix(0.247723,0.018626,-0.018745,0.249296,0,0);-webkit-transform:matrix(0.247723,0.018626,-0.018745,0.249296,0,0);}
.m26{transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248143,-0.030468,0.030467,0.248137,0,0);-ms-transform:matrix(0.248143,-0.030468,0.030467,0.248137,0,0);-webkit-transform:matrix(0.248143,-0.030468,0.030467,0.248137,0,0);}
.m2b{transform:matrix(0.248253,-0.008669,0.008725,0.249848,0,0);-ms-transform:matrix(0.248253,-0.008669,0.008725,0.249848,0,0);-webkit-transform:matrix(0.248253,-0.008669,0.008725,0.249848,0,0);}
.m2d{transform:matrix(0.248390,-0.002168,0.002182,0.249990,0,0);-ms-transform:matrix(0.248390,-0.002168,0.002182,0.249990,0,0);-webkit-transform:matrix(0.248390,-0.002168,0.002182,0.249990,0,0);}
.md{transform:matrix(0.248735,-0.021761,0.021789,0.249049,0,0);-ms-transform:matrix(0.248735,-0.021761,0.021789,0.249049,0,0);-webkit-transform:matrix(0.248735,-0.021761,0.021789,0.249049,0,0);}
.m15{transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249119,-0.013056,0.013084,0.249657,0,0);-ms-transform:matrix(0.249119,-0.013056,0.013084,0.249657,0,0);-webkit-transform:matrix(0.249119,-0.013056,0.013084,0.249657,0,0);}
.m1f{transform:matrix(0.249140,0.021359,-0.021354,0.249086,0,0);-ms-transform:matrix(0.249140,0.021359,-0.021354,0.249086,0,0);-webkit-transform:matrix(0.249140,0.021359,-0.021354,0.249086,0,0);}
.m22{transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249549,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,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);}
.m1a{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-62.940000px;}
.v4{vertical-align:-39.966000px;}
.v3{vertical-align:-32.148000px;}
.vf{vertical-align:-30.954000px;}
.vb{vertical-align:-27.066000px;}
.v12{vertical-align:-25.854000px;}
.v2{vertical-align:-23.814000px;}
.v10{vertical-align:-21.426000px;}
.v13{vertical-align:-20.412000px;}
.vc{vertical-align:-14.622000px;}
.va{vertical-align:-10.374000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.266000px;}
.v11{vertical-align:26.874000px;}
.v9{vertical-align:38.946000px;}
.ve{vertical-align:51.486000px;}
.vd{vertical-align:54.444000px;}
.v7{vertical-align:59.358000px;}
.v8{vertical-align:63.342000px;}
.v6{vertical-align:69.564000px;}
.ls0{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.006640px;}
.ls4d{letter-spacing:0.011549px;}
.ls11{letter-spacing:0.032838px;}
.ls10{letter-spacing:0.033528px;}
.lsc{letter-spacing:0.038838px;}
.lse{letter-spacing:0.039528px;}
.ls22{letter-spacing:0.048000px;}
.ls16{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.075720px;}
.ls13{letter-spacing:0.076488px;}
.lsf{letter-spacing:0.082488px;}
.ls48{letter-spacing:0.084000px;}
.ls39{letter-spacing:0.087547px;}
.ls53{letter-spacing:0.102048px;}
.ls2a{letter-spacing:0.106130px;}
.ls45{letter-spacing:0.113796px;}
.ls41{letter-spacing:0.116448px;}
.ls4f{letter-spacing:0.118564px;}
.ls4a{letter-spacing:0.120078px;}
.ls4{letter-spacing:0.124955px;}
.ls19{letter-spacing:0.132000px;}
.ls8{letter-spacing:0.154158px;}
.ls1b{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.165696px;}
.ls12{letter-spacing:0.171696px;}
.ls4e{letter-spacing:0.176698px;}
.lsa{letter-spacing:0.180714px;}
.ls6{letter-spacing:0.203274px;}
.ls4c{letter-spacing:0.232125px;}
.ls2e{letter-spacing:0.232438px;}
.ls52{letter-spacing:0.306246px;}
.ls2b{letter-spacing:0.327110px;}
.lsb{letter-spacing:0.348714px;}
.ls31{letter-spacing:0.359204px;}
.ls3f{letter-spacing:0.359591px;}
.ls3d{letter-spacing:0.363567px;}
.ls3c{letter-spacing:0.396649px;}
.ls3e{letter-spacing:0.404298px;}
.ls3a{letter-spacing:0.444319px;}
.ls34{letter-spacing:0.459666px;}
.ls33{letter-spacing:0.465651px;}
.ls30{letter-spacing:0.492219px;}
.ls32{letter-spacing:0.496974px;}
.ls2d{letter-spacing:0.524313px;}
.ls35{letter-spacing:0.561112px;}
.ls3b{letter-spacing:0.584389px;}
.ls38{letter-spacing:0.585121px;}
.ls36{letter-spacing:0.590357px;}
.ls29{letter-spacing:0.643336px;}
.ls2f{letter-spacing:0.700926px;}
.ls37{letter-spacing:0.714798px;}
.ls2c{letter-spacing:0.918019px;}
.ls40{letter-spacing:19.756710px;}
.ls14{letter-spacing:21.090000px;}
.ls15{letter-spacing:26.364000px;}
.ls2{letter-spacing:32.686710px;}
.ls1c{letter-spacing:33.168000px;}
.ls49{letter-spacing:39.390000px;}
.ls1d{letter-spacing:42.201216px;}
.ls43{letter-spacing:42.693360px;}
.ls1{letter-spacing:43.772310px;}
.ls18{letter-spacing:43.898544px;}
.ls47{letter-spacing:48.060000px;}
.ls17{letter-spacing:49.263816px;}
.ls25{letter-spacing:49.974912px;}
.ls42{letter-spacing:50.172960px;}
.ls27{letter-spacing:51.155712px;}
.ls1a{letter-spacing:55.077816px;}
.ls1e{letter-spacing:58.116144px;}
.ls24{letter-spacing:59.358912px;}
.ls23{letter-spacing:59.388912px;}
.ls21{letter-spacing:59.418912px;}
.ls20{letter-spacing:59.448912px;}
.ls1f{letter-spacing:59.478912px;}
.ls26{letter-spacing:60.084912px;}
.ls28{letter-spacing:67.145712px;}
.ls51{letter-spacing:70.337700px;}
.ls46{letter-spacing:103.132650px;}
.ls5{letter-spacing:110.129304px;}
.ls50{letter-spacing:121.194840px;}
.ls7{letter-spacing:314.148714px;}
.ls44{letter-spacing:1039.872714px;}
.ls9{letter-spacing:1183.244241px;}
.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;}
}
.ws22{word-spacing:-64.800000px;}
.ws3{word-spacing:-62.395320px;}
.ws4{word-spacing:-49.924680px;}
.ws5{word-spacing:-31.220280px;}
.ws2c{word-spacing:-30.250848px;}
.wsf{word-spacing:-29.916000px;}
.ws34{word-spacing:-28.816368px;}
.ws39{word-spacing:-28.080000px;}
.ws4a{word-spacing:-27.850596px;}
.ws46{word-spacing:-27.830580px;}
.ws42{word-spacing:-27.687132px;}
.ws4b{word-spacing:-26.634528px;}
.ws10{word-spacing:-26.570394px;}
.wsa{word-spacing:-26.532480px;}
.ws47{word-spacing:-26.047320px;}
.ws48{word-spacing:-26.028600px;}
.ws43{word-spacing:-25.874160px;}
.ws8{word-spacing:-25.310232px;}
.ws19{word-spacing:-23.031744px;}
.ws15{word-spacing:-23.020068px;}
.ws18{word-spacing:-21.540480px;}
.ws14{word-spacing:-21.529560px;}
.ws20{word-spacing:-21.020136px;}
.ws3b{word-spacing:-20.509728px;}
.ws40{word-spacing:-20.004324px;}
.ws3f{word-spacing:-20.002656px;}
.ws1c{word-spacing:-19.682520px;}
.ws1e{word-spacing:-19.210356px;}
.ws6{word-spacing:-18.705960px;}
.ws1a{word-spacing:-18.691608px;}
.ws16{word-spacing:-18.683268px;}
.ws1{word-spacing:-18.086640px;}
.ws2a{word-spacing:-17.498988px;}
.ws35{word-spacing:-17.337192px;}
.ws25{word-spacing:-17.298828px;}
.ws27{word-spacing:-16.062840px;}
.ws12{word-spacing:-13.146000px;}
.ws36{word-spacing:-10.801968px;}
.ws0{word-spacing:-10.445760px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:2.760726px;}
.ws1b{word-spacing:17.732999px;}
.ws1d{word-spacing:17.733885px;}
.ws13{word-spacing:19.197965px;}
.ws17{word-spacing:19.211989px;}
.ws49{word-spacing:43.633596px;}
.ws45{word-spacing:43.639644px;}
.ws3e{word-spacing:61.580774px;}
.ws1f{word-spacing:100.088040px;}
.ws41{word-spacing:110.965470px;}
.ws44{word-spacing:149.136927px;}
.ws2f{word-spacing:153.012000px;}
.ws7{word-spacing:159.798667px;}
.ws23{word-spacing:159.804667px;}
.wsb{word-spacing:171.204528px;}
.ws3d{word-spacing:172.450321px;}
.ws3c{word-spacing:172.456330px;}
.ws2d{word-spacing:237.252000px;}
.ws26{word-spacing:331.550437px;}
.ws29{word-spacing:331.556436px;}
.ws9{word-spacing:374.202816px;}
.ws32{word-spacing:387.048000px;}
.ws30{word-spacing:392.988000px;}
.ws31{word-spacing:434.892000px;}
.ws3a{word-spacing:576.347820px;}
.ws21{word-spacing:610.476552px;}
.wsd{word-spacing:1003.939460px;}
.ws28{word-spacing:1042.637274px;}
.ws37{word-spacing:1067.274000px;}
.ws38{word-spacing:1101.636000px;}
.wsc{word-spacing:1113.098688px;}
.ws2e{word-spacing:1157.670000px;}
.ws33{word-spacing:1217.718000px;}
.ws2b{word-spacing:1240.525818px;}
.ws24{word-spacing:1386.100871px;}
.wse{word-spacing:2129.512912px;}
._9{margin-left:-2603.806512px;}
._38{margin-left:-2463.102605px;}
._f{margin-left:-2298.817168px;}
._2b{margin-left:-2067.815562px;}
._1a{margin-left:-1833.965586px;}
._26{margin-left:-1788.176916px;}
._2f{margin-left:-1625.113068px;}
._16{margin-left:-1561.266414px;}
._2d{margin-left:-1512.194013px;}
._23{margin-left:-1431.651300px;}
._1b{margin-left:-1423.105014px;}
._37{margin-left:-1320.295860px;}
._44{margin-left:-1291.268232px;}
._27{margin-left:-1137.805314px;}
._35{margin-left:-1033.060752px;}
._21{margin-left:-1016.880174px;}
._3d{margin-left:-964.519500px;}
._39{margin-left:-819.295293px;}
._2a{margin-left:-783.552660px;}
._19{margin-left:-719.247324px;}
._3b{margin-left:-694.314587px;}
._24{margin-left:-684.134907px;}
._17{margin-left:-678.859794px;}
._3a{margin-left:-496.016764px;}
._40{margin-left:-480.565416px;}
._d{margin-left:-414.110598px;}
._43{margin-left:-411.880800px;}
._2c{margin-left:-379.471086px;}
._10{margin-left:-358.309237px;}
._22{margin-left:-268.382862px;}
._5{margin-left:-173.631114px;}
._8{margin-left:-20.293182px;}
._b{margin-left:-17.758668px;}
._36{margin-left:-15.472662px;}
._e{margin-left:-13.249242px;}
._12{margin-left:-11.867850px;}
._15{margin-left:-9.600900px;}
._2{margin-left:-7.654956px;}
._4{margin-left:-5.759568px;}
._6{margin-left:-4.388706px;}
._0{margin-left:-2.881080px;}
._1{margin-left:-1.440540px;}
._3{width:1.182588px;}
._7{width:2.807514px;}
._18{width:3.840360px;}
._14{width:30.342000px;}
._3f{width:42.721877px;}
._1f{width:60.178005px;}
._1d{width:65.361476px;}
._13{width:68.091984px;}
._3c{width:75.214920px;}
._2e{width:85.732188px;}
._1e{width:95.449596px;}
._c{width:100.865520px;}
._1c{width:103.971885px;}
._3e{width:115.444408px;}
._20{width:125.926951px;}
._41{width:131.559727px;}
._42{width:146.975937px;}
._34{width:215.154000px;}
._28{width:381.746714px;}
._31{width:443.682000px;}
._11{width:783.930788px;}
._30{width:839.861568px;}
._33{width:911.430000px;}
._32{width:1015.362540px;}
._29{width:1332.396000px;}
._25{width:1544.301712px;}
._a{width:2724.112944px;}
.fc16{color:rgb(50,205,50);}
.fc14{color:rgb(179,0,179);}
.fc13{color:rgb(128,128,128);}
.fc12{color:rgb(0,143,0);}
.fc15{color:rgb(0,179,179);}
.fc10{color:rgb(220,220,220);}
.fcf{color:rgb(153,102,51);}
.fcd{color:rgb(0,176,0);}
.fc0{color:rgb(0,0,0);}
.fce{color:rgb(0,144,0);}
.fc1{color:rgb(53,82,105);}
.fc2{color:rgb(255,0,0);}
.fca{color:rgb(0,179,0);}
.fc4{color:rgb(211,211,211);}
.fc5{color:rgb(255,51,51);}
.fc3{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc11{color:rgb(255,214,0);}
.fcc{color:rgb(0,128,0);}
.fc8{color:rgb(31,73,125);}
.fc6{color:rgb(0,153,0);}
.fc9{color:rgb(201,33,30);}
.fcb{color:rgb(255,0,255);}
.fs29{font-size:38.856000px;}
.fs2a{font-size:40.140000px;}
.fs3{font-size:40.176000px;}
.fsa{font-size:54.084000px;}
.fs20{font-size:57.780000px;}
.fs25{font-size:60.036000px;}
.fs1f{font-size:62.226000px;}
.fs27{font-size:62.364000px;}
.fs21{font-size:62.946000px;}
.fs28{font-size:63.036000px;}
.fs16{font-size:63.648000px;}
.fs18{font-size:67.206000px;}
.fs1a{font-size:67.236000px;}
.fs2b{font-size:67.860000px;}
.fs1c{font-size:69.048000px;}
.fs1d{font-size:69.102000px;}
.fs2{font-size:69.564000px;}
.fs12{font-size:70.848000px;}
.fs14{font-size:71.448000px;}
.fs9{font-size:71.946000px;}
.fs2d{font-size:71.952000px;}
.fs2e{font-size:71.958000px;}
.fs2c{font-size:73.776000px;}
.fs1e{font-size:75.612000px;}
.fs1b{font-size:75.702000px;}
.fsf{font-size:78.048000px;}
.fs17{font-size:82.806000px;}
.fs19{font-size:82.848000px;}
.fs10{font-size:84.018000px;}
.fse{font-size:89.970000px;}
.fsb{font-size:91.044000px;}
.fs15{font-size:95.922000px;}
.fs30{font-size:99.516000px;}
.fs2f{font-size:99.594000px;}
.fs31{font-size:100.110000px;}
.fs32{font-size:100.182000px;}
.fsd{font-size:102.048000px;}
.fs26{font-size:103.656000px;}
.fs11{font-size:106.884000px;}
.fs4{font-size:108.000000px;}
.fs24{font-size:108.816000px;}
.fs13{font-size:111.540000px;}
.fs8{font-size:113.952000px;}
.fs6{font-size:120.078000px;}
.fs1{font-size:131.982000px;}
.fs0{font-size:144.054000px;}
.fs23{font-size:155.964000px;}
.fs22{font-size:168.036000px;}
.fsc{font-size:179.946000px;}
.fs5{font-size:192.018000px;}
.fs7{font-size:239.982000px;}
.y122{bottom:-0.042000px;}
.yb9{bottom:-0.025500px;}
.y0{bottom:0.000000px;}
.y9f{bottom:0.003000px;}
.yaa{bottom:0.012000px;}
.y1{bottom:0.042000px;}
.y17c{bottom:1.365000px;}
.y199{bottom:1.888500px;}
.y18a{bottom:1.918500px;}
.y179{bottom:2.886000px;}
.ycf{bottom:4.702500px;}
.y7{bottom:7.611000px;}
.y145{bottom:7.654500px;}
.y14f{bottom:7.696500px;}
.y11a{bottom:10.005000px;}
.yfc{bottom:10.545000px;}
.y112{bottom:10.588500px;}
.y6b{bottom:11.353500px;}
.ydd{bottom:12.949500px;}
.y170{bottom:15.682500px;}
.yf6{bottom:16.099500px;}
.y10c{bottom:16.143000px;}
.y17b{bottom:23.574000px;}
.yb8{bottom:24.016500px;}
.yce{bottom:24.697500px;}
.y9e{bottom:26.224500px;}
.ya9{bottom:26.247000px;}
.y52{bottom:31.593000px;}
.y144{bottom:32.145000px;}
.y14e{bottom:32.188500px;}
.y189{bottom:32.506500px;}
.y198{bottom:32.787000px;}
.y53{bottom:33.081000px;}
.y12a{bottom:33.123000px;}
.y5a{bottom:33.718500px;}
.y9c{bottom:33.760500px;}
.yfb{bottom:35.544000px;}
.y111{bottom:35.587500px;}
.y6a{bottom:35.844000px;}
.y15c{bottom:38.325000px;}
.yb6{bottom:38.736000px;}
.yd0{bottom:40.023000px;}
.y17d{bottom:40.230000px;}
.yba{bottom:44.647500px;}
.y177{bottom:45.556500px;}
.ya0{bottom:48.726000px;}
.yab{bottom:48.759000px;}
.y13d{bottom:49.408500px;}
.y181{bottom:51.333000px;}
.y18b{bottom:55.447500px;}
.y19a{bottom:55.959000px;}
.y96{bottom:56.169000px;}
.yb5{bottom:56.263500px;}
.y136{bottom:60.336000px;}
.y187{bottom:61.144500px;}
.y5e{bottom:61.909500px;}
.y158{bottom:62.619000px;}
.yd6{bottom:63.556500px;}
.y171{bottom:64.047000px;}
.y56{bottom:64.588500px;}
.y4e{bottom:69.180000px;}
.y186{bottom:69.222000px;}
.ycc{bottom:69.733500px;}
.y4f{bottom:70.711500px;}
.y9d{bottom:71.007000px;}
.ya8{bottom:71.176500px;}
.y1a4{bottom:71.407500px;}
.y1a3{bottom:71.439000px;}
.yf8{bottom:71.841000px;}
.y10e{bottom:71.884500px;}
.y2f{bottom:72.709500px;}
.y11b{bottom:73.089000px;}
.y184{bottom:73.557000px;}
.y191{bottom:74.533500px;}
.ya7{bottom:82.507500px;}
.yf9{bottom:83.878500px;}
.y10f{bottom:83.922000px;}
.y5b{bottom:84.571500px;}
.yd1{bottom:84.718500px;}
.y82{bottom:85.422000px;}
.yc8{bottom:85.909500px;}
.y51{bottom:87.421500px;}
.y190{bottom:89.790000px;}
.y50{bottom:91.503000px;}
.yda{bottom:91.797000px;}
.y104{bottom:92.905500px;}
.y13c{bottom:93.373500px;}
.y43{bottom:98.136000px;}
.yec{bottom:98.560500px;}
.y10a{bottom:99.241500px;}
.yb1{bottom:99.427500px;}
.y15a{bottom:103.534500px;}
.yf7{bottom:103.600500px;}
.y10d{bottom:103.644000px;}
.y123{bottom:104.653500px;}
.yc3{bottom:106.540500px;}
.ybb{bottom:110.007000px;}
.yb7{bottom:112.591500px;}
.y172{bottom:113.868000px;}
.yd7{bottom:114.126000px;}
.y46{bottom:114.378000px;}
.y5d{bottom:116.334000px;}
.y185{bottom:118.162500px;}
.y135{bottom:118.545000px;}
.y1a0{bottom:119.670000px;}
.y11f{bottom:120.390000px;}
.ycb{bottom:120.672000px;}
.y129{bottom:120.799500px;}
.y72{bottom:121.606500px;}
.y19b{bottom:123.562500px;}
.y18e{bottom:124.269000px;}
.y17e{bottom:124.885500px;}
.y16d{bottom:125.050500px;}
.yc0{bottom:125.466000px;}
.y197{bottom:125.772000px;}
.y2c{bottom:126.241500px;}
.y3e{bottom:128.410500px;}
.y188{bottom:129.216000px;}
.y192{bottom:130.020000px;}
.yd2{bottom:130.618500px;}
.y156{bottom:130.621500px;}
.y81{bottom:131.259000px;}
.y196{bottom:131.916000px;}
.y42{bottom:133.044000px;}
.ya4{bottom:133.090500px;}
.yb0{bottom:133.165500px;}
.y1a7{bottom:133.203000px;}
.y159{bottom:135.501000px;}
.y13b{bottom:137.338500px;}
.y11c{bottom:139.063500px;}
.ydb{bottom:140.032500px;}
.y141{bottom:141.250500px;}
.y103{bottom:141.846000px;}
.y67{bottom:145.035000px;}
.yac{bottom:146.313000px;}
.yfa{bottom:147.213000px;}
.y110{bottom:147.256500px;}
.y1a2{bottom:148.651500px;}
.y58{bottom:150.010500px;}
.y109{bottom:150.180000px;}
.y2b{bottom:150.733500px;}
.y183{bottom:151.269000px;}
.y54{bottom:151.285500px;}
.y9b{bottom:151.498500px;}
.y16c{bottom:154.177500px;}
.yef{bottom:154.857000px;}
.yb2{bottom:161.320500px;}
.y173{bottom:163.689000px;}
.ya1{bottom:165.012000px;}
.y34{bottom:167.868000px;}
.y4{bottom:168.294000px;}
.yff{bottom:169.909500px;}
.yc4{bottom:170.139000px;}
.y5c{bottom:170.760000px;}
.y69{bottom:171.355500px;}
.y15d{bottom:174.372000px;}
.y1ad{bottom:174.841500px;}
.y154{bottom:175.182000px;}
.y14d{bottom:176.032500px;}
.y134{bottom:176.755500px;}
.y114{bottom:176.883000px;}
.ybc{bottom:177.015000px;}
.y1a5{bottom:177.633000px;}
.yd3{bottom:177.685500px;}
.y18c{bottom:179.694000px;}
.y155{bottom:181.560000px;}
.y1d{bottom:182.877000px;}
.y119{bottom:183.598500px;}
.y118{bottom:185.428500px;}
.ydf{bottom:186.279000px;}
.y121{bottom:186.364500px;}
.y16b{bottom:186.450000px;}
.y17a{bottom:187.299000px;}
.y102{bottom:187.683000px;}
.yd8{bottom:188.266500px;}
.y19c{bottom:193.081500px;}
.yeb{bottom:193.252500px;}
.y66{bottom:195.973500px;}
.y105{bottom:196.866000px;}
.y124{bottom:200.679000px;}
.y108{bottom:201.118500px;}
.yf4{bottom:202.989000px;}
.y11d{bottom:204.991500px;}
.y16f{bottom:205.752000px;}
.y193{bottom:206.488500px;}
.y70{bottom:207.751500px;}
.yee{bottom:209.239500px;}
.y13e{bottom:210.175500px;}
.y7e{bottom:210.261000px;}
.y17f{bottom:210.964500px;}
.y8e{bottom:211.068000px;}
.yc2{bottom:211.423500px;}
.y41{bottom:211.918500px;}
.y3f{bottom:212.004000px;}
.y3d{bottom:212.046000px;}
.y174{bottom:214.923000px;}
.y16a{bottom:217.149000px;}
.y14c{bottom:217.360500px;}
.y1c{bottom:219.828000px;}
.y33{bottom:222.294000px;}
.y15b{bottom:222.960000px;}
.ya5{bottom:223.095000px;}
.yb4{bottom:223.215000px;}
.yd4{bottom:223.587000px;}
.y120{bottom:223.618500px;}
.y153{bottom:224.122500px;}
.yfe{bottom:224.334000px;}
.y2e{bottom:225.015000px;}
.ye{bottom:225.780000px;}
.y1ac{bottom:225.822000px;}
.y113{bottom:227.821500px;}
.y14{bottom:227.991000px;}
.ycd{bottom:229.690500px;}
.y117{bottom:232.839000px;}
.y101{bottom:233.518500px;}
.yea{bottom:234.114000px;}
.yc5{bottom:235.497000px;}
.y55{bottom:236.622000px;}
.ydc{bottom:240.042000px;}
.yde{bottom:240.705000px;}
.y65{bottom:243.382500px;}
.y7d{bottom:243.639000px;}
.ybd{bottom:244.080000px;}
.y8d{bottom:244.446000px;}
.yad{bottom:247.648500px;}
.y157{bottom:248.398500px;}
.y107{bottom:252.057000px;}
.y169{bottom:252.993000px;}
.y140{bottom:255.160500px;}
.y13a{bottom:256.978500px;}
.y14b{bottom:258.690000px;}
.yf3{bottom:261.199500px;}
.y38{bottom:261.666000px;}
.yd9{bottom:262.408500px;}
.y19d{bottom:262.600500px;}
.y60{bottom:263.242500px;}
.yed{bottom:263.665500px;}
.yc9{bottom:264.711000px;}
.y175{bottom:264.744000px;}
.y9a{bottom:266.259000px;}
.y2d{bottom:267.193500px;}
.y130{bottom:267.450000px;}
.y128{bottom:268.075500px;}
.yd5{bottom:269.449500px;}
.y152{bottom:269.958000px;}
.y1b{bottom:270.766500px;}
.y11e{bottom:270.966000px;}
.y32{bottom:273.232500px;}
.y137{bottom:273.448500px;}
.y4d{bottom:274.039500px;}
.yd{bottom:276.718500px;}
.y7c{bottom:277.017000px;}
.y95{bottom:277.059000px;}
.y8c{bottom:277.824000px;}
.ye9{bottom:278.079000px;}
.yfd{bottom:278.760000px;}
.y13{bottom:278.929500px;}
.y68{bottom:280.204500px;}
.y116{bottom:280.248000px;}
.y100{bottom:282.459000px;}
.y194{bottom:282.958500px;}
.ya2{bottom:283.098000px;}
.y16e{bottom:283.777500px;}
.y3{bottom:285.180000px;}
.y127{bottom:286.702500px;}
.y64{bottom:290.793000px;}
.y180{bottom:295.621500px;}
.y125{bottom:296.749500px;}
.yc6{bottom:299.095500px;}
.y14a{bottom:300.019500px;}
.y106{bottom:302.995500px;}
.y178{bottom:303.135000px;}
.y1a6{bottom:303.138000px;}
.y126{bottom:305.374500px;}
.y18d{bottom:305.899500px;}
.y15e{bottom:307.357500px;}
.y7b{bottom:310.393500px;}
.y47{bottom:310.650000px;}
.ybe{bottom:311.143500px;}
.y8b{bottom:311.202000px;}
.y24{bottom:312.604500px;}
.y13f{bottom:313.371000px;}
.y176{bottom:314.520000px;}
.y27{bottom:314.604000px;}
.y6f{bottom:314.731500px;}
.y57{bottom:315.114000px;}
.y37{bottom:316.092000px;}
.y12f{bottom:318.388500px;}
.y151{bottom:318.898500px;}
.ye3{bottom:319.749000px;}
.y1a1{bottom:320.541000px;}
.y182{bottom:320.583000px;}
.y99{bottom:320.683500px;}
.y1a{bottom:321.705000px;}
.ye8{bottom:322.044000px;}
.y31{bottom:324.171000px;}
.y1ab{bottom:325.191000px;}
.y21{bottom:326.593500px;}
.y1b3{bottom:327.487500px;}
.y59{bottom:327.657000px;}
.y1e{bottom:327.997500px;}
.y1a8{bottom:328.246500px;}
.y2{bottom:328.380000px;}
.y12{bottom:329.868000px;}
.yc{bottom:331.144500px;}
.y115{bottom:331.186500px;}
.y4b{bottom:331.228500px;}
.y49{bottom:331.314000px;}
.y94{bottom:331.483500px;}
.y19e{bottom:332.119500px;}
.y23{bottom:337.096500px;}
.y28{bottom:337.479000px;}
.y63{bottom:338.202000px;}
.y26{bottom:339.094500px;}
.y149{bottom:341.349000px;}
.y7a{bottom:343.771500px;}
.y8a{bottom:344.580000px;}
.yf{bottom:344.749500px;}
.y4a{bottom:348.661500px;}
.yae{bottom:348.925500px;}
.y138{bottom:350.302500px;}
.ye2{bottom:350.362500px;}
.y20{bottom:351.085500px;}
.y80{bottom:352.021500px;}
.y7f{bottom:352.063500px;}
.yca{bottom:352.405500px;}
.y90{bottom:352.828500px;}
.y8f{bottom:352.872000px;}
.y10b{bottom:353.082000px;}
.yf5{bottom:353.125500px;}
.y161{bottom:354.636000px;}
.yc1{bottom:355.821000px;}
.y165{bottom:356.268000px;}
.yf1{bottom:357.030000px;}
.y167{bottom:359.125500px;}
.y195{bottom:359.427000px;}
.y22{bottom:361.588500px;}
.yc7{bottom:362.692500px;}
.y25{bottom:363.586500px;}
.y162{bottom:365.821500px;}
.ye7{bottom:366.010500px;}
.y48{bottom:366.222000px;}
.y150{bottom:367.839000px;}
.y6e{bottom:369.156000px;}
.y143{bottom:370.050000px;}
.y36{bottom:370.516500px;}
.y12e{bottom:371.580000px;}
.y19{bottom:372.643500px;}
.y1b2{bottom:372.898500px;}
.y98{bottom:375.109500px;}
.y1aa{bottom:376.129500px;}
.y79{bottom:377.149500px;}
.y89{bottom:377.958000px;}
.y30{bottom:378.595500px;}
.ybf{bottom:379.912500px;}
.y11{bottom:380.806500px;}
.y15f{bottom:380.826000px;}
.ye1{bottom:380.977500px;}
.yb{bottom:382.083000px;}
.y166{bottom:382.314000px;}
.y148{bottom:382.677000px;}
.y62{bottom:385.611000px;}
.y93{bottom:385.909500px;}
.y133{bottom:388.843500px;}
.y18f{bottom:391.911000px;}
.ya6{bottom:395.602500px;}
.ya3{bottom:401.244000px;}
.y19f{bottom:401.638500px;}
.y97{bottom:403.597500px;}
.y5f{bottom:404.872500px;}
.y142{bottom:404.958000px;}
.ye6{bottom:406.872000px;}
.y61{bottom:407.650500px;}
.yb3{bottom:408.958500px;}
.y78{bottom:410.527500px;}
.y88{bottom:411.336000px;}
.ye0{bottom:411.591000px;}
.y17{bottom:413.206500px;}
.y1b1{bottom:418.309500px;}
.y3a{bottom:418.783500px;}
.y6d{bottom:423.582000px;}
.y147{bottom:424.006500px;}
.y35{bottom:425.665500px;}
.y1a9{bottom:427.068000px;}
.y18{bottom:429.534000px;}
.y164{bottom:429.559500px;}
.y12d{bottom:429.789000px;}
.y139{bottom:432.648000px;}
.ya{bottom:433.021500px;}
.y132{bottom:435.912000px;}
.y92{bottom:440.334000px;}
.yf0{bottom:441.645000px;}
.y4c{bottom:442.588500px;}
.y77{bottom:443.905500px;}
.y87{bottom:444.714000px;}
.y2a{bottom:446.074500px;}
.y71{bottom:447.604500px;}
.ye5{bottom:447.733500px;}
.yaf{bottom:448.341000px;}
.y16{bottom:451.899000px;}
.y160{bottom:454.294500px;}
.y1b0{bottom:463.720500px;}
.y146{bottom:465.336000px;}
.y45{bottom:466.569000px;}
.y29{bottom:470.566500px;}
.y74{bottom:474.477000px;}
.y73{bottom:474.648000px;}
.y84{bottom:475.285500px;}
.y83{bottom:475.455000px;}
.y76{bottom:477.283500px;}
.y6c{bottom:478.006500px;}
.y86{bottom:478.092000px;}
.y9{bottom:483.960000px;}
.y40{bottom:484.044000px;}
.y131{bottom:486.468000px;}
.y12c{bottom:487.999500px;}
.ye4{bottom:488.593500px;}
.y15{bottom:490.593000px;}
.yf2{bottom:490.632000px;}
.y168{bottom:493.804500px;}
.y91{bottom:494.760000px;}
.y163{bottom:500.325000px;}
.y44{bottom:501.477000px;}
.y39{bottom:503.398500px;}
.y1af{bottom:509.131500px;}
.y75{bottom:510.661500px;}
.y85{bottom:511.470000px;}
.y3b{bottom:552.385500px;}
.y10{bottom:584.604000px;}
.y1ae{bottom:584.646000px;}
.y3c{bottom:585.793500px;}
.y12b{bottom:586.942500px;}
.y8{bottom:587.665500px;}
.y1f{bottom:589.281000px;}
.y6{bottom:614.367000px;}
.y5{bottom:638.136000px;}
.h49{height:28.792831px;}
.h4a{height:28.913670px;}
.h4b{height:36.679050px;}
.h4d{height:36.685050px;}
.h42{height:45.927540px;}
.h37{height:46.109466px;}
.h47{height:46.211724px;}
.h3b{height:46.642986px;}
.h48{height:46.709676px;}
.h3c{height:48.153690px;}
.h26{height:49.799646px;}
.h2a{height:49.821876px;}
.h4c{height:50.232305px;}
.h31{height:51.204582px;}
.h2f{height:51.232610px;}
.h2e{height:51.249132px;}
.h30{height:51.286889px;}
.h11{height:51.887670px;}
.h10{height:51.893670px;}
.h5{height:53.216460px;}
.h51{height:53.316432px;}
.h52{height:53.382526px;}
.h53{height:53.404679px;}
.h4f{height:54.668016px;}
.hd{height:55.038690px;}
.he{height:55.111351px;}
.h33{height:56.028492px;}
.h2c{height:56.095182px;}
.h34{height:57.843180px;}
.h2d{height:57.912030px;}
.hf{height:59.083137px;}
.h43{height:59.089137px;}
.h24{height:61.359246px;}
.h28{height:61.390368px;}
.h25{height:63.346590px;}
.h29{height:63.378720px;}
.h1b{height:64.273770px;}
.h3f{height:66.598887px;}
.h12{height:67.463604px;}
.h18{height:68.827050px;}
.h21{height:69.505980px;}
.h20{height:72.878238px;}
.h55{height:73.799154px;}
.h58{height:74.181510px;}
.h5c{height:74.296440px;}
.h35{height:75.539438px;}
.h56{height:76.197025px;}
.h5b{height:76.699041px;}
.h5a{height:76.708821px;}
.h59{height:76.721464px;}
.h45{height:76.809096px;}
.h46{height:77.009610px;}
.h14{height:78.066720px;}
.h1f{height:78.257812px;}
.h1c{height:79.201044px;}
.h40{height:79.945312px;}
.h41{height:80.632656px;}
.h1e{height:82.054688px;}
.h6{height:82.620000px;}
.hb{height:87.173280px;}
.h8{height:88.885863px;}
.h19{height:91.231137px;}
.ha{height:91.859670px;}
.h39{height:94.300980px;}
.h17{height:95.701050px;}
.h38{height:100.553466px;}
.h4{height:100.966230px;}
.h3{height:105.367623px;}
.hc{height:110.201310px;}
.h3e{height:119.312460px;}
.h1a{height:119.700720px;}
.h3d{height:128.547540px;}
.h13{height:137.658690px;}
.h22{height:139.138043px;}
.h7{height:146.893770px;}
.h15{height:147.630720px;}
.h16{height:147.972720px;}
.h1d{height:148.670100px;}
.h9{height:183.586230px;}
.h36{height:183.600000px;}
.h44{height:285.604500px;}
.h32{height:302.398500px;}
.h3a{height:324.000000px;}
.h4e{height:335.862000px;}
.h50{height:345.600000px;}
.h54{height:409.081500px;}
.h57{height:419.031000px;}
.h2b{height:421.200000px;}
.h23{height:459.382500px;}
.h27{height:463.336500px;}
.h2{height:669.556500px;}
.h0{height:669.600000px;}
.h1{height:669.750000px;}
.w8{width:316.431000px;}
.wd{width:378.000000px;}
.wa{width:462.231000px;}
.w7{width:466.567500px;}
.w6{width:468.736500px;}
.wb{width:470.862000px;}
.wc{width:485.956500px;}
.w5{width:492.462000px;}
.w4{width:492.589500px;}
.we{width:1042.666500px;}
.wf{width:1053.466500px;}
.w9{width:1070.943000px;}
.w3{width:1172.565000px;}
.w2{width:1190.125500px;}
.w0{width:1190.168504px;}
.w1{width:1190.250000px;}
.x96{left:-661.039500px;}
.x91{left:-219.627000px;}
.x0{left:0.000000px;}
.x75{left:2.023500px;}
.x7d{left:9.936000px;}
.xb0{left:13.872000px;}
.x59{left:14.911500px;}
.x5{left:17.178000px;}
.x6e{left:20.002500px;}
.x62{left:22.323000px;}
.x90{left:23.323500px;}
.x58{left:26.181000px;}
.x81{left:28.527000px;}
.xad{left:29.832000px;}
.x61{left:32.653500px;}
.x68{left:35.994000px;}
.x6d{left:41.160000px;}
.x6b{left:42.327000px;}
.xb4{left:43.647000px;}
.x57{left:48.658500px;}
.xac{left:51.160500px;}
.x60{left:53.257500px;}
.x67{left:56.580000px;}
.x55{left:69.277500px;}
.x5e{left:72.159000px;}
.x1{left:75.132000px;}
.x2{left:79.384500px;}
.xb3{left:81.564000px;}
.xaf{left:85.875000px;}
.x7f{left:88.420500px;}
.x6a{left:91.587000px;}
.x6c{left:92.926500px;}
.xb2{left:95.583000px;}
.x83{left:97.020000px;}
.x46{left:98.092500px;}
.x53{left:101.707500px;}
.xa{left:107.575500px;}
.xab{left:109.189500px;}
.xb1{left:112.150500px;}
.x74{left:116.026500px;}
.x6{left:118.375500px;}
.x7c{left:120.415500px;}
.x7{left:124.200000px;}
.x35{left:129.600000px;}
.x1e{left:136.956000px;}
.xb{left:139.294500px;}
.x2d{left:141.888000px;}
.x8{left:143.631000px;}
.x48{left:145.800000px;}
.x36{left:149.031000px;}
.x98{left:150.480000px;}
.x89{left:157.300500px;}
.xbc{left:158.997000px;}
.xc{left:161.958000px;}
.x45{left:167.400000px;}
.x10{left:168.463500px;}
.x52{left:170.971500px;}
.x22{left:174.586500px;}
.x32{left:184.323000px;}
.x3b{left:188.745000px;}
.x70{left:190.530000px;}
.x84{left:200.692500px;}
.x4a{left:211.875000px;}
.x5f{left:214.632000px;}
.xb5{left:216.153000px;}
.x66{left:217.813500px;}
.xa8{left:223.569000px;}
.x56{left:224.703000px;}
.x34{left:238.875000px;}
.x99{left:239.998500px;}
.x88{left:244.920000px;}
.x8e{left:246.316500px;}
.x92{left:261.618000px;}
.x7e{left:268.173000px;}
.x77{left:274.575000px;}
.x82{left:276.790500px;}
.x5c{left:288.420000px;}
.x38{left:290.070000px;}
.x94{left:294.780000px;}
.x8f{left:299.422500px;}
.x9a{left:302.446500px;}
.x54{left:305.290500px;}
.x93{left:307.629000px;}
.x13{left:310.903500px;}
.x3c{left:317.112000px;}
.x9b{left:324.720000px;}
.x12{left:327.657000px;}
.x63{left:341.697000px;}
.x44{left:343.083000px;}
.x25{left:344.536500px;}
.x2e{left:359.589000px;}
.x2f{left:370.813500px;}
.x95{left:377.058000px;}
.x97{left:382.855500px;}
.x76{left:387.652500px;}
.x64{left:406.938000px;}
.x69{left:409.953000px;}
.x9{left:415.630500px;}
.x4e{left:423.708000px;}
.x1c{left:434.169000px;}
.x5a{left:443.907000px;}
.x37{left:445.138500px;}
.x5b{left:449.481000px;}
.x5d{left:453.139500px;}
.x49{left:470.182500px;}
.x4f{left:471.798000px;}
.x3a{left:476.136000px;}
.xb6{left:479.658000px;}
.x1b{left:483.406500px;}
.x16{left:489.784500px;}
.x14{left:495.907500px;}
.x9d{left:497.872500px;}
.x23{left:504.964500px;}
.x9e{left:509.656500px;}
.x15{left:513.723000px;}
.x85{left:530.478000px;}
.x7b{left:533.281500px;}
.x31{left:561.558000px;}
.xbb{left:563.074500px;}
.x1d{left:567.892500px;}
.x24{left:569.679000px;}
.x30{left:570.997500px;}
.xba{left:572.598000px;}
.x78{left:579.448500px;}
.xc0{left:582.300000px;}
.xae{left:593.871000px;}
.x9f{left:599.179500px;}
.xb9{left:600.990000px;}
.xbf{left:607.185000px;}
.x47{left:609.903000px;}
.x4{left:611.092500px;}
.x39{left:617.215500px;}
.x42{left:621.228000px;}
.x2b{left:622.275000px;}
.xb7{left:627.562500px;}
.xf{left:629.035500px;}
.x51{left:633.883500px;}
.x8d{left:639.198000px;}
.xe{left:640.813500px;}
.x2c{left:644.980500px;}
.x80{left:648.000000px;}
.x1f{left:650.169000px;}
.x65{left:655.653000px;}
.xbd{left:658.918500px;}
.x3{left:663.136500px;}
.x71{left:664.420500px;}
.x8b{left:665.602500px;}
.xd{left:666.879000px;}
.xc1{left:670.462500px;}
.x40{left:678.784500px;}
.x1a{left:681.037500px;}
.x3d{left:683.886000px;}
.x3e{left:702.127500px;}
.xb8{left:703.395000px;}
.x41{left:711.567000px;}
.x27{left:719.092500px;}
.xbe{left:724.074000px;}
.x8a{left:738.099000px;}
.x9c{left:742.032000px;}
.x3f{left:753.108000px;}
.x43{left:757.893000px;}
.x8c{left:773.602500px;}
.xa9{left:783.808500px;}
.x26{left:792.312000px;}
.x4d{left:810.042000px;}
.x6f{left:814.422000px;}
.xaa{left:818.589000px;}
.x17{left:822.798000px;}
.x18{left:832.791000px;}
.x19{left:854.901000px;}
.xa5{left:857.029500px;}
.xa1{left:868.834500px;}
.x87{left:881.934000px;}
.x2a{left:897.292500px;}
.x29{left:932.074500px;}
.xa4{left:939.910500px;}
.x7a{left:942.294000px;}
.x79{left:947.758500px;}
.x33{left:957.118500px;}
.x86{left:958.326000px;}
.xa7{left:961.951500px;}
.x11{left:965.026500px;}
.x28{left:967.960500px;}
.xa6{left:984.285000px;}
.x4b{left:988.369500px;}
.x4c{left:990.879000px;}
.x50{left:992.367000px;}
.x20{left:994.206000px;}
.x21{left:1001.233500px;}
.x72{left:1008.459000px;}
.x73{left:1015.486500px;}
.xa0{left:1101.208500px;}
.xa2{left:1105.297500px;}
.xa3{left:1127.338500px;}
@media print{
.v5{vertical-align:-55.946667pt;}
.v4{vertical-align:-35.525333pt;}
.v3{vertical-align:-28.576000pt;}
.vf{vertical-align:-27.514667pt;}
.vb{vertical-align:-24.058667pt;}
.v12{vertical-align:-22.981333pt;}
.v2{vertical-align:-21.168000pt;}
.v10{vertical-align:-19.045333pt;}
.v13{vertical-align:-18.144000pt;}
.vc{vertical-align:-12.997333pt;}
.va{vertical-align:-9.221333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.792000pt;}
.v11{vertical-align:23.888000pt;}
.v9{vertical-align:34.618667pt;}
.ve{vertical-align:45.765333pt;}
.vd{vertical-align:48.394667pt;}
.v7{vertical-align:52.762667pt;}
.v8{vertical-align:56.304000pt;}
.v6{vertical-align:61.834667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.005902pt;}
.ls4d{letter-spacing:0.010266pt;}
.ls11{letter-spacing:0.029189pt;}
.ls10{letter-spacing:0.029803pt;}
.lsc{letter-spacing:0.034523pt;}
.lse{letter-spacing:0.035136pt;}
.ls22{letter-spacing:0.042667pt;}
.ls16{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.067307pt;}
.ls13{letter-spacing:0.067989pt;}
.lsf{letter-spacing:0.073323pt;}
.ls48{letter-spacing:0.074667pt;}
.ls39{letter-spacing:0.077820pt;}
.ls53{letter-spacing:0.090709pt;}
.ls2a{letter-spacing:0.094337pt;}
.ls45{letter-spacing:0.101152pt;}
.ls41{letter-spacing:0.103509pt;}
.ls4f{letter-spacing:0.105390pt;}
.ls4a{letter-spacing:0.106736pt;}
.ls4{letter-spacing:0.111071pt;}
.ls19{letter-spacing:0.117333pt;}
.ls8{letter-spacing:0.137029pt;}
.ls1b{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.147285pt;}
.ls12{letter-spacing:0.152619pt;}
.ls4e{letter-spacing:0.157065pt;}
.lsa{letter-spacing:0.160635pt;}
.ls6{letter-spacing:0.180688pt;}
.ls4c{letter-spacing:0.206334pt;}
.ls2e{letter-spacing:0.206611pt;}
.ls52{letter-spacing:0.272219pt;}
.ls2b{letter-spacing:0.290765pt;}
.lsb{letter-spacing:0.309968pt;}
.ls31{letter-spacing:0.319293pt;}
.ls3f{letter-spacing:0.319636pt;}
.ls3d{letter-spacing:0.323171pt;}
.ls3c{letter-spacing:0.352577pt;}
.ls3e{letter-spacing:0.359376pt;}
.ls3a{letter-spacing:0.394950pt;}
.ls34{letter-spacing:0.408592pt;}
.ls33{letter-spacing:0.413912pt;}
.ls30{letter-spacing:0.437528pt;}
.ls32{letter-spacing:0.441754pt;}
.ls2d{letter-spacing:0.466056pt;}
.ls35{letter-spacing:0.498766pt;}
.ls3b{letter-spacing:0.519456pt;}
.ls38{letter-spacing:0.520108pt;}
.ls36{letter-spacing:0.524761pt;}
.ls29{letter-spacing:0.571854pt;}
.ls2f{letter-spacing:0.623046pt;}
.ls37{letter-spacing:0.635376pt;}
.ls2c{letter-spacing:0.816017pt;}
.ls40{letter-spacing:17.561520pt;}
.ls14{letter-spacing:18.746667pt;}
.ls15{letter-spacing:23.434667pt;}
.ls2{letter-spacing:29.054853pt;}
.ls1c{letter-spacing:29.482667pt;}
.ls49{letter-spacing:35.013333pt;}
.ls1d{letter-spacing:37.512192pt;}
.ls43{letter-spacing:37.949653pt;}
.ls1{letter-spacing:38.908720pt;}
.ls18{letter-spacing:39.020928pt;}
.ls47{letter-spacing:42.720000pt;}
.ls17{letter-spacing:43.790059pt;}
.ls25{letter-spacing:44.422144pt;}
.ls42{letter-spacing:44.598187pt;}
.ls27{letter-spacing:45.471744pt;}
.ls1a{letter-spacing:48.958059pt;}
.ls1e{letter-spacing:51.658795pt;}
.ls24{letter-spacing:52.763477pt;}
.ls23{letter-spacing:52.790144pt;}
.ls21{letter-spacing:52.816811pt;}
.ls20{letter-spacing:52.843477pt;}
.ls1f{letter-spacing:52.870144pt;}
.ls26{letter-spacing:53.408811pt;}
.ls28{letter-spacing:59.685077pt;}
.ls51{letter-spacing:62.522400pt;}
.ls46{letter-spacing:91.673467pt;}
.ls5{letter-spacing:97.892715pt;}
.ls50{letter-spacing:107.728747pt;}
.ls7{letter-spacing:279.243301pt;}
.ls44{letter-spacing:924.331301pt;}
.ls9{letter-spacing:1051.772658pt;}
.ws22{word-spacing:-57.600000pt;}
.ws3{word-spacing:-55.462507pt;}
.ws4{word-spacing:-44.377493pt;}
.ws5{word-spacing:-27.751360pt;}
.ws2c{word-spacing:-26.889643pt;}
.wsf{word-spacing:-26.592000pt;}
.ws34{word-spacing:-25.614549pt;}
.ws39{word-spacing:-24.960000pt;}
.ws4a{word-spacing:-24.756085pt;}
.ws46{word-spacing:-24.738293pt;}
.ws42{word-spacing:-24.610784pt;}
.ws4b{word-spacing:-23.675136pt;}
.ws10{word-spacing:-23.618128pt;}
.wsa{word-spacing:-23.584427pt;}
.ws47{word-spacing:-23.153173pt;}
.ws48{word-spacing:-23.136533pt;}
.ws43{word-spacing:-22.999253pt;}
.ws8{word-spacing:-22.497984pt;}
.ws19{word-spacing:-20.472661pt;}
.ws15{word-spacing:-20.462283pt;}
.ws18{word-spacing:-19.147093pt;}
.ws14{word-spacing:-19.137387pt;}
.ws20{word-spacing:-18.684565pt;}
.ws3b{word-spacing:-18.230869pt;}
.ws40{word-spacing:-17.781621pt;}
.ws3f{word-spacing:-17.780139pt;}
.ws1c{word-spacing:-17.495573pt;}
.ws1e{word-spacing:-17.075872pt;}
.ws6{word-spacing:-16.627520pt;}
.ws1a{word-spacing:-16.614763pt;}
.ws16{word-spacing:-16.607349pt;}
.ws1{word-spacing:-16.077013pt;}
.ws2a{word-spacing:-15.554656pt;}
.ws35{word-spacing:-15.410837pt;}
.ws25{word-spacing:-15.376736pt;}
.ws27{word-spacing:-14.278080pt;}
.ws12{word-spacing:-11.685333pt;}
.ws36{word-spacing:-9.601749pt;}
.ws0{word-spacing:-9.285120pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:2.453979pt;}
.ws1b{word-spacing:15.762666pt;}
.ws1d{word-spacing:15.763454pt;}
.ws13{word-spacing:17.064858pt;}
.ws17{word-spacing:17.077324pt;}
.ws49{word-spacing:38.785418pt;}
.ws45{word-spacing:38.790795pt;}
.ws3e{word-spacing:54.738466pt;}
.ws1f{word-spacing:88.967147pt;}
.ws41{word-spacing:98.635973pt;}
.ws44{word-spacing:132.566158pt;}
.ws2f{word-spacing:136.010667pt;}
.ws7{word-spacing:142.043260pt;}
.ws23{word-spacing:142.048593pt;}
.wsb{word-spacing:152.181803pt;}
.ws3d{word-spacing:153.289175pt;}
.ws3c{word-spacing:153.294515pt;}
.ws2d{word-spacing:210.890667pt;}
.ws26{word-spacing:294.711499pt;}
.ws29{word-spacing:294.716832pt;}
.ws9{word-spacing:332.624725pt;}
.ws32{word-spacing:344.042667pt;}
.ws30{word-spacing:349.322667pt;}
.ws31{word-spacing:386.570667pt;}
.ws3a{word-spacing:512.309173pt;}
.ws21{word-spacing:542.645824pt;}
.wsd{word-spacing:892.390631pt;}
.ws28{word-spacing:926.788688pt;}
.ws37{word-spacing:948.688000pt;}
.ws38{word-spacing:979.232000pt;}
.wsc{word-spacing:989.421056pt;}
.ws2e{word-spacing:1029.040000pt;}
.ws33{word-spacing:1082.416000pt;}
.ws2b{word-spacing:1102.689616pt;}
.ws24{word-spacing:1232.089663pt;}
.wse{word-spacing:1892.900366pt;}
._9{margin-left:-2314.494677pt;}
._38{margin-left:-2189.424538pt;}
._f{margin-left:-2043.393038pt;}
._2b{margin-left:-1838.058277pt;}
._1a{margin-left:-1630.191632pt;}
._26{margin-left:-1589.490592pt;}
._2f{margin-left:-1444.544949pt;}
._16{margin-left:-1387.792368pt;}
._2d{margin-left:-1344.172456pt;}
._23{margin-left:-1272.578933pt;}
._1b{margin-left:-1264.982235pt;}
._37{margin-left:-1173.596320pt;}
._44{margin-left:-1147.793984pt;}
._27{margin-left:-1011.382501pt;}
._35{margin-left:-918.276224pt;}
._21{margin-left:-903.893488pt;}
._3d{margin-left:-857.350667pt;}
._39{margin-left:-728.262483pt;}
._2a{margin-left:-696.491253pt;}
._19{margin-left:-639.330955pt;}
._3b{margin-left:-617.168522pt;}
._24{margin-left:-608.119917pt;}
._17{margin-left:-603.430928pt;}
._3a{margin-left:-440.903791pt;}
._40{margin-left:-427.169259pt;}
._d{margin-left:-368.098309pt;}
._43{margin-left:-366.116267pt;}
._2c{margin-left:-337.307632pt;}
._10{margin-left:-318.497099pt;}
._22{margin-left:-238.562544pt;}
._5{margin-left:-154.338768pt;}
._8{margin-left:-18.038384pt;}
._b{margin-left:-15.785483pt;}
._36{margin-left:-13.753477pt;}
._e{margin-left:-11.777104pt;}
._12{margin-left:-10.549200pt;}
._15{margin-left:-8.534133pt;}
._2{margin-left:-6.804405pt;}
._4{margin-left:-5.119616pt;}
._6{margin-left:-3.901072pt;}
._0{margin-left:-2.560960pt;}
._1{margin-left:-1.280480pt;}
._3{width:1.051189pt;}
._7{width:2.495568pt;}
._18{width:3.413653pt;}
._14{width:26.970667pt;}
._3f{width:37.975002pt;}
._1f{width:53.491560pt;}
._1d{width:58.099090pt;}
._13{width:60.526208pt;}
._3c{width:66.857707pt;}
._2e{width:76.206389pt;}
._1e{width:84.844085pt;}
._c{width:89.658240pt;}
._1c{width:92.419453pt;}
._3e{width:102.617252pt;}
._20{width:111.935068pt;}
._41{width:116.941979pt;}
._42{width:130.645277pt;}
._34{width:191.248000pt;}
._28{width:339.330413pt;}
._31{width:394.384000pt;}
._11{width:696.827367pt;}
._30{width:746.543616pt;}
._33{width:810.160000pt;}
._32{width:902.544480pt;}
._29{width:1184.352000pt;}
._25{width:1372.712633pt;}
._a{width:2421.433728pt;}
.fs29{font-size:34.538667pt;}
.fs2a{font-size:35.680000pt;}
.fs3{font-size:35.712000pt;}
.fsa{font-size:48.074667pt;}
.fs20{font-size:51.360000pt;}
.fs25{font-size:53.365333pt;}
.fs1f{font-size:55.312000pt;}
.fs27{font-size:55.434667pt;}
.fs21{font-size:55.952000pt;}
.fs28{font-size:56.032000pt;}
.fs16{font-size:56.576000pt;}
.fs18{font-size:59.738667pt;}
.fs1a{font-size:59.765333pt;}
.fs2b{font-size:60.320000pt;}
.fs1c{font-size:61.376000pt;}
.fs1d{font-size:61.424000pt;}
.fs2{font-size:61.834667pt;}
.fs12{font-size:62.976000pt;}
.fs14{font-size:63.509333pt;}
.fs9{font-size:63.952000pt;}
.fs2d{font-size:63.957333pt;}
.fs2e{font-size:63.962667pt;}
.fs2c{font-size:65.578667pt;}
.fs1e{font-size:67.210667pt;}
.fs1b{font-size:67.290667pt;}
.fsf{font-size:69.376000pt;}
.fs17{font-size:73.605333pt;}
.fs19{font-size:73.642667pt;}
.fs10{font-size:74.682667pt;}
.fse{font-size:79.973333pt;}
.fsb{font-size:80.928000pt;}
.fs15{font-size:85.264000pt;}
.fs30{font-size:88.458667pt;}
.fs2f{font-size:88.528000pt;}
.fs31{font-size:88.986667pt;}
.fs32{font-size:89.050667pt;}
.fsd{font-size:90.709333pt;}
.fs26{font-size:92.138667pt;}
.fs11{font-size:95.008000pt;}
.fs4{font-size:96.000000pt;}
.fs24{font-size:96.725333pt;}
.fs13{font-size:99.146667pt;}
.fs8{font-size:101.290667pt;}
.fs6{font-size:106.736000pt;}
.fs1{font-size:117.317333pt;}
.fs0{font-size:128.048000pt;}
.fs23{font-size:138.634667pt;}
.fs22{font-size:149.365333pt;}
.fsc{font-size:159.952000pt;}
.fs5{font-size:170.682667pt;}
.fs7{font-size:213.317333pt;}
.y122{bottom:-0.037333pt;}
.yb9{bottom:-0.022667pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:0.002667pt;}
.yaa{bottom:0.010667pt;}
.y1{bottom:0.037333pt;}
.y17c{bottom:1.213333pt;}
.y199{bottom:1.678667pt;}
.y18a{bottom:1.705333pt;}
.y179{bottom:2.565333pt;}
.ycf{bottom:4.180000pt;}
.y7{bottom:6.765333pt;}
.y145{bottom:6.804000pt;}
.y14f{bottom:6.841333pt;}
.y11a{bottom:8.893333pt;}
.yfc{bottom:9.373333pt;}
.y112{bottom:9.412000pt;}
.y6b{bottom:10.092000pt;}
.ydd{bottom:11.510667pt;}
.y170{bottom:13.940000pt;}
.yf6{bottom:14.310667pt;}
.y10c{bottom:14.349333pt;}
.y17b{bottom:20.954667pt;}
.yb8{bottom:21.348000pt;}
.yce{bottom:21.953333pt;}
.y9e{bottom:23.310667pt;}
.ya9{bottom:23.330667pt;}
.y52{bottom:28.082667pt;}
.y144{bottom:28.573333pt;}
.y14e{bottom:28.612000pt;}
.y189{bottom:28.894667pt;}
.y198{bottom:29.144000pt;}
.y53{bottom:29.405333pt;}
.y12a{bottom:29.442667pt;}
.y5a{bottom:29.972000pt;}
.y9c{bottom:30.009333pt;}
.yfb{bottom:31.594667pt;}
.y111{bottom:31.633333pt;}
.y6a{bottom:31.861333pt;}
.y15c{bottom:34.066667pt;}
.yb6{bottom:34.432000pt;}
.yd0{bottom:35.576000pt;}
.y17d{bottom:35.760000pt;}
.yba{bottom:39.686667pt;}
.y177{bottom:40.494667pt;}
.ya0{bottom:43.312000pt;}
.yab{bottom:43.341333pt;}
.y13d{bottom:43.918667pt;}
.y181{bottom:45.629333pt;}
.y18b{bottom:49.286667pt;}
.y19a{bottom:49.741333pt;}
.y96{bottom:49.928000pt;}
.yb5{bottom:50.012000pt;}
.y136{bottom:53.632000pt;}
.y187{bottom:54.350667pt;}
.y5e{bottom:55.030667pt;}
.y158{bottom:55.661333pt;}
.yd6{bottom:56.494667pt;}
.y171{bottom:56.930667pt;}
.y56{bottom:57.412000pt;}
.y4e{bottom:61.493333pt;}
.y186{bottom:61.530667pt;}
.ycc{bottom:61.985333pt;}
.y4f{bottom:62.854667pt;}
.y9d{bottom:63.117333pt;}
.ya8{bottom:63.268000pt;}
.y1a4{bottom:63.473333pt;}
.y1a3{bottom:63.501333pt;}
.yf8{bottom:63.858667pt;}
.y10e{bottom:63.897333pt;}
.y2f{bottom:64.630667pt;}
.y11b{bottom:64.968000pt;}
.y184{bottom:65.384000pt;}
.y191{bottom:66.252000pt;}
.ya7{bottom:73.340000pt;}
.yf9{bottom:74.558667pt;}
.y10f{bottom:74.597333pt;}
.y5b{bottom:75.174667pt;}
.yd1{bottom:75.305333pt;}
.y82{bottom:75.930667pt;}
.yc8{bottom:76.364000pt;}
.y51{bottom:77.708000pt;}
.y190{bottom:79.813333pt;}
.y50{bottom:81.336000pt;}
.yda{bottom:81.597333pt;}
.y104{bottom:82.582667pt;}
.y13c{bottom:82.998667pt;}
.y43{bottom:87.232000pt;}
.yec{bottom:87.609333pt;}
.y10a{bottom:88.214667pt;}
.yb1{bottom:88.380000pt;}
.y15a{bottom:92.030667pt;}
.yf7{bottom:92.089333pt;}
.y10d{bottom:92.128000pt;}
.y123{bottom:93.025333pt;}
.yc3{bottom:94.702667pt;}
.ybb{bottom:97.784000pt;}
.yb7{bottom:100.081333pt;}
.y172{bottom:101.216000pt;}
.yd7{bottom:101.445333pt;}
.y46{bottom:101.669333pt;}
.y5d{bottom:103.408000pt;}
.y185{bottom:105.033333pt;}
.y135{bottom:105.373333pt;}
.y1a0{bottom:106.373333pt;}
.y11f{bottom:107.013333pt;}
.ycb{bottom:107.264000pt;}
.y129{bottom:107.377333pt;}
.y72{bottom:108.094667pt;}
.y19b{bottom:109.833333pt;}
.y18e{bottom:110.461333pt;}
.y17e{bottom:111.009333pt;}
.y16d{bottom:111.156000pt;}
.yc0{bottom:111.525333pt;}
.y197{bottom:111.797333pt;}
.y2c{bottom:112.214667pt;}
.y3e{bottom:114.142667pt;}
.y188{bottom:114.858667pt;}
.y192{bottom:115.573333pt;}
.yd2{bottom:116.105333pt;}
.y156{bottom:116.108000pt;}
.y81{bottom:116.674667pt;}
.y196{bottom:117.258667pt;}
.y42{bottom:118.261333pt;}
.ya4{bottom:118.302667pt;}
.yb0{bottom:118.369333pt;}
.y1a7{bottom:118.402667pt;}
.y159{bottom:120.445333pt;}
.y13b{bottom:122.078667pt;}
.y11c{bottom:123.612000pt;}
.ydb{bottom:124.473333pt;}
.y141{bottom:125.556000pt;}
.y103{bottom:126.085333pt;}
.y67{bottom:128.920000pt;}
.yac{bottom:130.056000pt;}
.yfa{bottom:130.856000pt;}
.y110{bottom:130.894667pt;}
.y1a2{bottom:132.134667pt;}
.y58{bottom:133.342667pt;}
.y109{bottom:133.493333pt;}
.y2b{bottom:133.985333pt;}
.y183{bottom:134.461333pt;}
.y54{bottom:134.476000pt;}
.y9b{bottom:134.665333pt;}
.y16c{bottom:137.046667pt;}
.yef{bottom:137.650667pt;}
.yb2{bottom:143.396000pt;}
.y173{bottom:145.501333pt;}
.ya1{bottom:146.677333pt;}
.y34{bottom:149.216000pt;}
.y4{bottom:149.594667pt;}
.yff{bottom:151.030667pt;}
.yc4{bottom:151.234667pt;}
.y5c{bottom:151.786667pt;}
.y69{bottom:152.316000pt;}
.y15d{bottom:154.997333pt;}
.y1ad{bottom:155.414667pt;}
.y154{bottom:155.717333pt;}
.y14d{bottom:156.473333pt;}
.y134{bottom:157.116000pt;}
.y114{bottom:157.229333pt;}
.ybc{bottom:157.346667pt;}
.y1a5{bottom:157.896000pt;}
.yd3{bottom:157.942667pt;}
.y18c{bottom:159.728000pt;}
.y155{bottom:161.386667pt;}
.y1d{bottom:162.557333pt;}
.y119{bottom:163.198667pt;}
.y118{bottom:164.825333pt;}
.ydf{bottom:165.581333pt;}
.y121{bottom:165.657333pt;}
.y16b{bottom:165.733333pt;}
.y17a{bottom:166.488000pt;}
.y102{bottom:166.829333pt;}
.yd8{bottom:167.348000pt;}
.y19c{bottom:171.628000pt;}
.yeb{bottom:171.780000pt;}
.y66{bottom:174.198667pt;}
.y105{bottom:174.992000pt;}
.y124{bottom:178.381333pt;}
.y108{bottom:178.772000pt;}
.yf4{bottom:180.434667pt;}
.y11d{bottom:182.214667pt;}
.y16f{bottom:182.890667pt;}
.y193{bottom:183.545333pt;}
.y70{bottom:184.668000pt;}
.yee{bottom:185.990667pt;}
.y13e{bottom:186.822667pt;}
.y7e{bottom:186.898667pt;}
.y17f{bottom:187.524000pt;}
.y8e{bottom:187.616000pt;}
.yc2{bottom:187.932000pt;}
.y41{bottom:188.372000pt;}
.y3f{bottom:188.448000pt;}
.y3d{bottom:188.485333pt;}
.y174{bottom:191.042667pt;}
.y16a{bottom:193.021333pt;}
.y14c{bottom:193.209333pt;}
.y1c{bottom:195.402667pt;}
.y33{bottom:197.594667pt;}
.y15b{bottom:198.186667pt;}
.ya5{bottom:198.306667pt;}
.yb4{bottom:198.413333pt;}
.yd4{bottom:198.744000pt;}
.y120{bottom:198.772000pt;}
.y153{bottom:199.220000pt;}
.yfe{bottom:199.408000pt;}
.y2e{bottom:200.013333pt;}
.ye{bottom:200.693333pt;}
.y1ac{bottom:200.730667pt;}
.y113{bottom:202.508000pt;}
.y14{bottom:202.658667pt;}
.ycd{bottom:204.169333pt;}
.y117{bottom:206.968000pt;}
.y101{bottom:207.572000pt;}
.yea{bottom:208.101333pt;}
.yc5{bottom:209.330667pt;}
.y55{bottom:210.330667pt;}
.ydc{bottom:213.370667pt;}
.yde{bottom:213.960000pt;}
.y65{bottom:216.340000pt;}
.y7d{bottom:216.568000pt;}
.ybd{bottom:216.960000pt;}
.y8d{bottom:217.285333pt;}
.yad{bottom:220.132000pt;}
.y157{bottom:220.798667pt;}
.y107{bottom:224.050667pt;}
.y169{bottom:224.882667pt;}
.y140{bottom:226.809333pt;}
.y13a{bottom:228.425333pt;}
.y14b{bottom:229.946667pt;}
.yf3{bottom:232.177333pt;}
.y38{bottom:232.592000pt;}
.yd9{bottom:233.252000pt;}
.y19d{bottom:233.422667pt;}
.y60{bottom:233.993333pt;}
.yed{bottom:234.369333pt;}
.yc9{bottom:235.298667pt;}
.y175{bottom:235.328000pt;}
.y9a{bottom:236.674667pt;}
.y2d{bottom:237.505333pt;}
.y130{bottom:237.733333pt;}
.y128{bottom:238.289333pt;}
.yd5{bottom:239.510667pt;}
.y152{bottom:239.962667pt;}
.y1b{bottom:240.681333pt;}
.y11e{bottom:240.858667pt;}
.y32{bottom:242.873333pt;}
.y137{bottom:243.065333pt;}
.y4d{bottom:243.590667pt;}
.yd{bottom:245.972000pt;}
.y7c{bottom:246.237333pt;}
.y95{bottom:246.274667pt;}
.y8c{bottom:246.954667pt;}
.ye9{bottom:247.181333pt;}
.yfd{bottom:247.786667pt;}
.y13{bottom:247.937333pt;}
.y68{bottom:249.070667pt;}
.y116{bottom:249.109333pt;}
.y100{bottom:251.074667pt;}
.y194{bottom:251.518667pt;}
.ya2{bottom:251.642667pt;}
.y16e{bottom:252.246667pt;}
.y3{bottom:253.493333pt;}
.y127{bottom:254.846667pt;}
.y64{bottom:258.482667pt;}
.y180{bottom:262.774667pt;}
.y125{bottom:263.777333pt;}
.yc6{bottom:265.862667pt;}
.y14a{bottom:266.684000pt;}
.y106{bottom:269.329333pt;}
.y178{bottom:269.453333pt;}
.y1a6{bottom:269.456000pt;}
.y126{bottom:271.444000pt;}
.y18d{bottom:271.910667pt;}
.y15e{bottom:273.206667pt;}
.y7b{bottom:275.905333pt;}
.y47{bottom:276.133333pt;}
.ybe{bottom:276.572000pt;}
.y8b{bottom:276.624000pt;}
.y24{bottom:277.870667pt;}
.y13f{bottom:278.552000pt;}
.y176{bottom:279.573333pt;}
.y27{bottom:279.648000pt;}
.y6f{bottom:279.761333pt;}
.y57{bottom:280.101333pt;}
.y37{bottom:280.970667pt;}
.y12f{bottom:283.012000pt;}
.y151{bottom:283.465333pt;}
.ye3{bottom:284.221333pt;}
.y1a1{bottom:284.925333pt;}
.y182{bottom:284.962667pt;}
.y99{bottom:285.052000pt;}
.y1a{bottom:285.960000pt;}
.ye8{bottom:286.261333pt;}
.y31{bottom:288.152000pt;}
.y1ab{bottom:289.058667pt;}
.y21{bottom:290.305333pt;}
.y1b3{bottom:291.100000pt;}
.y59{bottom:291.250667pt;}
.y1e{bottom:291.553333pt;}
.y1a8{bottom:291.774667pt;}
.y2{bottom:291.893333pt;}
.y12{bottom:293.216000pt;}
.yc{bottom:294.350667pt;}
.y115{bottom:294.388000pt;}
.y4b{bottom:294.425333pt;}
.y49{bottom:294.501333pt;}
.y94{bottom:294.652000pt;}
.y19e{bottom:295.217333pt;}
.y23{bottom:299.641333pt;}
.y28{bottom:299.981333pt;}
.y63{bottom:300.624000pt;}
.y26{bottom:301.417333pt;}
.y149{bottom:303.421333pt;}
.y7a{bottom:305.574667pt;}
.y8a{bottom:306.293333pt;}
.yf{bottom:306.444000pt;}
.y4a{bottom:309.921333pt;}
.yae{bottom:310.156000pt;}
.y138{bottom:311.380000pt;}
.ye2{bottom:311.433333pt;}
.y20{bottom:312.076000pt;}
.y80{bottom:312.908000pt;}
.y7f{bottom:312.945333pt;}
.yca{bottom:313.249333pt;}
.y90{bottom:313.625333pt;}
.y8f{bottom:313.664000pt;}
.y10b{bottom:313.850667pt;}
.yf5{bottom:313.889333pt;}
.y161{bottom:315.232000pt;}
.yc1{bottom:316.285333pt;}
.y165{bottom:316.682667pt;}
.yf1{bottom:317.360000pt;}
.y167{bottom:319.222667pt;}
.y195{bottom:319.490667pt;}
.y22{bottom:321.412000pt;}
.yc7{bottom:322.393333pt;}
.y25{bottom:323.188000pt;}
.y162{bottom:325.174667pt;}
.ye7{bottom:325.342667pt;}
.y48{bottom:325.530667pt;}
.y150{bottom:326.968000pt;}
.y6e{bottom:328.138667pt;}
.y143{bottom:328.933333pt;}
.y36{bottom:329.348000pt;}
.y12e{bottom:330.293333pt;}
.y19{bottom:331.238667pt;}
.y1b2{bottom:331.465333pt;}
.y98{bottom:333.430667pt;}
.y1aa{bottom:334.337333pt;}
.y79{bottom:335.244000pt;}
.y89{bottom:335.962667pt;}
.y30{bottom:336.529333pt;}
.ybf{bottom:337.700000pt;}
.y11{bottom:338.494667pt;}
.y15f{bottom:338.512000pt;}
.ye1{bottom:338.646667pt;}
.yb{bottom:339.629333pt;}
.y166{bottom:339.834667pt;}
.y148{bottom:340.157333pt;}
.y62{bottom:342.765333pt;}
.y93{bottom:343.030667pt;}
.y133{bottom:345.638667pt;}
.y18f{bottom:348.365333pt;}
.ya6{bottom:351.646667pt;}
.ya3{bottom:356.661333pt;}
.y19f{bottom:357.012000pt;}
.y97{bottom:358.753333pt;}
.y5f{bottom:359.886667pt;}
.y142{bottom:359.962667pt;}
.ye6{bottom:361.664000pt;}
.y61{bottom:362.356000pt;}
.yb3{bottom:363.518667pt;}
.y78{bottom:364.913333pt;}
.y88{bottom:365.632000pt;}
.ye0{bottom:365.858667pt;}
.y17{bottom:367.294667pt;}
.y1b1{bottom:371.830667pt;}
.y3a{bottom:372.252000pt;}
.y6d{bottom:376.517333pt;}
.y147{bottom:376.894667pt;}
.y35{bottom:378.369333pt;}
.y1a9{bottom:379.616000pt;}
.y18{bottom:381.808000pt;}
.y164{bottom:381.830667pt;}
.y12d{bottom:382.034667pt;}
.y139{bottom:384.576000pt;}
.ya{bottom:384.908000pt;}
.y132{bottom:387.477333pt;}
.y92{bottom:391.408000pt;}
.yf0{bottom:392.573333pt;}
.y4c{bottom:393.412000pt;}
.y77{bottom:394.582667pt;}
.y87{bottom:395.301333pt;}
.y2a{bottom:396.510667pt;}
.y71{bottom:397.870667pt;}
.ye5{bottom:397.985333pt;}
.yaf{bottom:398.525333pt;}
.y16{bottom:401.688000pt;}
.y160{bottom:403.817333pt;}
.y1b0{bottom:412.196000pt;}
.y146{bottom:413.632000pt;}
.y45{bottom:414.728000pt;}
.y29{bottom:418.281333pt;}
.y74{bottom:421.757333pt;}
.y73{bottom:421.909333pt;}
.y84{bottom:422.476000pt;}
.y83{bottom:422.626667pt;}
.y76{bottom:424.252000pt;}
.y6c{bottom:424.894667pt;}
.y86{bottom:424.970667pt;}
.y9{bottom:430.186667pt;}
.y40{bottom:430.261333pt;}
.y131{bottom:432.416000pt;}
.y12c{bottom:433.777333pt;}
.ye4{bottom:434.305333pt;}
.y15{bottom:436.082667pt;}
.yf2{bottom:436.117333pt;}
.y168{bottom:438.937333pt;}
.y91{bottom:439.786667pt;}
.y163{bottom:444.733333pt;}
.y44{bottom:445.757333pt;}
.y39{bottom:447.465333pt;}
.y1af{bottom:452.561333pt;}
.y75{bottom:453.921333pt;}
.y85{bottom:454.640000pt;}
.y3b{bottom:491.009333pt;}
.y10{bottom:519.648000pt;}
.y1ae{bottom:519.685333pt;}
.y3c{bottom:520.705333pt;}
.y12b{bottom:521.726667pt;}
.y8{bottom:522.369333pt;}
.y1f{bottom:523.805333pt;}
.y6{bottom:546.104000pt;}
.y5{bottom:567.232000pt;}
.h49{height:25.593628pt;}
.h4a{height:25.701040pt;}
.h4b{height:32.603600pt;}
.h4d{height:32.608933pt;}
.h42{height:40.824480pt;}
.h37{height:40.986192pt;}
.h47{height:41.077088pt;}
.h3b{height:41.460432pt;}
.h48{height:41.519712pt;}
.h3c{height:42.803280pt;}
.h26{height:44.266352pt;}
.h2a{height:44.286112pt;}
.h4c{height:44.650937pt;}
.h31{height:45.515184pt;}
.h2f{height:45.540097pt;}
.h2e{height:45.554784pt;}
.h30{height:45.588346pt;}
.h11{height:46.122373pt;}
.h10{height:46.127707pt;}
.h5{height:47.303520pt;}
.h51{height:47.392384pt;}
.h52{height:47.451134pt;}
.h53{height:47.470826pt;}
.h4f{height:48.593792pt;}
.hd{height:48.923280pt;}
.he{height:48.987867pt;}
.h33{height:49.803104pt;}
.h2c{height:49.862384pt;}
.h34{height:51.416160pt;}
.h2d{height:51.477360pt;}
.hf{height:52.518344pt;}
.h43{height:52.523677pt;}
.h24{height:54.541552pt;}
.h28{height:54.569216pt;}
.h25{height:56.308080pt;}
.h29{height:56.336640pt;}
.h1b{height:57.132240pt;}
.h3f{height:59.199010pt;}
.h12{height:59.967648pt;}
.h18{height:61.179600pt;}
.h21{height:61.783094pt;}
.h20{height:64.780656pt;}
.h55{height:65.599248pt;}
.h58{height:65.939120pt;}
.h5c{height:66.041280pt;}
.h35{height:67.146167pt;}
.h56{height:67.730689pt;}
.h5b{height:68.176925pt;}
.h5a{height:68.185619pt;}
.h59{height:68.196857pt;}
.h45{height:68.274752pt;}
.h46{height:68.452987pt;}
.h14{height:69.392640pt;}
.h1f{height:69.562500pt;}
.h1c{height:70.400928pt;}
.h40{height:71.062500pt;}
.h41{height:71.673472pt;}
.h1e{height:72.937500pt;}
.h6{height:73.440000pt;}
.hb{height:77.487360pt;}
.h8{height:79.009656pt;}
.h19{height:81.094344pt;}
.ha{height:81.653040pt;}
.h39{height:83.823093pt;}
.h17{height:85.067600pt;}
.h38{height:89.380859pt;}
.h4{height:89.747760pt;}
.h3{height:93.660109pt;}
.hc{height:97.956720pt;}
.h3e{height:106.055520pt;}
.h1a{height:106.400640pt;}
.h3d{height:114.264480pt;}
.h13{height:122.363280pt;}
.h22{height:123.678260pt;}
.h7{height:130.572240pt;}
.h15{height:131.227307pt;}
.h16{height:131.531307pt;}
.h1d{height:132.151200pt;}
.h9{height:163.187760pt;}
.h36{height:163.200000pt;}
.h44{height:253.870667pt;}
.h32{height:268.798667pt;}
.h3a{height:288.000000pt;}
.h4e{height:298.544000pt;}
.h50{height:307.200000pt;}
.h54{height:363.628000pt;}
.h57{height:372.472000pt;}
.h2b{height:374.400000pt;}
.h23{height:408.340000pt;}
.h27{height:411.854667pt;}
.h2{height:595.161333pt;}
.h0{height:595.200000pt;}
.h1{height:595.333333pt;}
.w8{width:281.272000pt;}
.wd{width:336.000000pt;}
.wa{width:410.872000pt;}
.w7{width:414.726667pt;}
.w6{width:416.654667pt;}
.wb{width:418.544000pt;}
.wc{width:431.961333pt;}
.w5{width:437.744000pt;}
.w4{width:437.857333pt;}
.we{width:926.814667pt;}
.wf{width:936.414667pt;}
.w9{width:951.949333pt;}
.w3{width:1042.280000pt;}
.w2{width:1057.889333pt;}
.w0{width:1057.927559pt;}
.w1{width:1058.000000pt;}
.x96{left:-587.590667pt;}
.x91{left:-195.224000pt;}
.x0{left:0.000000pt;}
.x75{left:1.798667pt;}
.x7d{left:8.832000pt;}
.xb0{left:12.330667pt;}
.x59{left:13.254667pt;}
.x5{left:15.269333pt;}
.x6e{left:17.780000pt;}
.x62{left:19.842667pt;}
.x90{left:20.732000pt;}
.x58{left:23.272000pt;}
.x81{left:25.357333pt;}
.xad{left:26.517333pt;}
.x61{left:29.025333pt;}
.x68{left:31.994667pt;}
.x6d{left:36.586667pt;}
.x6b{left:37.624000pt;}
.xb4{left:38.797333pt;}
.x57{left:43.252000pt;}
.xac{left:45.476000pt;}
.x60{left:47.340000pt;}
.x67{left:50.293333pt;}
.x55{left:61.580000pt;}
.x5e{left:64.141333pt;}
.x1{left:66.784000pt;}
.x2{left:70.564000pt;}
.xb3{left:72.501333pt;}
.xaf{left:76.333333pt;}
.x7f{left:78.596000pt;}
.x6a{left:81.410667pt;}
.x6c{left:82.601333pt;}
.xb2{left:84.962667pt;}
.x83{left:86.240000pt;}
.x46{left:87.193333pt;}
.x53{left:90.406667pt;}
.xa{left:95.622667pt;}
.xab{left:97.057333pt;}
.xb1{left:99.689333pt;}
.x74{left:103.134667pt;}
.x6{left:105.222667pt;}
.x7c{left:107.036000pt;}
.x7{left:110.400000pt;}
.x35{left:115.200000pt;}
.x1e{left:121.738667pt;}
.xb{left:123.817333pt;}
.x2d{left:126.122667pt;}
.x8{left:127.672000pt;}
.x48{left:129.600000pt;}
.x36{left:132.472000pt;}
.x98{left:133.760000pt;}
.x89{left:139.822667pt;}
.xbc{left:141.330667pt;}
.xc{left:143.962667pt;}
.x45{left:148.800000pt;}
.x10{left:149.745333pt;}
.x52{left:151.974667pt;}
.x22{left:155.188000pt;}
.x32{left:163.842667pt;}
.x3b{left:167.773333pt;}
.x70{left:169.360000pt;}
.x84{left:178.393333pt;}
.x4a{left:188.333333pt;}
.x5f{left:190.784000pt;}
.xb5{left:192.136000pt;}
.x66{left:193.612000pt;}
.xa8{left:198.728000pt;}
.x56{left:199.736000pt;}
.x34{left:212.333333pt;}
.x99{left:213.332000pt;}
.x88{left:217.706667pt;}
.x8e{left:218.948000pt;}
.x92{left:232.549333pt;}
.x7e{left:238.376000pt;}
.x77{left:244.066667pt;}
.x82{left:246.036000pt;}
.x5c{left:256.373333pt;}
.x38{left:257.840000pt;}
.x94{left:262.026667pt;}
.x8f{left:266.153333pt;}
.x9a{left:268.841333pt;}
.x54{left:271.369333pt;}
.x93{left:273.448000pt;}
.x13{left:276.358667pt;}
.x3c{left:281.877333pt;}
.x9b{left:288.640000pt;}
.x12{left:291.250667pt;}
.x63{left:303.730667pt;}
.x44{left:304.962667pt;}
.x25{left:306.254667pt;}
.x2e{left:319.634667pt;}
.x2f{left:329.612000pt;}
.x95{left:335.162667pt;}
.x97{left:340.316000pt;}
.x76{left:344.580000pt;}
.x64{left:361.722667pt;}
.x69{left:364.402667pt;}
.x9{left:369.449333pt;}
.x4e{left:376.629333pt;}
.x1c{left:385.928000pt;}
.x5a{left:394.584000pt;}
.x37{left:395.678667pt;}
.x5b{left:399.538667pt;}
.x5d{left:402.790667pt;}
.x49{left:417.940000pt;}
.x4f{left:419.376000pt;}
.x3a{left:423.232000pt;}
.xb6{left:426.362667pt;}
.x1b{left:429.694667pt;}
.x16{left:435.364000pt;}
.x14{left:440.806667pt;}
.x9d{left:442.553333pt;}
.x23{left:448.857333pt;}
.x9e{left:453.028000pt;}
.x15{left:456.642667pt;}
.x85{left:471.536000pt;}
.x7b{left:474.028000pt;}
.x31{left:499.162667pt;}
.xbb{left:500.510667pt;}
.x1d{left:504.793333pt;}
.x24{left:506.381333pt;}
.x30{left:507.553333pt;}
.xba{left:508.976000pt;}
.x78{left:515.065333pt;}
.xc0{left:517.600000pt;}
.xae{left:527.885333pt;}
.x9f{left:532.604000pt;}
.xb9{left:534.213333pt;}
.xbf{left:539.720000pt;}
.x47{left:542.136000pt;}
.x4{left:543.193333pt;}
.x39{left:548.636000pt;}
.x42{left:552.202667pt;}
.x2b{left:553.133333pt;}
.xb7{left:557.833333pt;}
.xf{left:559.142667pt;}
.x51{left:563.452000pt;}
.x8d{left:568.176000pt;}
.xe{left:569.612000pt;}
.x2c{left:573.316000pt;}
.x80{left:576.000000pt;}
.x1f{left:577.928000pt;}
.x65{left:582.802667pt;}
.xbd{left:585.705333pt;}
.x3{left:589.454667pt;}
.x71{left:590.596000pt;}
.x8b{left:591.646667pt;}
.xd{left:592.781333pt;}
.xc1{left:595.966667pt;}
.x40{left:603.364000pt;}
.x1a{left:605.366667pt;}
.x3d{left:607.898667pt;}
.x3e{left:624.113333pt;}
.xb8{left:625.240000pt;}
.x41{left:632.504000pt;}
.x27{left:639.193333pt;}
.xbe{left:643.621333pt;}
.x8a{left:656.088000pt;}
.x9c{left:659.584000pt;}
.x3f{left:669.429333pt;}
.x43{left:673.682667pt;}
.x8c{left:687.646667pt;}
.xa9{left:696.718667pt;}
.x26{left:704.277333pt;}
.x4d{left:720.037333pt;}
.x6f{left:723.930667pt;}
.xaa{left:727.634667pt;}
.x17{left:731.376000pt;}
.x18{left:740.258667pt;}
.x19{left:759.912000pt;}
.xa5{left:761.804000pt;}
.xa1{left:772.297333pt;}
.x87{left:783.941333pt;}
.x2a{left:797.593333pt;}
.x29{left:828.510667pt;}
.xa4{left:835.476000pt;}
.x7a{left:837.594667pt;}
.x79{left:842.452000pt;}
.x33{left:850.772000pt;}
.x86{left:851.845333pt;}
.xa7{left:855.068000pt;}
.x11{left:857.801333pt;}
.x28{left:860.409333pt;}
.xa6{left:874.920000pt;}
.x4b{left:878.550667pt;}
.x4c{left:880.781333pt;}
.x50{left:882.104000pt;}
.x20{left:883.738667pt;}
.x21{left:889.985333pt;}
.x72{left:896.408000pt;}
.x73{left:902.654667pt;}
.xa0{left:978.852000pt;}
.xa2{left:982.486667pt;}
.xa3{left:1002.078667pt;}
}




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