
    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_8e8af142df7d26941f2ae4a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_83ef68b358d85124c4fdb620.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_e95682c5c613cf6ed848aa83.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.686000;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_4238b65d1ba8a2e871b0701d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.304000;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_fb1c66d8bea5a33d95ec1077.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_fcbddbb4c577c5c78aa8973f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.810000;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_9878a4c62cdcb8d42513f2db.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_edba8e486dcacbfd70affa70.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_a797efadb0687ae1a1558331.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916000;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_5cf038b5e90a4fe37f96a0fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.685000;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_966aa7c73fb9ec62a796b903.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b223a0d3a3b1f8430b784365.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_337c9db2608562b7d10aef42.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.703450;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5073e701f5c9880c795593da.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_014618afc5a2ba71fcf61fd5.woff2')format("woff");}.fff{font-family:fff;line-height:0.686000;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:ff10;src:url('chunks/assets/font_bfac6e42be968f8fa88d0959.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.735000;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:ff11;src:url('chunks/assets/font_5e143cc665452528ebc79737.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b8ae1932e59bd0e307ca848c.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m28{transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245257,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247257,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m0{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);}
.m5{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252258,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252508,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252758,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253008,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253758,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254508,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-26.034521px;}
.v3{vertical-align:-5.976120px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.854457px;}
.v1{vertical-align:26.028521px;}
.ls4{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000031px;}
.ls2{letter-spacing:0.000141px;}
.ls9{letter-spacing:0.000711px;}
.ls16{letter-spacing:0.001002px;}
.lsa{letter-spacing:0.001467px;}
.ls1e{letter-spacing:0.005017px;}
.ls29{letter-spacing:0.005833px;}
.ls3{letter-spacing:0.006141px;}
.ls26{letter-spacing:0.031395px;}
.ls25{letter-spacing:0.039634px;}
.ls27{letter-spacing:0.050174px;}
.ls28{letter-spacing:1.849387px;}
.ls2c{letter-spacing:2.641154px;}
.ls13{letter-spacing:2.641790px;}
.ls30{letter-spacing:2.643932px;}
.ls11{letter-spacing:2.643944px;}
.ls17{letter-spacing:2.644285px;}
.ls7{letter-spacing:2.644645px;}
.ls19{letter-spacing:2.647468px;}
.ls15{letter-spacing:2.647857px;}
.ls2e{letter-spacing:2.649987px;}
.ls2a{letter-spacing:2.650407px;}
.ls1c{letter-spacing:2.650527px;}
.lse{letter-spacing:2.652184px;}
.ls6{letter-spacing:2.654755px;}
.ls10{letter-spacing:2.658184px;}
.lsd{letter-spacing:2.661478px;}
.lsb{letter-spacing:2.668447px;}
.lsc{letter-spacing:2.685186px;}
.ls2b{letter-spacing:2.686180px;}
.ls1b{letter-spacing:2.687021px;}
.lsf{letter-spacing:2.689187px;}
.ls1a{letter-spacing:2.689609px;}
.ls5{letter-spacing:2.689974px;}
.ls14{letter-spacing:2.690470px;}
.ls2f{letter-spacing:2.691413px;}
.ls18{letter-spacing:2.692303px;}
.ls8{letter-spacing:2.692903px;}
.ls12{letter-spacing:2.693323px;}
.ls2d{letter-spacing:2.694701px;}
.ls0{letter-spacing:2.984975px;}
.ls1{letter-spacing:2.990975px;}
.ls23{letter-spacing:74.720026px;}
.ls1f{letter-spacing:76.226056px;}
.ls22{letter-spacing:76.232056px;}
.ls1d{letter-spacing:171.225357px;}
.ls21{letter-spacing:171.231357px;}
.ls20{letter-spacing:193.618404px;}
.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;}
}
.ws6d{word-spacing:-36.072549px;}
.ws4f{word-spacing:-16.139843px;}
.ws72{word-spacing:-15.333576px;}
.ws73{word-spacing:-15.333116px;}
.ws52{word-spacing:-13.449869px;}
.ws5e{word-spacing:-13.428312px;}
.ws90{word-spacing:-12.646273px;}
.wsa2{word-spacing:-11.955389px;}
.ws4e{word-spacing:-10.759865px;}
.ws92{word-spacing:-3.751502px;}
.ws7{word-spacing:-2.689974px;}
.ws4b{word-spacing:-2.636174px;}
.wsc8{word-spacing:-2.391078px;}
.ws4c{word-spacing:-2.313377px;}
.ws7c{word-spacing:-2.151979px;}
.ws76{word-spacing:-1.882982px;}
.wsd1{word-spacing:-1.865041px;}
.ws36{word-spacing:-1.829182px;}
.ws86{word-spacing:-1.775383px;}
.wsd9{word-spacing:-1.673754px;}
.ws49{word-spacing:-1.667784px;}
.wsa{word-spacing:-1.560185px;}
.wsd0{word-spacing:-1.530290px;}
.ws3e{word-spacing:-1.506385px;}
.ws55{word-spacing:-1.452586px;}
.ws9c{word-spacing:-1.291187px;}
.ws8{word-spacing:-1.237388px;}
.wsc7{word-spacing:-1.147717px;}
.wsd6{word-spacing:-1.052074px;}
.ws53{word-spacing:-0.860792px;}
.ws32{word-spacing:-0.806992px;}
.ws64{word-spacing:-0.753193px;}
.ws56{word-spacing:-0.699393px;}
.wsc1{word-spacing:-0.478216px;}
.ws3a{word-spacing:-0.430396px;}
.wsb9{word-spacing:-0.334751px;}
.ws60{word-spacing:-0.322797px;}
.wsb5{word-spacing:-0.286929px;}
.wsd{word-spacing:-0.268997px;}
.wsaf{word-spacing:-0.239108px;}
.ws12{word-spacing:-0.215198px;}
.wsa4{word-spacing:-0.205116px;}
.wsa5{word-spacing:-0.191286px;}
.ws39{word-spacing:-0.180171px;}
.ws1a{word-spacing:-0.161398px;}
.wsaa{word-spacing:-0.143465px;}
.ws97{word-spacing:-0.141268px;}
.ws19{word-spacing:-0.107599px;}
.wsac{word-spacing:-0.095643px;}
.ws2e{word-spacing:-0.076845px;}
.ws2d{word-spacing:-0.066613px;}
.ws5{word-spacing:-0.053799px;}
.ws41{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.047822px;}
.ws6e{word-spacing:-0.035866px;}
.wsdc{word-spacing:-0.003057px;}
.wsbb{word-spacing:-0.000331px;}
.ws1{word-spacing:0.000000px;}
.ws85{word-spacing:0.045782px;}
.wsa7{word-spacing:0.047822px;}
.ws14{word-spacing:0.053799px;}
.wsb0{word-spacing:0.095643px;}
.ws82{word-spacing:0.106611px;}
.ws3{word-spacing:0.107599px;}
.ws81{word-spacing:0.108526px;}
.wsb8{word-spacing:0.112787px;}
.ws20{word-spacing:0.161398px;}
.wscd{word-spacing:0.182210px;}
.wsa8{word-spacing:0.191286px;}
.ws37{word-spacing:0.204942px;}
.ws4{word-spacing:0.215198px;}
.ws29{word-spacing:0.234969px;}
.wsbf{word-spacing:0.239108px;}
.ws6{word-spacing:0.268997px;}
.wsd3{word-spacing:0.286929px;}
.ws2b{word-spacing:0.322797px;}
.wsba{word-spacing:0.334751px;}
.ws24{word-spacing:0.376596px;}
.ws65{word-spacing:0.430396px;}
.wsa9{word-spacing:0.478216px;}
.ws95{word-spacing:0.484195px;}
.wscc{word-spacing:0.573859px;}
.wsb{word-spacing:0.591794px;}
.ws96{word-spacing:0.645594px;}
.ws6c{word-spacing:0.699393px;}
.wsc3{word-spacing:0.717323px;}
.ws51{word-spacing:0.753193px;}
.wsc9{word-spacing:0.765145px;}
.ws87{word-spacing:0.806992px;}
.wsd5{word-spacing:0.812966px;}
.wsc5{word-spacing:0.908610px;}
.ws50{word-spacing:0.914591px;}
.ws43{word-spacing:1.022190px;}
.ws35{word-spacing:1.075990px;}
.ws61{word-spacing:1.129789px;}
.ws13{word-spacing:1.183588px;}
.ws98{word-spacing:1.216108px;}
.ws9f{word-spacing:1.243360px;}
.ws5f{word-spacing:1.344987px;}
.wsab{word-spacing:1.386825px;}
.ws18{word-spacing:1.506385px;}
.ws7d{word-spacing:1.560185px;}
.wsb7{word-spacing:1.578111px;}
.ws17{word-spacing:1.613984px;}
.ws16{word-spacing:1.644706px;}
.ws15{word-spacing:1.667784px;}
.wsd8{word-spacing:1.673754px;}
.ws10{word-spacing:1.721583px;}
.ws2f{word-spacing:1.775383px;}
.ws9{word-spacing:1.829182px;}
.wsc4{word-spacing:1.865041px;}
.ws2c{word-spacing:1.882982px;}
.ws42{word-spacing:1.936781px;}
.wsb4{word-spacing:1.960684px;}
.ws7b{word-spacing:1.990581px;}
.ws1f{word-spacing:2.044380px;}
.wsa6{word-spacing:2.056327px;}
.ws69{word-spacing:2.070650px;}
.ws68{word-spacing:2.091150px;}
.ws4d{word-spacing:2.098180px;}
.ws5b{word-spacing:2.151979px;}
.ws34{word-spacing:2.205779px;}
.ws83{word-spacing:2.259578px;}
.ws3c{word-spacing:2.411381px;}
.ws3d{word-spacing:2.420976px;}
.wsd2{word-spacing:2.438899px;}
.wsc{word-spacing:2.474776px;}
.ws48{word-spacing:2.528575px;}
.ws63{word-spacing:2.582375px;}
.ws8f{word-spacing:2.686064px;}
.ws91{word-spacing:2.686144px;}
.ws6b{word-spacing:2.689974px;}
.ws45{word-spacing:2.743773px;}
.wsd4{word-spacing:2.821472px;}
.wse{word-spacing:2.851372px;}
.ws7e{word-spacing:2.865568px;}
.ws84{word-spacing:2.905172px;}
.wsb6{word-spacing:2.917115px;}
.ws7f{word-spacing:2.925075px;}
.ws58{word-spacing:2.958971px;}
.ws3b{word-spacing:3.012771px;}
.ws6a{word-spacing:3.066570px;}
.ws70{word-spacing:3.098383px;}
.ws74{word-spacing:3.098476px;}
.wsc6{word-spacing:3.108401px;}
.ws21{word-spacing:3.120370px;}
.ws6f{word-spacing:3.227969px;}
.wsda{word-spacing:3.251866px;}
.ws75{word-spacing:3.281768px;}
.ws54{word-spacing:3.335568px;}
.wscb{word-spacing:3.395331px;}
.ws9a{word-spacing:3.443166px;}
.ws47{word-spacing:3.496966px;}
.ws77{word-spacing:3.550765px;}
.wsc2{word-spacing:3.558141px;}
.wsc0{word-spacing:3.586617px;}
.ws31{word-spacing:3.604565px;}
.ws30{word-spacing:3.658364px;}
.ws23{word-spacing:3.712164px;}
.ws38{word-spacing:3.819763px;}
.wsa1{word-spacing:4.017011px;}
.ws1c{word-spacing:4.034961px;}
.wsa0{word-spacing:4.064832px;}
.ws22{word-spacing:4.088760px;}
.wsbd{word-spacing:4.157670px;}
.wsbe{word-spacing:4.160475px;}
.ws94{word-spacing:4.250159px;}
.ws25{word-spacing:4.357758px;}
.ws33{word-spacing:4.465356px;}
.wsb2{word-spacing:4.537114px;}
.wsb3{word-spacing:4.543048px;}
.ws1e{word-spacing:4.572955px;}
.ws99{word-spacing:4.680554px;}
.ws67{word-spacing:4.734354px;}
.ws66{word-spacing:4.788153px;}
.wsae{word-spacing:4.877799px;}
.wscf{word-spacing:4.973442px;}
.wsce{word-spacing:5.021263px;}
.ws93{word-spacing:5.110950px;}
.ws1d{word-spacing:5.272349px;}
.ws4a{word-spacing:5.379948px;}
.ws28{word-spacing:5.460390px;}
.ws27{word-spacing:5.487547px;}
.wsd7{word-spacing:5.499479px;}
.ws62{word-spacing:5.595145px;}
.ws9b{word-spacing:5.648945px;}
.ws80{word-spacing:5.756544px;}
.wsca{word-spacing:5.882051px;}
.ws26{word-spacing:5.971742px;}
.wsa3{word-spacing:6.121159px;}
.ws78{word-spacing:6.186940px;}
.ws44{word-spacing:6.455937px;}
.ws9d{word-spacing:6.617336px;}
.wsbc{word-spacing:6.695018px;}
.ws5c{word-spacing:6.724934px;}
.ws1b{word-spacing:6.778734px;}
.ws5d{word-spacing:6.940132px;}
.wsad{word-spacing:6.981947px;}
.ws46{word-spacing:7.209130px;}
.wsb1{word-spacing:7.412341px;}
.ws2a{word-spacing:7.478127px;}
.wsdb{word-spacing:8.655702px;}
.ws57{word-spacing:12.696676px;}
.ws5a{word-spacing:13.288471px;}
.ws59{word-spacing:13.503668px;}
.ws9e{word-spacing:13.665067px;}
.wsf{word-spacing:15.117653px;}
.ws3f{word-spacing:19.845499px;}
.ws0{word-spacing:21.433651px;}
.ws11{word-spacing:42.967848px;}
.ws8d{word-spacing:53.500534px;}
.ws7a{word-spacing:58.264832px;}
.ws8e{word-spacing:73.251584px;}
.ws79{word-spacing:83.496787px;}
.ws71{word-spacing:107.775268px;}
.ws8b{word-spacing:128.726862px;}
.ws8c{word-spacing:129.979534px;}
.ws8a{word-spacing:155.625400px;}
.ws40{word-spacing:561.630437px;}
.ws89{word-spacing:619.189803px;}
.ws88{word-spacing:713.058253px;}
._3{margin-left:-6.599402px;}
._1{margin-left:-4.815730px;}
._b{margin-left:-3.443166px;}
._0{margin-left:-1.721578px;}
._13{width:2.012623px;}
._12{width:3.281231px;}
._2{width:5.128221px;}
._c{width:8.016122px;}
._14{width:9.145911px;}
._10{width:12.911874px;}
._15{width:14.963248px;}
._5{width:16.032244px;}
._6{width:17.162033px;}
._d{width:19.098814px;}
._9{width:20.226935px;}
._a{width:21.465981px;}
._4{width:22.703379px;}
._7{width:24.693959px;}
._8{width:25.931347px;}
._16{width:27.114931px;}
._f{width:28.190916px;}
._e{width:30.773300px;}
._25{width:33.142140px;}
._11{width:35.776651px;}
._26{width:36.960240px;}
._18{width:86.670956px;}
._1b{width:89.038133px;}
._19{width:108.621137px;}
._24{width:109.625399px;}
._17{width:111.459710px;}
._1c{width:112.925100px;}
._21{width:116.637264px;}
._1d{width:158.385657px;}
._1a{width:206.213391px;}
._1e{width:209.172362px;}
._1f{width:265.392815px;}
._22{width:313.000618px;}
._20{width:478.919200px;}
._23{width:586.463354px;}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.866317px;}
.fs7{font-size:43.039461px;}
.fs2{font-size:47.821556px;}
.fsb{font-size:50.788244px;}
.fsc{font-size:50.789767px;}
.fs6{font-size:53.798400px;}
.fs3{font-size:53.799476px;}
.fs9{font-size:53.800408px;}
.fsa{font-size:53.802022px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.732635px;}
.fs0{font-size:86.078921px;}
.y0{bottom:0.000000px;}
.y132{bottom:5.998981px;}
.ydd{bottom:7.115838px;}
.ye9{bottom:10.514348px;}
.y131{bottom:19.246790px;}
.yd9{bottom:22.456426px;}
.y145{bottom:27.723984px;}
.yd6{bottom:33.560997px;}
.yd8{bottom:33.976114px;}
.yd4{bottom:34.519934px;}
.yd5{bottom:37.303316px;}
.ydb{bottom:41.078883px;}
.yd3{bottom:43.377644px;}
.y133{bottom:45.378526px;}
.y68{bottom:51.006000px;}
.ydc{bottom:53.557484px;}
.yd7{bottom:55.095541px;}
.yda{bottom:59.317328px;}
.y134{bottom:63.380048px;}
.y135{bottom:81.381570px;}
.y136{bottom:99.383091px;}
.ye7{bottom:107.848437px;}
.y137{bottom:117.384613px;}
.ye6{bottom:128.368295px;}
.y138{bottom:135.386135px;}
.ye5{bottom:148.888152px;}
.y37{bottom:152.628052px;}
.y139{bottom:153.387657px;}
.y17e{bottom:155.467609px;}
.y1c1{bottom:157.099642px;}
.ye8{bottom:158.413394px;}
.y1f8{bottom:164.608792px;}
.y36{bottom:168.243365px;}
.ya5{bottom:168.813376px;}
.y17d{bottom:168.954379px;}
.y147{bottom:169.029545px;}
.ye4{bottom:169.408010px;}
.y10a{bottom:170.029900px;}
.y1c0{bottom:170.586412px;}
.y13a{bottom:171.389179px;}
.y1f7{bottom:178.095562px;}
.y17c{bottom:182.441149px;}
.y35{bottom:183.860177px;}
.y1bf{bottom:184.073181px;}
.ya4{bottom:184.430188px;}
.y109{bottom:185.646713px;}
.y13b{bottom:189.390701px;}
.ye3{bottom:189.927867px;}
.y1f6{bottom:191.582331px;}
.y1be{bottom:197.559951px;}
.y65{bottom:199.476989px;}
.y34{bottom:199.593992px;}
.ya3{bottom:200.047001px;}
.y108{bottom:201.263525px;}
.y17b{bottom:203.737075px;}
.y1f5{bottom:205.069101px;}
.y13c{bottom:207.392222px;}
.ye2{bottom:210.447725px;}
.y64{bottom:215.093802px;}
.y152{bottom:215.161303px;}
.y33{bottom:215.210804px;}
.ya2{bottom:215.663813px;}
.y107{bottom:216.878837px;}
.y1bd{bottom:217.025840px;}
.y1f4{bottom:224.534990px;}
.y13d{bottom:225.393744px;}
.y1bc{bottom:230.512610px;}
.y63{bottom:230.710614px;}
.y32{bottom:230.827616px;}
.ye1{bottom:230.967582px;}
.ya1{bottom:231.280625px;}
.y106{bottom:232.495650px;}
.yd0{bottom:234.111182px;}
.y1f3{bottom:238.021760px;}
.y17a{bottom:239.229284px;}
.y13e{bottom:243.395266px;}
.y1bb{bottom:243.999380px;}
.y62{bottom:246.327426px;}
.y31{bottom:246.444429px;}
.ya0{bottom:246.897438px;}
.y105{bottom:248.112462px;}
.ye0{bottom:251.487440px;}
.y1f2{bottom:251.508530px;}
.y179{bottom:254.846097px;}
.y1ba{bottom:257.486149px;}
.y13f{bottom:261.396788px;}
.y61{bottom:261.944239px;}
.y30{bottom:262.061241px;}
.y9f{bottom:262.514250px;}
.y104{bottom:263.729274px;}
.y1f0{bottom:264.995300px;}
.y1f1{bottom:265.055301px;}
.ydf{bottom:272.007297px;}
.y1b9{bottom:276.952039px;}
.y60{bottom:277.561051px;}
.y2f{bottom:277.678053px;}
.y9e{bottom:278.129562px;}
.y178{bottom:278.270565px;}
.y103{bottom:279.346087px;}
.y140{bottom:279.398310px;}
.y1ef{bottom:284.461189px;}
.y1b8{bottom:290.438808px;}
.yde{bottom:292.527154px;}
.y5f{bottom:293.177863px;}
.y2e{bottom:293.294866px;}
.y9d{bottom:293.746375px;}
.y102{bottom:294.962899px;}
.y141{bottom:297.746812px;}
.y1ee{bottom:297.947959px;}
.y1b7{bottom:303.925578px;}
.y5e{bottom:308.794675px;}
.y2c{bottom:308.911678px;}
.y2d{bottom:308.977679px;}
.y9c{bottom:309.363187px;}
.y101{bottom:310.579711px;}
.y177{bottom:313.764275px;}
.y142{bottom:315.401353px;}
.y1b6{bottom:317.412348px;}
.yd2{bottom:322.048092px;}
.y5d{bottom:324.411488px;}
.y2b{bottom:324.526990px;}
.y9b{bottom:324.979999px;}
.y124{bottom:327.336546px;}
.y151{bottom:328.329566px;}
.y176{bottom:329.381087px;}
.y1ed{bottom:330.900618px;}
.y143{bottom:333.402875px;}
.y100{bottom:335.790715px;}
.y1b5{bottom:336.878237px;}
.y5c{bottom:340.028300px;}
.y2a{bottom:340.143802px;}
.y9a{bottom:340.596811px;}
.y122{bottom:342.953359px;}
.y150{bottom:343.946378px;}
.y1ec{bottom:344.387387px;}
.y175{bottom:344.996399px;}
.y123{bottom:346.073421px;}
.y1b4{bottom:350.365007px;}
.y144{bottom:351.404397px;}
.y5b{bottom:355.645112px;}
.y29{bottom:355.760615px;}
.y99{bottom:356.213624px;}
.y1eb{bottom:357.874157px;}
.y121{bottom:358.570171px;}
.y14f{bottom:359.561691px;}
.y174{bottom:360.613212px;}
.y1b3{bottom:363.851777px;}
.y146{bottom:369.752899px;}
.y5a{bottom:371.260425px;}
.y28{bottom:371.377427px;}
.y98{bottom:371.830436px;}
.y120{bottom:374.186983px;}
.y14e{bottom:375.178503px;}
.y173{bottom:376.230024px;}
.y1ea{bottom:377.338546px;}
.y1b2{bottom:383.316166px;}
.y59{bottom:386.877237px;}
.y27{bottom:386.994239px;}
.ycf{bottom:387.675253px;}
.y97{bottom:388.017260px;}
.y11f{bottom:389.803796px;}
.y14d{bottom:390.795315px;}
.y1e9{bottom:390.826816px;}
.y172{bottom:391.846836px;}
.yff{bottom:392.647852px;}
.y1b1{bottom:396.804436px;}
.y26{bottom:402.611052px;}
.yce{bottom:403.292065px;}
.y96{bottom:403.632572px;}
.y1e8{bottom:404.313586px;}
.y58{bottom:404.649592px;}
.y11e{bottom:405.420608px;}
.y14c{bottom:406.412128px;}
.y171{bottom:407.463649px;}
.y1b0{bottom:410.291205px;}
.yfe{bottom:415.767815px;}
.y25{bottom:418.344866px;}
.ycd{bottom:418.908878px;}
.y95{bottom:419.249384px;}
.y57{bottom:420.266405px;}
.y11d{bottom:421.037420px;}
.y170{bottom:423.080461px;}
.y1af{bottom:423.777975px;}
.yfd{bottom:431.384627px;}
.y24{bottom:433.961679px;}
.ycc{bottom:434.525690px;}
.y94{bottom:434.866197px;}
.y56{bottom:435.883217px;}
.y11c{bottom:436.654232px;}
.y1e7{bottom:437.264745px;}
.y16f{bottom:438.697273px;}
.y1ae{bottom:443.242364px;}
.yfc{bottom:447.001439px;}
.y23{bottom:449.578491px;}
.ycb{bottom:450.141002px;}
.y93{bottom:450.483009px;}
.y1e6{bottom:450.753014px;}
.y55{bottom:451.500029px;}
.y11b{bottom:452.271045px;}
.y16e{bottom:454.314086px;}
.y1ad{bottom:456.730634px;}
.yfb{bottom:462.618252px;}
.y14b{bottom:463.765775px;}
.y1e5{bottom:464.239784px;}
.y22{bottom:465.195303px;}
.yca{bottom:465.757814px;}
.y92{bottom:466.099821px;}
.y54{bottom:467.116842px;}
.y16d{bottom:469.930898px;}
.y1ac{bottom:470.217404px;}
.y11a{bottom:470.812916px;}
.yfa{bottom:478.235064px;}
.y14a{bottom:479.382587px;}
.y21{bottom:480.812116px;}
.yc9{bottom:481.374627px;}
.y91{bottom:481.716634px;}
.y53{bottom:482.733654px;}
.y1e4{bottom:483.704173px;}
.y16c{bottom:485.547710px;}
.y119{bottom:486.429728px;}
.y1ab{bottom:489.681793px;}
.yf9{bottom:493.851876px;}
.y149{bottom:494.999399px;}
.y20{bottom:496.427428px;}
.yc8{bottom:496.991439px;}
.y1e3{bottom:497.190943px;}
.y90{bottom:497.333446px;}
.y52{bottom:498.350466px;}
.y16b{bottom:501.164523px;}
.y118{bottom:502.046540px;}
.y1aa{bottom:503.170063px;}
.yf8{bottom:509.467189px;}
.y148{bottom:510.616212px;}
.y1e2{bottom:510.679213px;}
.y1f{bottom:512.044240px;}
.yc7{bottom:512.608251px;}
.y8f{bottom:512.950258px;}
.y51{bottom:513.967279px;}
.y1a9{bottom:516.656832px;}
.y16a{bottom:516.781335px;}
.y117{bottom:517.663352px;}
.y1e1{bottom:524.165983px;}
.yf7{bottom:525.084001px;}
.y1e{bottom:527.661052px;}
.yc6{bottom:528.225064px;}
.y8e{bottom:528.567071px;}
.y50{bottom:529.584091px;}
.y169{bottom:532.398147px;}
.y116{bottom:533.280165px;}
.y1a8{bottom:536.121222px;}
.y130{bottom:536.491729px;}
.y1d{bottom:543.277865px;}
.y1e0{bottom:543.630372px;}
.yc5{bottom:543.841876px;}
.y8d{bottom:544.183883px;}
.y4f{bottom:545.200903px;}
.y168{bottom:548.014959px;}
.yf6{bottom:548.203963px;}
.y115{bottom:548.896977px;}
.y1a7{bottom:549.607991px;}
.y1df{bottom:557.117141px;}
.y1c{bottom:558.894677px;}
.yc4{bottom:559.458688px;}
.y8c{bottom:559.800695px;}
.y4e{bottom:560.817715px;}
.y1a6{bottom:563.096261px;}
.y167{bottom:563.630272px;}
.yf5{bottom:563.820776px;}
.y114{bottom:564.513789px;}
.y1de{bottom:570.605411px;}
.y1b{bottom:574.511489px;}
.yc3{bottom:575.075501px;}
.y8b{bottom:575.986019px;}
.y4d{bottom:576.434528px;}
.y1a5{bottom:576.583031px;}
.y166{bottom:579.247084px;}
.y113{bottom:580.130602px;}
.y1dd{bottom:584.092181px;}
.y1a4{bottom:590.069800px;}
.y1a{bottom:590.128302px;}
.yc2{bottom:590.692313px;}
.y8a{bottom:591.602831px;}
.y4c{bottom:592.051340px;}
.y165{bottom:594.863896px;}
.y111{bottom:595.747414px;}
.y112{bottom:595.814915px;}
.yf4{bottom:599.759994px;}
.y1dc{bottom:603.556570px;}
.yc1{bottom:606.309125px;}
.y89{bottom:607.219643px;}
.y4b{bottom:607.668152px;}
.y1a3{bottom:609.534190px;}
.y164{bottom:610.480709px;}
.y110{bottom:611.364226px;}
.y19{bottom:613.669772px;}
.yf3{bottom:615.376807px;}
.y1db{bottom:617.044840px;}
.y88{bottom:622.836456px;}
.y1a2{bottom:623.022459px;}
.y4a{bottom:623.283465px;}
.y163{bottom:626.097521px;}
.y10f{bottom:626.981039px;}
.yc0{bottom:630.530110px;}
.y1da{bottom:630.531610px;}
.yf2{bottom:630.993619px;}
.y1a1{bottom:636.509229px;}
.y87{bottom:638.453268px;}
.y49{bottom:638.900277px;}
.y162{bottom:641.714333px;}
.y10e{bottom:642.597851px;}
.y1d9{bottom:644.018379px;}
.yf1{bottom:646.610431px;}
.y18{bottom:649.278985px;}
.y1a0{bottom:649.995999px;}
.y86{bottom:654.070080px;}
.y48{bottom:656.672632px;}
.y161{bottom:657.331146px;}
.y10d{bottom:658.214663px;}
.yf0{bottom:662.227243px;}
.y19f{bottom:663.482769px;}
.y17{bottom:664.895797px;}
.ybf{bottom:666.820335px;}
.y85{bottom:669.686893px;}
.y47{bottom:672.289445px;}
.y160{bottom:672.947958px;}
.y10c{bottom:673.831476px;}
.y1d8{bottom:676.971038px;}
.yef{bottom:677.844056px;}
.y16{bottom:680.629611px;}
.ybe{bottom:682.437148px;}
.y19e{bottom:682.948658px;}
.y84{bottom:685.303705px;}
.y46{bottom:687.906257px;}
.y15f{bottom:688.564770px;}
.y10b{bottom:689.446788px;}
.y1d7{bottom:690.457808px;}
.yee{bottom:693.459368px;}
.y15{bottom:696.246424px;}
.y19d{bottom:696.435428px;}
.ybd{bottom:698.053960px;}
.y83{bottom:700.920517px;}
.y45{bottom:703.523069px;}
.y19c{bottom:709.922197px;}
.y14{bottom:711.863236px;}
.y15e{bottom:711.989239px;}
.ybc{bottom:713.670772px;}
.y82{bottom:716.537330px;}
.y44{bottom:719.139882px;}
.y19b{bottom:723.408967px;}
.y13{bottom:727.480048px;}
.ybb{bottom:729.287585px;}
.y81{bottom:732.152642px;}
.y43{bottom:734.756694px;}
.y1d5{bottom:736.897237px;}
.yed{bottom:738.965778px;}
.y1d6{bottom:739.670792px;}
.y19a{bottom:742.874856px;}
.y12{bottom:743.095361px;}
.yba{bottom:744.904397px;}
.y15d{bottom:747.481448px;}
.y42{bottom:750.373506px;}
.yec{bottom:754.582590px;}
.y80{bottom:756.147122px;}
.y199{bottom:756.361626px;}
.y11{bottom:758.712173px;}
.yb9{bottom:760.521209px;}
.y15c{bottom:763.098261px;}
.y41{bottom:765.990319px;}
.y198{bottom:769.848396px;}
.yeb{bottom:770.199403px;}
.y10{bottom:774.328985px;}
.yb8{bottom:776.138021px;}
.y15b{bottom:778.715073px;}
.y197{bottom:783.335165px;}
.y40{bottom:783.762674px;}
.yea{bottom:785.814715px;}
.yf{bottom:789.945798px;}
.yb7{bottom:791.753334px;}
.y7f{bottom:792.209343px;}
.y15a{bottom:794.331885px;}
.y196{bottom:796.823435px;}
.y3f{bottom:799.379486px;}
.y1d4{bottom:802.801055px;}
.ye{bottom:805.562610px;}
.yb6{bottom:807.370146px;}
.y7e{bottom:807.826155px;}
.y159{bottom:809.948698px;}
.y195{bottom:810.310205px;}
.yd1{bottom:811.691732px;}
.y3e{bottom:814.996299px;}
.y1d3{bottom:816.287824px;}
.yd{bottom:821.179422px;}
.yb5{bottom:822.986958px;}
.y7d{bottom:823.442967px;}
.y194{bottom:823.796975px;}
.y158{bottom:825.565510px;}
.y1d2{bottom:829.774594px;}
.y3d{bottom:830.613111px;}
.yc{bottom:836.796235px;}
.y193{bottom:837.283744px;}
.yb4{bottom:838.603771px;}
.y7c{bottom:839.059780px;}
.y157{bottom:841.182322px;}
.y1d0{bottom:843.261364px;}
.y1d1{bottom:843.321365px;}
.y3c{bottom:846.229923px;}
.yb{bottom:852.413047px;}
.yb3{bottom:854.220583px;}
.y7b{bottom:854.676592px;}
.y192{bottom:856.749634px;}
.y156{bottom:856.799135px;}
.y3b{bottom:861.846735px;}
.y1cf{bottom:862.727253px;}
.ya{bottom:868.029859px;}
.yb2{bottom:869.837395px;}
.y191{bottom:870.236403px;}
.y7a{bottom:870.293404px;}
.y155{bottom:872.415947px;}
.y1ce{bottom:876.214023px;}
.y3a{bottom:877.463548px;}
.y9{bottom:883.646671px;}
.y190{bottom:883.723173px;}
.yb1{bottom:885.454208px;}
.y79{bottom:886.478728px;}
.y154{bottom:888.032759px;}
.y1cd{bottom:889.700793px;}
.y39{bottom:893.078860px;}
.y18f{bottom:897.209943px;}
.y8{bottom:899.263484px;}
.yb0{bottom:901.071020px;}
.y78{bottom:902.095540px;}
.y1cc{bottom:903.187562px;}
.y1cb{bottom:903.189062px;}
.y153{bottom:903.649571px;}
.y38{bottom:908.695672px;}
.y18e{bottom:916.675832px;}
.yaf{bottom:916.687832px;}
.y77{bottom:917.712353px;}
.y1ca{bottom:922.653451px;}
.y7{bottom:924.312485px;}
.y18d{bottom:930.162602px;}
.yae{bottom:932.304645px;}
.y76{bottom:933.329165px;}
.y1c9{bottom:936.140221px;}
.y18c{bottom:943.649371px;}
.yad{bottom:947.921457px;}
.y75{bottom:948.945977px;}
.y1c8{bottom:949.626991px;}
.y12f{bottom:956.936637px;}
.y18b{bottom:957.136141px;}
.y1c7{bottom:963.115261px;}
.yac{bottom:964.334785px;}
.y74{bottom:964.562790px;}
.y12e{bottom:972.553449px;}
.y18a{bottom:976.602030px;}
.y6{bottom:977.443547px;}
.yab{bottom:979.951597px;}
.y73{bottom:980.179602px;}
.y12d{bottom:988.168762px;}
.y189{bottom:990.088800px;}
.yaa{bottom:995.568410px;}
.y72{bottom:995.796414px;}
.y1c6{bottom:996.066420px;}
.y187{bottom:1003.575570px;}
.y188{bottom:1003.635571px;}
.y12c{bottom:1003.785574px;}
.y5{bottom:1004.051079px;}
.y1c5{bottom:1009.553189px;}
.ya9{bottom:1011.185222px;}
.y71{bottom:1011.413227px;}
.y12b{bottom:1019.402386px;}
.y186{bottom:1023.041459px;}
.y4{bottom:1023.927977px;}
.ya8{bottom:1026.802034px;}
.y70{bottom:1027.598550px;}
.y12a{bottom:1035.019199px;}
.y185{bottom:1036.528229px;}
.ya7{bottom:1042.418847px;}
.y6f{bottom:1043.215363px;}
.y3{bottom:1043.803374px;}
.y184{bottom:1050.014998px;}
.ya6{bottom:1058.035659px;}
.y129{bottom:1058.139161px;}
.y6e{bottom:1058.832175px;}
.y183{bottom:1063.501768px;}
.y1c4{bottom:1063.561769px;}
.y2{bottom:1073.610470px;}
.y128{bottom:1073.755973px;}
.y6d{bottom:1074.448987px;}
.y182{bottom:1076.990038px;}
.y1c3{bottom:1082.967657px;}
.y6c{bottom:1090.065799px;}
.y181{bottom:1096.454427px;}
.y6b{bottom:1105.682612px;}
.y127{bottom:1109.695192px;}
.y180{bottom:1109.941197px;}
.y1{bottom:1114.408286px;}
.y6a{bottom:1121.299424px;}
.y17f{bottom:1123.427967px;}
.y126{bottom:1125.312004px;}
.y69{bottom:1136.916236px;}
.y1c2{bottom:1136.974738px;}
.y125{bottom:1140.928817px;}
.y67{bottom:1189.870500px;}
.y66{bottom:1207.803000px;}
.h4{height:31.801335px;}
.h19{height:32.805588px;}
.h18{height:32.901231px;}
.h5{height:33.570873px;}
.hb{height:36.529844px;}
.h12{height:36.906440px;}
.h7{height:37.014039px;}
.h8{height:37.229237px;}
.hc{height:37.928631px;}
.h15{height:38.040394px;}
.h17{height:38.041536px;}
.h16{height:38.091183px;}
.h14{height:39.360889px;}
.hd{height:40.349607px;}
.h10{height:40.350306px;}
.h11{height:40.351517px;}
.h9{height:42.859105px;}
.ha{height:44.312764px;}
.he{height:47.725955px;}
.h6{height:49.638983px;}
.h3{height:57.829855px;}
.h2{height:59.566614px;}
.hf{height:340.171087px;}
.h13{height:382.099598px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:340.169896px;}
.w2{width:722.885245px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x57{left:3.529400px;}
.x58{left:6.011419px;}
.x42{left:13.841304px;}
.x30{left:17.375830px;}
.x3e{left:22.457100px;}
.x5b{left:29.819480px;}
.x3b{left:34.520969px;}
.x3c{left:37.304436px;}
.x40{left:41.080116px;}
.x3a{left:43.378946px;}
.x41{left:53.559091px;}
.x3d{left:55.097193px;}
.x3f{left:59.319108px;}
.x59{left:65.606604px;}
.x5a{left:72.988283px;}
.x12{left:84.367219px;}
.x9{left:85.900296px;}
.x4{left:90.708036px;}
.x64{left:92.362619px;}
.x47{left:104.387220px;}
.xb{left:108.801941px;}
.x43{left:116.321898px;}
.x66{left:119.657984px;}
.x65{left:121.248063px;}
.x1{left:125.911796px;}
.x2{left:127.057854px;}
.x31{left:131.972560px;}
.x55{left:134.451510px;}
.x5f{left:169.031452px;}
.x5e{left:170.153508px;}
.x56{left:171.865740px;}
.x10{left:183.633182px;}
.x32{left:187.284301px;}
.x6{left:192.038102px;}
.xa{left:195.032252px;}
.x11{left:198.351918px;}
.x48{left:203.693685px;}
.x67{left:218.893945px;}
.x8{left:223.107656px;}
.x33{left:242.596043px;}
.x46{left:251.522076px;}
.x5{left:298.375419px;}
.x5c{left:301.070004px;}
.x4b{left:314.474224px;}
.x4c{left:325.226762px;}
.xc{left:331.224061px;}
.x5d{left:334.170735px;}
.x39{left:335.805072px;}
.x7{left:346.943347px;}
.x34{left:353.219526px;}
.x54{left:359.825991px;}
.x35{left:408.531268px;}
.x4d{left:411.124056px;}
.x4e{left:421.876594px;}
.xf{left:430.186500px;}
.x36{left:463.843009px;}
.x13{left:467.292864px;}
.xd{left:468.744937px;}
.x62{left:475.058753px;}
.xe{left:491.498075px;}
.x22{left:500.771538px;}
.x6a{left:502.354117px;}
.x63{left:503.944197px;}
.x23{left:509.099955px;}
.x6c{left:515.697285px;}
.x29{left:518.971948px;}
.x2a{left:527.300365px;}
.x1c{left:528.873943px;}
.x6d{left:534.905745px;}
.x6b{left:536.224311px;}
.x1d{left:537.260863px;}
.x2c{left:538.973948px;}
.x2b{left:542.139107px;}
.x24{left:553.857692px;}
.x18{left:562.793639px;}
.x4a{left:564.178208px;}
.x49{left:566.794339px;}
.x19{left:571.180559px;}
.x37{left:574.466492px;}
.x68{left:578.631431px;}
.x60{left:580.724036px;}
.x61{left:585.179258px;}
.x4f{left:594.364218px;}
.x2d{left:596.287314px;}
.x14{left:599.167458px;}
.x15{left:607.380368px;}
.x50{left:614.886744px;}
.x2e{left:616.874343px;}
.x25{left:620.345517px;}
.x26{left:628.673933px;}
.x38{left:629.778234px;}
.x1e{left:632.014600px;}
.x3{left:635.373268px;}
.x1f{left:640.343017px;}
.x2f{left:662.416620px;}
.x51{left:664.521225px;}
.x45{left:678.440664px;}
.x52{left:688.189409px;}
.x44{left:694.091325px;}
.x27{left:696.739836px;}
.x28{left:705.068253px;}
.x1a{left:717.529376px;}
.x1b{left:725.857792px;}
.x20{left:735.096754px;}
.x21{left:743.425170px;}
.x16{left:754.042701px;}
.x17{left:762.371118px;}
.x53{left:790.346016px;}
.x69{left:803.017150px;}
@media print{
.v2{vertical-align:-23.141796pt;}
.v3{vertical-align:-5.312106pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:20.315073pt;}
.v1{vertical-align:23.136463pt;}
.ls4{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000027pt;}
.ls2{letter-spacing:0.000125pt;}
.ls9{letter-spacing:0.000632pt;}
.ls16{letter-spacing:0.000891pt;}
.lsa{letter-spacing:0.001304pt;}
.ls1e{letter-spacing:0.004460pt;}
.ls29{letter-spacing:0.005185pt;}
.ls3{letter-spacing:0.005459pt;}
.ls26{letter-spacing:0.027907pt;}
.ls25{letter-spacing:0.035231pt;}
.ls27{letter-spacing:0.044600pt;}
.ls28{letter-spacing:1.643900pt;}
.ls2c{letter-spacing:2.347692pt;}
.ls13{letter-spacing:2.348258pt;}
.ls30{letter-spacing:2.350162pt;}
.ls11{letter-spacing:2.350173pt;}
.ls17{letter-spacing:2.350475pt;}
.ls7{letter-spacing:2.350795pt;}
.ls19{letter-spacing:2.353305pt;}
.ls15{letter-spacing:2.353650pt;}
.ls2e{letter-spacing:2.355544pt;}
.ls2a{letter-spacing:2.355917pt;}
.ls1c{letter-spacing:2.356024pt;}
.lse{letter-spacing:2.357497pt;}
.ls6{letter-spacing:2.359783pt;}
.ls10{letter-spacing:2.362830pt;}
.lsd{letter-spacing:2.365758pt;}
.lsb{letter-spacing:2.371953pt;}
.lsc{letter-spacing:2.386832pt;}
.ls2b{letter-spacing:2.387716pt;}
.ls1b{letter-spacing:2.388463pt;}
.lsf{letter-spacing:2.390388pt;}
.ls1a{letter-spacing:2.390764pt;}
.ls5{letter-spacing:2.391088pt;}
.ls14{letter-spacing:2.391529pt;}
.ls2f{letter-spacing:2.392367pt;}
.ls18{letter-spacing:2.393158pt;}
.ls8{letter-spacing:2.393692pt;}
.ls12{letter-spacing:2.394065pt;}
.ls2d{letter-spacing:2.395290pt;}
.ls0{letter-spacing:2.653311pt;}
.ls1{letter-spacing:2.658644pt;}
.ls23{letter-spacing:66.417801pt;}
.ls1f{letter-spacing:67.756494pt;}
.ls22{letter-spacing:67.761828pt;}
.ls1d{letter-spacing:152.200317pt;}
.ls21{letter-spacing:152.205651pt;}
.ls20{letter-spacing:172.105248pt;}
.ws6d{word-spacing:-32.064488pt;}
.ws4f{word-spacing:-14.346527pt;}
.ws72{word-spacing:-13.629846pt;}
.ws73{word-spacing:-13.629437pt;}
.ws52{word-spacing:-11.955439pt;}
.ws5e{word-spacing:-11.936277pt;}
.ws90{word-spacing:-11.241131pt;}
.wsa2{word-spacing:-10.627013pt;}
.ws4e{word-spacing:-9.564325pt;}
.ws92{word-spacing:-3.334668pt;}
.ws7{word-spacing:-2.391088pt;}
.ws4b{word-spacing:-2.343266pt;}
.wsc8{word-spacing:-2.125403pt;}
.ws4c{word-spacing:-2.056336pt;}
.ws7c{word-spacing:-1.912870pt;}
.ws76{word-spacing:-1.673761pt;}
.wsd1{word-spacing:-1.657814pt;}
.ws36{word-spacing:-1.625940pt;}
.ws86{word-spacing:-1.578118pt;}
.wsd9{word-spacing:-1.487782pt;}
.ws49{word-spacing:-1.482474pt;}
.wsa{word-spacing:-1.386831pt;}
.wsd0{word-spacing:-1.360258pt;}
.ws3e{word-spacing:-1.339009pt;}
.ws55{word-spacing:-1.291187pt;}
.ws9c{word-spacing:-1.147722pt;}
.ws8{word-spacing:-1.099900pt;}
.wsc7{word-spacing:-1.020193pt;}
.wsd6{word-spacing:-0.935177pt;}
.ws53{word-spacing:-0.765148pt;}
.ws32{word-spacing:-0.717326pt;}
.ws64{word-spacing:-0.669505pt;}
.ws56{word-spacing:-0.621683pt;}
.wsc1{word-spacing:-0.425081pt;}
.ws3a{word-spacing:-0.382574pt;}
.wsb9{word-spacing:-0.297556pt;}
.ws60{word-spacing:-0.286931pt;}
.wsb5{word-spacing:-0.255048pt;}
.wsd{word-spacing:-0.239109pt;}
.wsaf{word-spacing:-0.212540pt;}
.ws12{word-spacing:-0.191287pt;}
.wsa4{word-spacing:-0.182326pt;}
.wsa5{word-spacing:-0.170032pt;}
.ws39{word-spacing:-0.160152pt;}
.ws1a{word-spacing:-0.143465pt;}
.wsaa{word-spacing:-0.127524pt;}
.ws97{word-spacing:-0.125572pt;}
.ws19{word-spacing:-0.095644pt;}
.wsac{word-spacing:-0.085016pt;}
.ws2e{word-spacing:-0.068307pt;}
.ws2d{word-spacing:-0.059212pt;}
.ws5{word-spacing:-0.047822pt;}
.ws41{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.042508pt;}
.ws6e{word-spacing:-0.031881pt;}
.wsdc{word-spacing:-0.002717pt;}
.wsbb{word-spacing:-0.000294pt;}
.ws1{word-spacing:0.000000pt;}
.ws85{word-spacing:0.040695pt;}
.wsa7{word-spacing:0.042508pt;}
.ws14{word-spacing:0.047822pt;}
.wsb0{word-spacing:0.085016pt;}
.ws82{word-spacing:0.094766pt;}
.ws3{word-spacing:0.095644pt;}
.ws81{word-spacing:0.096468pt;}
.wsb8{word-spacing:0.100255pt;}
.ws20{word-spacing:0.143465pt;}
.wscd{word-spacing:0.161965pt;}
.wsa8{word-spacing:0.170032pt;}
.ws37{word-spacing:0.182171pt;}
.ws4{word-spacing:0.191287pt;}
.ws29{word-spacing:0.208861pt;}
.wsbf{word-spacing:0.212540pt;}
.ws6{word-spacing:0.239109pt;}
.wsd3{word-spacing:0.255048pt;}
.ws2b{word-spacing:0.286931pt;}
.wsba{word-spacing:0.297556pt;}
.ws24{word-spacing:0.334752pt;}
.ws65{word-spacing:0.382574pt;}
.wsa9{word-spacing:0.425081pt;}
.ws95{word-spacing:0.430396pt;}
.wscc{word-spacing:0.510097pt;}
.wsb{word-spacing:0.526039pt;}
.ws96{word-spacing:0.573861pt;}
.ws6c{word-spacing:0.621683pt;}
.wsc3{word-spacing:0.637621pt;}
.ws51{word-spacing:0.669505pt;}
.wsc9{word-spacing:0.680129pt;}
.ws87{word-spacing:0.717326pt;}
.wsd5{word-spacing:0.722637pt;}
.wsc5{word-spacing:0.807653pt;}
.ws50{word-spacing:0.812970pt;}
.ws43{word-spacing:0.908613pt;}
.ws35{word-spacing:0.956435pt;}
.ws61{word-spacing:1.004257pt;}
.ws13{word-spacing:1.052079pt;}
.ws98{word-spacing:1.080985pt;}
.ws9f{word-spacing:1.105209pt;}
.ws5f{word-spacing:1.195544pt;}
.wsab{word-spacing:1.232733pt;}
.ws18{word-spacing:1.339009pt;}
.ws7d{word-spacing:1.386831pt;}
.wsb7{word-spacing:1.402766pt;}
.ws17{word-spacing:1.434653pt;}
.ws16{word-spacing:1.461961pt;}
.ws15{word-spacing:1.482474pt;}
.wsd8{word-spacing:1.487782pt;}
.ws10{word-spacing:1.530296pt;}
.ws2f{word-spacing:1.578118pt;}
.ws9{word-spacing:1.625940pt;}
.wsc4{word-spacing:1.657814pt;}
.ws2c{word-spacing:1.673761pt;}
.ws42{word-spacing:1.721583pt;}
.wsb4{word-spacing:1.742830pt;}
.ws7b{word-spacing:1.769405pt;}
.ws1f{word-spacing:1.817227pt;}
.wsa6{word-spacing:1.827846pt;}
.ws69{word-spacing:1.840578pt;}
.ws68{word-spacing:1.858800pt;}
.ws4d{word-spacing:1.865048pt;}
.ws5b{word-spacing:1.912870pt;}
.ws34{word-spacing:1.960692pt;}
.ws83{word-spacing:2.008514pt;}
.ws3c{word-spacing:2.143450pt;}
.ws3d{word-spacing:2.151979pt;}
.wsd2{word-spacing:2.167911pt;}
.wsc{word-spacing:2.199801pt;}
.ws48{word-spacing:2.247623pt;}
.ws63{word-spacing:2.295444pt;}
.ws8f{word-spacing:2.387612pt;}
.ws91{word-spacing:2.387684pt;}
.ws6b{word-spacing:2.391088pt;}
.ws45{word-spacing:2.438910pt;}
.wsd4{word-spacing:2.507975pt;}
.wse{word-spacing:2.534553pt;}
.ws7e{word-spacing:2.547171pt;}
.ws84{word-spacing:2.582375pt;}
.wsb6{word-spacing:2.592991pt;}
.ws7f{word-spacing:2.600067pt;}
.ws58{word-spacing:2.630197pt;}
.ws3b{word-spacing:2.678018pt;}
.ws6a{word-spacing:2.725840pt;}
.ws70{word-spacing:2.754119pt;}
.ws74{word-spacing:2.754201pt;}
.wsc6{word-spacing:2.763023pt;}
.ws21{word-spacing:2.773662pt;}
.ws6f{word-spacing:2.869305pt;}
.wsda{word-spacing:2.890547pt;}
.ws75{word-spacing:2.917127pt;}
.ws54{word-spacing:2.964949pt;}
.wscb{word-spacing:3.018072pt;}
.ws9a{word-spacing:3.060592pt;}
.ws47{word-spacing:3.108414pt;}
.ws77{word-spacing:3.156236pt;}
.wsc2{word-spacing:3.162792pt;}
.wsc0{word-spacing:3.188104pt;}
.ws31{word-spacing:3.204058pt;}
.ws30{word-spacing:3.251879pt;}
.ws23{word-spacing:3.299701pt;}
.ws38{word-spacing:3.395345pt;}
.wsa1{word-spacing:3.570676pt;}
.ws1c{word-spacing:3.586632pt;}
.wsa0{word-spacing:3.613184pt;}
.ws22{word-spacing:3.634453pt;}
.wsbd{word-spacing:3.695706pt;}
.wsbe{word-spacing:3.698200pt;}
.ws94{word-spacing:3.777919pt;}
.ws25{word-spacing:3.873562pt;}
.ws33{word-spacing:3.969206pt;}
.wsb2{word-spacing:4.032990pt;}
.wsb3{word-spacing:4.038265pt;}
.ws1e{word-spacing:4.064849pt;}
.ws99{word-spacing:4.160493pt;}
.ws67{word-spacing:4.208315pt;}
.ws66{word-spacing:4.256136pt;}
.wsae{word-spacing:4.335821pt;}
.wscf{word-spacing:4.420837pt;}
.wsce{word-spacing:4.463345pt;}
.ws93{word-spacing:4.543067pt;}
.ws1d{word-spacing:4.686532pt;}
.ws4a{word-spacing:4.782176pt;}
.ws28{word-spacing:4.853680pt;}
.ws27{word-spacing:4.877819pt;}
.wsd7{word-spacing:4.888426pt;}
.ws62{word-spacing:4.973463pt;}
.ws9b{word-spacing:5.021284pt;}
.ws80{word-spacing:5.116928pt;}
.wsca{word-spacing:5.228490pt;}
.ws26{word-spacing:5.308215pt;}
.wsa3{word-spacing:5.441030pt;}
.ws78{word-spacing:5.499502pt;}
.ws44{word-spacing:5.738611pt;}
.ws9d{word-spacing:5.882076pt;}
.wsbc{word-spacing:5.951127pt;}
.ws5c{word-spacing:5.977720pt;}
.ws1b{word-spacing:6.025541pt;}
.ws5d{word-spacing:6.169007pt;}
.wsad{word-spacing:6.206175pt;}
.ws46{word-spacing:6.408115pt;}
.wsb1{word-spacing:6.588748pt;}
.ws2a{word-spacing:6.647224pt;}
.wsdb{word-spacing:7.693957pt;}
.ws57{word-spacing:11.285934pt;}
.ws5a{word-spacing:11.811974pt;}
.ws59{word-spacing:12.003261pt;}
.ws9e{word-spacing:12.146726pt;}
.wsf{word-spacing:13.437914pt;}
.ws3f{word-spacing:17.640444pt;}
.ws0{word-spacing:19.052135pt;}
.ws11{word-spacing:38.193643pt;}
.ws8d{word-spacing:47.556030pt;}
.ws7a{word-spacing:51.790962pt;}
.ws8e{word-spacing:65.112519pt;}
.ws79{word-spacing:74.219366pt;}
.ws71{word-spacing:95.800238pt;}
.ws8b{word-spacing:114.423878pt;}
.ws8c{word-spacing:115.537363pt;}
.ws8a{word-spacing:138.333689pt;}
.ws40{word-spacing:499.227055pt;}
.ws89{word-spacing:550.390936pt;}
.ws88{word-spacing:633.829559pt;}
._3{margin-left:-5.866135pt;}
._1{margin-left:-4.280649pt;}
._b{margin-left:-3.060592pt;}
._0{margin-left:-1.530292pt;}
._13{width:1.788998pt;}
._12{width:2.916650pt;}
._2{width:4.558419pt;}
._c{width:7.125442pt;}
._14{width:8.129699pt;}
._10{width:11.477222pt;}
._15{width:13.300664pt;}
._5{width:14.250883pt;}
._6{width:15.255140pt;}
._d{width:16.976724pt;}
._9{width:17.979498pt;}
._a{width:19.080872pt;}
._4{width:20.180781pt;}
._7{width:21.950186pt;}
._8{width:23.050087pt;}
._16{width:24.102161pt;}
._f{width:25.058592pt;}
._e{width:27.354045pt;}
._25{width:29.459680pt;}
._11{width:31.801468pt;}
._26{width:32.853547pt;}
._18{width:77.040849pt;}
._1b{width:79.145007pt;}
._19{width:96.552122pt;}
._24{width:97.444799pt;}
._17{width:99.075297pt;}
._1c{width:100.377867pt;}
._21{width:103.677568pt;}
._1d{width:140.787251pt;}
._1a{width:183.300792pt;}
._1e{width:185.930989pt;}
._1f{width:235.904724pt;}
._22{width:278.222771pt;}
._20{width:425.705955pt;}
._23{width:521.300759pt;}
.fs8{font-size:31.881171pt;}
.fs7{font-size:38.257298pt;}
.fs2{font-size:42.508050pt;}
.fsb{font-size:45.145105pt;}
.fsc{font-size:45.146460pt;}
.fs6{font-size:47.820800pt;}
.fs3{font-size:47.821756pt;}
.fs9{font-size:47.822585pt;}
.fsa{font-size:47.824020pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.762342pt;}
.fs0{font-size:76.514597pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:5.332427pt;}
.ydd{bottom:6.325189pt;}
.ye9{bottom:9.346087pt;}
.y131{bottom:17.108258pt;}
.yd9{bottom:19.961268pt;}
.y145{bottom:24.643542pt;}
.yd6{bottom:29.831998pt;}
.yd8{bottom:30.200990pt;}
.yd4{bottom:30.684385pt;}
.yd5{bottom:33.158504pt;}
.ydb{bottom:36.514563pt;}
.yd3{bottom:38.557906pt;}
.y133{bottom:40.336468pt;}
.y68{bottom:45.338667pt;}
.ydc{bottom:47.606653pt;}
.yd7{bottom:48.973814pt;}
.yda{bottom:52.726514pt;}
.y134{bottom:56.337820pt;}
.y135{bottom:72.339173pt;}
.y136{bottom:88.340526pt;}
.ye7{bottom:95.865277pt;}
.y137{bottom:104.341878pt;}
.ye6{bottom:114.105151pt;}
.y138{bottom:120.343231pt;}
.ye5{bottom:132.345024pt;}
.y37{bottom:135.669380pt;}
.y139{bottom:136.344584pt;}
.y17e{bottom:138.193430pt;}
.y1c1{bottom:139.644126pt;}
.ye8{bottom:140.811906pt;}
.y1f8{bottom:146.318926pt;}
.y36{bottom:149.549658pt;}
.ya5{bottom:150.056334pt;}
.y17d{bottom:150.181670pt;}
.y147{bottom:150.248485pt;}
.ye4{bottom:150.584897pt;}
.y10a{bottom:151.137689pt;}
.y1c0{bottom:151.632366pt;}
.y13a{bottom:152.345937pt;}
.y1f7{bottom:158.307166pt;}
.y17c{bottom:162.169910pt;}
.y35{bottom:163.431268pt;}
.y1bf{bottom:163.620606pt;}
.ya4{bottom:163.937945pt;}
.y109{bottom:165.019300pt;}
.y13b{bottom:168.347289pt;}
.ye3{bottom:168.824771pt;}
.y1f6{bottom:170.295406pt;}
.y1be{bottom:175.608845pt;}
.y65{bottom:177.312879pt;}
.y34{bottom:177.416881pt;}
.ya3{bottom:177.819556pt;}
.y108{bottom:178.900911pt;}
.y17b{bottom:181.099622pt;}
.y1f5{bottom:182.283645pt;}
.y13c{bottom:184.348642pt;}
.ye2{bottom:187.064644pt;}
.y64{bottom:191.194490pt;}
.y152{bottom:191.254492pt;}
.y33{bottom:191.298492pt;}
.ya2{bottom:191.701167pt;}
.y107{bottom:192.781189pt;}
.y1bd{bottom:192.911858pt;}
.y1f4{bottom:199.586658pt;}
.y13d{bottom:200.349995pt;}
.y1bc{bottom:204.900098pt;}
.y63{bottom:205.076101pt;}
.y32{bottom:205.180103pt;}
.ye1{bottom:205.304517pt;}
.ya1{bottom:205.582778pt;}
.y106{bottom:206.662800pt;}
.yd0{bottom:208.098828pt;}
.y1f3{bottom:211.574898pt;}
.y17a{bottom:212.648253pt;}
.y13e{bottom:216.351348pt;}
.y1bb{bottom:216.888338pt;}
.y62{bottom:218.957712pt;}
.y31{bottom:219.061714pt;}
.ya0{bottom:219.464389pt;}
.y105{bottom:220.544411pt;}
.ye0{bottom:223.544391pt;}
.y1f2{bottom:223.563138pt;}
.y179{bottom:226.529864pt;}
.y1ba{bottom:228.876577pt;}
.y13f{bottom:232.352700pt;}
.y61{bottom:232.839323pt;}
.y30{bottom:232.943325pt;}
.y9f{bottom:233.346000pt;}
.y104{bottom:234.426022pt;}
.y1f0{bottom:235.551377pt;}
.y1f1{bottom:235.604712pt;}
.ydf{bottom:241.784264pt;}
.y1b9{bottom:246.179590pt;}
.y60{bottom:246.720934pt;}
.y2f{bottom:246.824936pt;}
.y9e{bottom:247.226278pt;}
.y178{bottom:247.351613pt;}
.y103{bottom:248.307633pt;}
.y140{bottom:248.354053pt;}
.y1ef{bottom:252.854390pt;}
.y1b8{bottom:258.167830pt;}
.yde{bottom:260.024137pt;}
.y5f{bottom:260.602545pt;}
.y2e{bottom:260.706547pt;}
.y9d{bottom:261.107888pt;}
.y102{bottom:262.189243pt;}
.y141{bottom:264.663833pt;}
.y1ee{bottom:264.842630pt;}
.y1b7{bottom:270.156069pt;}
.y5e{bottom:274.484156pt;}
.y2c{bottom:274.588158pt;}
.y2d{bottom:274.646826pt;}
.y9c{bottom:274.989499pt;}
.y101{bottom:276.070854pt;}
.y177{bottom:278.901578pt;}
.y142{bottom:280.356758pt;}
.y1b6{bottom:282.144309pt;}
.yd2{bottom:286.264971pt;}
.y5d{bottom:288.365767pt;}
.y2b{bottom:288.468436pt;}
.y9b{bottom:288.871110pt;}
.y124{bottom:290.965819pt;}
.y151{bottom:291.848503pt;}
.y176{bottom:292.783189pt;}
.y1ed{bottom:294.133882pt;}
.y143{bottom:296.358111pt;}
.y100{bottom:298.480636pt;}
.y1b5{bottom:299.447322pt;}
.y5c{bottom:302.247378pt;}
.y2a{bottom:302.350047pt;}
.y9a{bottom:302.752721pt;}
.y122{bottom:304.847430pt;}
.y150{bottom:305.730114pt;}
.y1ec{bottom:306.122122pt;}
.y175{bottom:306.663466pt;}
.y123{bottom:307.620819pt;}
.y1b4{bottom:311.435562pt;}
.y144{bottom:312.359464pt;}
.y5b{bottom:316.128989pt;}
.y29{bottom:316.231658pt;}
.y99{bottom:316.634332pt;}
.y1eb{bottom:318.110362pt;}
.y121{bottom:318.729041pt;}
.y14f{bottom:319.610392pt;}
.y174{bottom:320.545077pt;}
.y1b3{bottom:323.423801pt;}
.y146{bottom:328.669244pt;}
.y5a{bottom:330.009266pt;}
.y28{bottom:330.113268pt;}
.y98{bottom:330.515943pt;}
.y120{bottom:332.610652pt;}
.y14e{bottom:333.492003pt;}
.y173{bottom:334.426688pt;}
.y1ea{bottom:335.412041pt;}
.y1b2{bottom:340.725481pt;}
.y59{bottom:343.890877pt;}
.y27{bottom:343.994879pt;}
.ycf{bottom:344.600225pt;}
.y97{bottom:344.904231pt;}
.y11f{bottom:346.492263pt;}
.y14d{bottom:347.373614pt;}
.y1e9{bottom:347.401614pt;}
.y172{bottom:348.308299pt;}
.yff{bottom:349.020313pt;}
.y1b1{bottom:352.715054pt;}
.y26{bottom:357.876490pt;}
.yce{bottom:358.481836pt;}
.y96{bottom:358.784509pt;}
.y1e8{bottom:359.389854pt;}
.y58{bottom:359.688527pt;}
.y11e{bottom:360.373874pt;}
.y14c{bottom:361.255225pt;}
.y171{bottom:362.189910pt;}
.y1b0{bottom:364.703294pt;}
.yfe{bottom:369.571391pt;}
.y25{bottom:371.862103pt;}
.ycd{bottom:372.363447pt;}
.y95{bottom:372.666119pt;}
.y57{bottom:373.570138pt;}
.y11d{bottom:374.255485pt;}
.y170{bottom:376.071521pt;}
.y1af{bottom:376.691533pt;}
.yfd{bottom:383.453002pt;}
.y24{bottom:385.743714pt;}
.ycc{bottom:386.245058pt;}
.y94{bottom:386.547730pt;}
.y56{bottom:387.451748pt;}
.y11c{bottom:388.137095pt;}
.y1e7{bottom:388.679773pt;}
.y16f{bottom:389.953132pt;}
.y1ae{bottom:393.993213pt;}
.yfc{bottom:397.334613pt;}
.y23{bottom:399.625325pt;}
.ycb{bottom:400.125335pt;}
.y93{bottom:400.429341pt;}
.y1e6{bottom:400.669346pt;}
.y55{bottom:401.333359pt;}
.y11b{bottom:402.018706pt;}
.y16e{bottom:403.834743pt;}
.y1ad{bottom:405.982786pt;}
.yfb{bottom:411.216224pt;}
.y14b{bottom:412.236244pt;}
.y1e5{bottom:412.657586pt;}
.y22{bottom:413.506936pt;}
.yca{bottom:414.006946pt;}
.y92{bottom:414.310952pt;}
.y54{bottom:415.214970pt;}
.y16d{bottom:417.716354pt;}
.y1ac{bottom:417.971025pt;}
.y11a{bottom:418.500369pt;}
.yfa{bottom:425.097835pt;}
.y14a{bottom:426.117855pt;}
.y21{bottom:427.388547pt;}
.yc9{bottom:427.888557pt;}
.y91{bottom:428.192563pt;}
.y53{bottom:429.096581pt;}
.y1e4{bottom:429.959265pt;}
.y16c{bottom:431.597965pt;}
.y119{bottom:432.381980pt;}
.y1ab{bottom:435.272705pt;}
.yf9{bottom:438.979446pt;}
.y149{bottom:439.999466pt;}
.y20{bottom:441.268825pt;}
.yc8{bottom:441.770168pt;}
.y1e3{bottom:441.947505pt;}
.y90{bottom:442.074174pt;}
.y52{bottom:442.978192pt;}
.y16b{bottom:445.479576pt;}
.y118{bottom:446.263591pt;}
.y1aa{bottom:447.262278pt;}
.yf8{bottom:452.859723pt;}
.y148{bottom:453.881077pt;}
.y1e2{bottom:453.937078pt;}
.y1f{bottom:455.150436pt;}
.yc7{bottom:455.651779pt;}
.y8f{bottom:455.955785pt;}
.y51{bottom:456.859803pt;}
.y1a9{bottom:459.250518pt;}
.y16a{bottom:459.361187pt;}
.y117{bottom:460.145202pt;}
.y1e1{bottom:465.925318pt;}
.yf7{bottom:466.741334pt;}
.y1e{bottom:469.032047pt;}
.yc6{bottom:469.533390pt;}
.y8e{bottom:469.837396pt;}
.y50{bottom:470.741414pt;}
.y169{bottom:473.242797pt;}
.y116{bottom:474.026813pt;}
.y1a8{bottom:476.552197pt;}
.y130{bottom:476.881537pt;}
.y1d{bottom:482.913658pt;}
.y1e0{bottom:483.226997pt;}
.yc5{bottom:483.415001pt;}
.y8d{bottom:483.719007pt;}
.y4f{bottom:484.623025pt;}
.y168{bottom:487.124408pt;}
.yf6{bottom:487.292412pt;}
.y115{bottom:487.908424pt;}
.y1a7{bottom:488.540437pt;}
.y1df{bottom:495.215237pt;}
.y1c{bottom:496.795268pt;}
.yc4{bottom:497.296612pt;}
.y8c{bottom:497.600618pt;}
.y4e{bottom:498.504636pt;}
.y1a6{bottom:500.530010pt;}
.y167{bottom:501.004686pt;}
.yf5{bottom:501.174023pt;}
.y114{bottom:501.790035pt;}
.y1de{bottom:507.204810pt;}
.y1b{bottom:510.676879pt;}
.yc3{bottom:511.178223pt;}
.y8b{bottom:511.987572pt;}
.y4d{bottom:512.386247pt;}
.y1a5{bottom:512.518250pt;}
.y166{bottom:514.886297pt;}
.y113{bottom:515.671646pt;}
.y1dd{bottom:519.193050pt;}
.y1a4{bottom:524.506489pt;}
.y1a{bottom:524.558490pt;}
.yc2{bottom:525.059834pt;}
.y8a{bottom:525.869183pt;}
.y4c{bottom:526.267858pt;}
.y165{bottom:528.767908pt;}
.y111{bottom:529.553257pt;}
.y112{bottom:529.613258pt;}
.yf4{bottom:533.119995pt;}
.y1dc{bottom:536.494729pt;}
.yc1{bottom:538.941445pt;}
.y89{bottom:539.750794pt;}
.y4b{bottom:540.149469pt;}
.y1a3{bottom:541.808169pt;}
.y164{bottom:542.649519pt;}
.y110{bottom:543.434868pt;}
.y19{bottom:545.484242pt;}
.yf3{bottom:547.001606pt;}
.y1db{bottom:548.484302pt;}
.y88{bottom:553.632405pt;}
.y1a2{bottom:553.797742pt;}
.y4a{bottom:554.029746pt;}
.y163{bottom:556.531130pt;}
.y10f{bottom:557.316479pt;}
.yc0{bottom:560.471209pt;}
.y1da{bottom:560.472542pt;}
.yf2{bottom:560.883217pt;}
.y1a1{bottom:565.785981pt;}
.y87{bottom:567.514016pt;}
.y49{bottom:567.911357pt;}
.y162{bottom:570.412741pt;}
.y10e{bottom:571.198090pt;}
.y1d9{bottom:572.460782pt;}
.yf1{bottom:574.764828pt;}
.y18{bottom:577.136875pt;}
.y1a0{bottom:577.774221pt;}
.y86{bottom:581.395627pt;}
.y48{bottom:583.709007pt;}
.y161{bottom:584.294352pt;}
.y10d{bottom:585.079701pt;}
.yf0{bottom:588.646439pt;}
.y19f{bottom:589.762461pt;}
.y17{bottom:591.018486pt;}
.ybf{bottom:592.729187pt;}
.y85{bottom:595.277238pt;}
.y47{bottom:597.590618pt;}
.y160{bottom:598.175963pt;}
.y10c{bottom:598.961312pt;}
.y1d8{bottom:601.752034pt;}
.yef{bottom:602.528050pt;}
.y16{bottom:605.004099pt;}
.ybe{bottom:606.610798pt;}
.y19e{bottom:607.065474pt;}
.y84{bottom:609.158849pt;}
.y46{bottom:611.472228pt;}
.y15f{bottom:612.057573pt;}
.y10b{bottom:612.841589pt;}
.y1d7{bottom:613.740274pt;}
.yee{bottom:616.408327pt;}
.y15{bottom:618.885710pt;}
.y19d{bottom:619.053713pt;}
.ybd{bottom:620.492409pt;}
.y83{bottom:623.040460pt;}
.y45{bottom:625.353839pt;}
.y19c{bottom:631.041953pt;}
.y14{bottom:632.767321pt;}
.y15e{bottom:632.879323pt;}
.ybc{bottom:634.374020pt;}
.y82{bottom:636.922071pt;}
.y44{bottom:639.235450pt;}
.y19b{bottom:643.030193pt;}
.y13{bottom:646.648932pt;}
.ybb{bottom:648.255631pt;}
.y81{bottom:650.802348pt;}
.y43{bottom:653.117061pt;}
.y1d5{bottom:655.019766pt;}
.yed{bottom:656.858469pt;}
.y1d6{bottom:657.485149pt;}
.y19a{bottom:660.333206pt;}
.y12{bottom:660.529209pt;}
.yba{bottom:662.137242pt;}
.y15d{bottom:664.427954pt;}
.y42{bottom:666.998672pt;}
.yec{bottom:670.740080pt;}
.y80{bottom:672.130775pt;}
.y199{bottom:672.321445pt;}
.y11{bottom:674.410820pt;}
.yb9{bottom:676.018853pt;}
.y15c{bottom:678.309565pt;}
.y41{bottom:680.880283pt;}
.y198{bottom:684.309685pt;}
.yeb{bottom:684.621691pt;}
.y10{bottom:688.292431pt;}
.yb8{bottom:689.900464pt;}
.y15b{bottom:692.191176pt;}
.y197{bottom:696.297925pt;}
.y40{bottom:696.677932pt;}
.yea{bottom:698.501969pt;}
.yf{bottom:702.174042pt;}
.yb7{bottom:703.780741pt;}
.y7f{bottom:704.186083pt;}
.y15a{bottom:706.072787pt;}
.y196{bottom:708.287498pt;}
.y3f{bottom:710.559543pt;}
.y1d4{bottom:713.600937pt;}
.ye{bottom:716.055653pt;}
.yb6{bottom:717.662352pt;}
.y7e{bottom:718.067693pt;}
.y159{bottom:719.954398pt;}
.y195{bottom:720.275738pt;}
.yd1{bottom:721.503762pt;}
.y3e{bottom:724.441154pt;}
.y1d3{bottom:725.589177pt;}
.yd{bottom:729.937264pt;}
.yb5{bottom:731.543963pt;}
.y7d{bottom:731.949304pt;}
.y194{bottom:732.263977pt;}
.y158{bottom:733.836009pt;}
.y1d2{bottom:737.577417pt;}
.y3d{bottom:738.322765pt;}
.yc{bottom:743.818875pt;}
.y193{bottom:744.252217pt;}
.yb4{bottom:745.425574pt;}
.y7c{bottom:745.830915pt;}
.y157{bottom:747.717620pt;}
.y1d0{bottom:749.565657pt;}
.y1d1{bottom:749.618991pt;}
.y3c{bottom:752.204376pt;}
.yb{bottom:757.700486pt;}
.yb3{bottom:759.307185pt;}
.y7b{bottom:759.712526pt;}
.y192{bottom:761.555230pt;}
.y156{bottom:761.599231pt;}
.y3b{bottom:766.085987pt;}
.y1cf{bottom:766.868669pt;}
.ya{bottom:771.582097pt;}
.yb2{bottom:773.188796pt;}
.y191{bottom:773.543470pt;}
.y7a{bottom:773.594137pt;}
.y155{bottom:775.480842pt;}
.y1ce{bottom:778.856909pt;}
.y3a{bottom:779.967598pt;}
.y9{bottom:785.463708pt;}
.y190{bottom:785.531709pt;}
.yb1{bottom:787.070407pt;}
.y79{bottom:787.981092pt;}
.y154{bottom:789.362453pt;}
.y1cd{bottom:790.845149pt;}
.y39{bottom:793.847876pt;}
.y18f{bottom:797.519949pt;}
.y8{bottom:799.345319pt;}
.yb0{bottom:800.952018pt;}
.y78{bottom:801.862703pt;}
.y1cc{bottom:802.833389pt;}
.y1cb{bottom:802.834722pt;}
.y153{bottom:803.244064pt;}
.y38{bottom:807.729487pt;}
.y18e{bottom:814.822962pt;}
.yaf{bottom:814.833629pt;}
.y77{bottom:815.744313pt;}
.y1ca{bottom:820.136401pt;}
.y7{bottom:821.611097pt;}
.y18d{bottom:826.811201pt;}
.yae{bottom:828.715240pt;}
.y76{bottom:829.625924pt;}
.y1c9{bottom:832.124641pt;}
.y18c{bottom:838.799441pt;}
.yad{bottom:842.596850pt;}
.y75{bottom:843.507535pt;}
.y1c8{bottom:844.112881pt;}
.y12f{bottom:850.610344pt;}
.y18b{bottom:850.787681pt;}
.y1c7{bottom:856.102454pt;}
.yac{bottom:857.186476pt;}
.y74{bottom:857.389146pt;}
.y12e{bottom:864.491955pt;}
.y18a{bottom:868.090694pt;}
.y6{bottom:868.838709pt;}
.yab{bottom:871.068087pt;}
.y73{bottom:871.270757pt;}
.y12d{bottom:878.372233pt;}
.y189{bottom:880.078933pt;}
.yaa{bottom:884.949697pt;}
.y72{bottom:885.152368pt;}
.y1c6{bottom:885.392373pt;}
.y187{bottom:892.067173pt;}
.y188{bottom:892.120508pt;}
.y12c{bottom:892.253844pt;}
.y5{bottom:892.489848pt;}
.y1c5{bottom:897.380613pt;}
.ya9{bottom:898.831308pt;}
.y71{bottom:899.033979pt;}
.y12b{bottom:906.135454pt;}
.y186{bottom:909.370186pt;}
.y4{bottom:910.158202pt;}
.ya8{bottom:912.712919pt;}
.y70{bottom:913.420934pt;}
.y12a{bottom:920.017065pt;}
.y185{bottom:921.358426pt;}
.ya7{bottom:926.594530pt;}
.y6f{bottom:927.302544pt;}
.y3{bottom:927.825222pt;}
.y184{bottom:933.346665pt;}
.ya6{bottom:940.476141pt;}
.y129{bottom:940.568143pt;}
.y6e{bottom:941.184155pt;}
.y183{bottom:945.334905pt;}
.y1c4{bottom:945.388239pt;}
.y2{bottom:954.320418pt;}
.y128{bottom:954.449754pt;}
.y6d{bottom:955.065766pt;}
.y182{bottom:957.324478pt;}
.y1c3{bottom:962.637918pt;}
.y6c{bottom:968.947377pt;}
.y181{bottom:974.626157pt;}
.y6b{bottom:982.828988pt;}
.y127{bottom:986.395726pt;}
.y180{bottom:986.614397pt;}
.y1{bottom:990.585143pt;}
.y6a{bottom:996.710599pt;}
.y17f{bottom:998.602637pt;}
.y126{bottom:1000.277337pt;}
.y69{bottom:1010.592210pt;}
.y1c2{bottom:1010.644211pt;}
.y125{bottom:1014.158948pt;}
.y67{bottom:1057.662667pt;}
.y66{bottom:1073.602667pt;}
.h4{height:28.267853pt;}
.h19{height:29.160522pt;}
.h18{height:29.245538pt;}
.h5{height:29.840776pt;}
.hb{height:32.470973pt;}
.h12{height:32.805725pt;}
.h7{height:32.901368pt;}
.h8{height:33.092655pt;}
.hc{height:33.714338pt;}
.h15{height:33.813684pt;}
.h17{height:33.814698pt;}
.h16{height:33.858829pt;}
.h14{height:34.987457pt;}
.hd{height:35.866317pt;}
.h10{height:35.866939pt;}
.h11{height:35.868015pt;}
.h9{height:38.096982pt;}
.ha{height:39.389124pt;}
.he{height:42.423071pt;}
.h6{height:44.123541pt;}
.h3{height:51.404316pt;}
.h2{height:52.948101pt;}
.hf{height:302.374299pt;}
.h13{height:339.644087pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:302.373241pt;}
.w2{width:642.564662pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x57{left:3.137245pt;}
.x58{left:5.343483pt;}
.x42{left:12.303381pt;}
.x30{left:15.445182pt;}
.x3e{left:19.961867pt;}
.x5b{left:26.506204pt;}
.x3b{left:30.685306pt;}
.x3c{left:33.159498pt;}
.x40{left:36.515658pt;}
.x3a{left:38.559063pt;}
.x41{left:47.608081pt;}
.x3d{left:48.975283pt;}
.x3f{left:52.728096pt;}
.x59{left:58.316981pt;}
.x5a{left:64.878474pt;}
.x12{left:74.993084pt;}
.x9{left:76.355818pt;}
.x4{left:80.629365pt;}
.x64{left:82.100106pt;}
.x47{left:92.788640pt;}
.xb{left:96.712836pt;}
.x43{left:103.397243pt;}
.x66{left:106.362652pt;}
.x65{left:107.776056pt;}
.x1{left:111.921597pt;}
.x2{left:112.940314pt;}
.x31{left:117.308942pt;}
.x55{left:119.512453pt;}
.x5f{left:150.250180pt;}
.x5e{left:151.247563pt;}
.x56{left:152.769547pt;}
.x10{left:163.229495pt;}
.x32{left:166.474934pt;}
.x6{left:170.700535pt;}
.xa{left:173.362002pt;}
.x11{left:176.312816pt;}
.x48{left:181.061053pt;}
.x67{left:194.572396pt;}
.x8{left:198.317916pt;}
.x33{left:215.640927pt;}
.x46{left:223.575179pt;}
.x5{left:265.222595pt;}
.x5c{left:267.617781pt;}
.x4b{left:279.532643pt;}
.x4c{left:289.090455pt;}
.xc{left:294.421388pt;}
.x5d{left:297.040654pt;}
.x39{left:298.493397pt;}
.x7{left:308.394086pt;}
.x34{left:313.972912pt;}
.x54{left:319.845326pt;}
.x35{left:363.138904pt;}
.x4d{left:365.443605pt;}
.x4e{left:375.001417pt;}
.xf{left:382.388000pt;}
.x36{left:412.304897pt;}
.x13{left:415.371435pt;}
.xd{left:416.662166pt;}
.x62{left:422.274447pt;}
.xe{left:436.887177pt;}
.x22{left:445.130256pt;}
.x6a{left:446.536993pt;}
.x63{left:447.950397pt;}
.x23{left:452.533293pt;}
.x6c{left:458.397586pt;}
.x29{left:461.308398pt;}
.x2a{left:468.711435pt;}
.x1c{left:470.110172pt;}
.x6d{left:475.471773pt;}
.x6b{left:476.643832pt;}
.x1d{left:477.565211pt;}
.x2c{left:479.087954pt;}
.x2b{left:481.901428pt;}
.x24{left:492.317949pt;}
.x18{left:500.261013pt;}
.x4a{left:501.491741pt;}
.x49{left:503.817190pt;}
.x19{left:507.716052pt;}
.x37{left:510.636882pt;}
.x68{left:514.339050pt;}
.x60{left:516.199143pt;}
.x61{left:520.159341pt;}
.x4f{left:528.323749pt;}
.x2d{left:530.033168pt;}
.x14{left:532.593296pt;}
.x15{left:539.893661pt;}
.x50{left:546.565994pt;}
.x2e{left:548.332749pt;}
.x25{left:551.418237pt;}
.x26{left:558.821274pt;}
.x38{left:559.802874pt;}
.x1e{left:561.790756pt;}
.x3{left:564.776238pt;}
.x1f{left:569.193792pt;}
.x2f{left:588.814773pt;}
.x51{left:590.685534pt;}
.x45{left:603.058368pt;}
.x52{left:611.723919pt;}
.x44{left:616.970067pt;}
.x27{left:619.324299pt;}
.x28{left:626.727336pt;}
.x1a{left:637.803889pt;}
.x1b{left:645.206926pt;}
.x20{left:653.419337pt;}
.x21{left:660.822374pt;}
.x16{left:670.260179pt;}
.x17{left:677.663216pt;}
.x53{left:702.529792pt;}
.x69{left:713.793022pt;}
}




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