
    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_7dc5ab874263451c5c1ca512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_a451db7cf6961d308b1fb8ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_e8e2c90a7e0973eb3cf1ac5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_ab227713496c8433e1980019.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_057e41fa5294800ade85a031.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_98e726552d3814be337ab7d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.125977;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_d33834d245dd4f96ed19a5ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_cef29de4600717c61000d07a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_161071a122c3e89620a6b222.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_1629935ceb047a7afd4945c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_28066311494372ebf59ba195.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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_f4481ba3a5da534260cf5b9e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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_3b375fc058e1f5f2e0b65ed9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.125977;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_3266dbf856bcd83748a4e41e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091309;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_3243c6cb2f486cb26a10dfa7.woff2')format("woff");}.fff{font-family:fff;line-height:1.091309;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_913c81ccb7cedae4dc97642e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.095703;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_2c4fd51669a0fd03aa19da14.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;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_fa4b1510d1e0820f32bd91f3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.088379;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:ff13;src:url('chunks/assets/font_4b1ac048cf2470c5b860f6b1.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104004;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:ff14;src:url('chunks/assets/font_eb2a5e1cd123b2cfd4df31d4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.093262;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:ff15;src:url('chunks/assets/font_7bf5892b753b2ef8b74b0418.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.095703;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:ff16;src:url('chunks/assets/font_c54d7c65914fb573e4122e7a.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.125977;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:ff17;src:url('chunks/assets/font_f2310a3312385b9d9aabc19f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.091309;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:ff18;src:url('chunks/assets/font_282d2738189acdfc3aecd2d9.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.104004;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:ff19;src:url('chunks/assets/font_9e9e94644f49128128eee8aa.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.125977;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:ff1a;src:url('chunks/assets/font_239edaca1c55a74a82c24b23.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.088379;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:ff1b;src:url('chunks/assets/font_4333ff0c6a8dbba2142e5339.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.088379;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:ff1c;src:url('chunks/assets/font_8958a6d0d7f2eb103aaa90ab.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.095703;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:ff1d;src:url('chunks/assets/font_1faf8bf167f4e1fee8c534b8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.093262;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:ff1e;src:url('chunks/assets/font_433dfb0146192027ae664df3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.088379;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:ff1f;src:url('chunks/assets/font_bbe2cbb42fdbdd579a2e56f5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.125977;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:ff20;src:url('chunks/assets/font_198fb1c569305fdee7cf83a4.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.091309;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;}
.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);}
.v2{vertical-align:-27.972000px;}
.v6{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.801000px;}
.v5{vertical-align:17.982000px;}
.v4{vertical-align:21.978600px;}
.v1{vertical-align:27.972000px;}
.ls10{letter-spacing:-7.740000px;}
.ls34{letter-spacing:-2.301684px;}
.lsf{letter-spacing:-2.100000px;}
.ls15{letter-spacing:-1.998000px;}
.ls38{letter-spacing:-1.914000px;}
.ls35{letter-spacing:-1.811964px;}
.lsc{letter-spacing:-1.800000px;}
.ls24{letter-spacing:-1.782000px;}
.ls31{letter-spacing:-1.320000px;}
.ls51{letter-spacing:-1.254000px;}
.lsd{letter-spacing:-1.200000px;}
.ls14{letter-spacing:-1.080000px;}
.ls53{letter-spacing:-1.026000px;}
.ls32{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.594000px;}
.ls52{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.489720px;}
.ls25{letter-spacing:-0.486000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000600px;}
.lsa{letter-spacing:0.006000px;}
.ls26{letter-spacing:0.006600px;}
.ls37{letter-spacing:0.007200px;}
.ls54{letter-spacing:0.008400px;}
.ls2{letter-spacing:0.009000px;}
.ls11{letter-spacing:0.009600px;}
.ls7{letter-spacing:0.010200px;}
.ls8{letter-spacing:0.010800px;}
.ls55{letter-spacing:0.011400px;}
.ls3{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.015600px;}
.ls5{letter-spacing:0.019200px;}
.ls2f{letter-spacing:0.565800px;}
.ls30{letter-spacing:0.566400px;}
.ls3b{letter-spacing:0.663000px;}
.ls4d{letter-spacing:1.792800px;}
.lsb{letter-spacing:1.803600px;}
.ls56{letter-spacing:2.083800px;}
.ls41{letter-spacing:2.156400px;}
.ls4b{letter-spacing:2.220000px;}
.ls4c{letter-spacing:2.220600px;}
.ls39{letter-spacing:2.684400px;}
.ls3a{letter-spacing:2.685000px;}
.ls2d{letter-spacing:2.794200px;}
.ls2e{letter-spacing:2.794800px;}
.ls19{letter-spacing:3.117600px;}
.ls18{letter-spacing:3.118200px;}
.ls36{letter-spacing:3.151200px;}
.ls3c{letter-spacing:3.258000px;}
.ls3d{letter-spacing:3.258600px;}
.ls16{letter-spacing:3.267000px;}
.ls17{letter-spacing:3.267600px;}
.ls40{letter-spacing:3.955200px;}
.ls47{letter-spacing:4.435800px;}
.ls48{letter-spacing:4.436400px;}
.ls46{letter-spacing:4.758000px;}
.ls45{letter-spacing:5.282400px;}
.ls50{letter-spacing:6.369000px;}
.ls4e{letter-spacing:6.369600px;}
.ls4f{letter-spacing:6.370200px;}
.ls58{letter-spacing:6.654000px;}
.ls57{letter-spacing:6.654600px;}
.ls49{letter-spacing:7.162800px;}
.ls4a{letter-spacing:7.163400px;}
.ls2a{letter-spacing:8.053200px;}
.ls29{letter-spacing:8.053800px;}
.ls21{letter-spacing:8.359200px;}
.ls22{letter-spacing:8.359800px;}
.ls1c{letter-spacing:10.066800px;}
.ls1b{letter-spacing:10.067400px;}
.ls43{letter-spacing:10.330800px;}
.ls44{letter-spacing:10.331400px;}
.ls1e{letter-spacing:10.799400px;}
.ls1d{letter-spacing:10.800000px;}
.ls13{letter-spacing:11.097000px;}
.ls12{letter-spacing:11.097600px;}
.ls3f{letter-spacing:12.816000px;}
.ls3e{letter-spacing:12.816600px;}
.ls42{letter-spacing:13.402800px;}
.ls1{letter-spacing:14.520000px;}
.ls28{letter-spacing:16.577400px;}
.ls27{letter-spacing:16.578000px;}
.ls20{letter-spacing:18.327600px;}
.ls1f{letter-spacing:18.328200px;}
.ls0{letter-spacing:18.480000px;}
.ls1a{letter-spacing:21.418800px;}
.ls2c{letter-spacing:22.168800px;}
.ls2b{letter-spacing:22.169400px;}
.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;}
}
.ws4{word-spacing:-45.000000px;}
.wsa{word-spacing:-33.840000px;}
.ws5{word-spacing:-31.500000px;}
.ws6{word-spacing:-25.200000px;}
.ws0{word-spacing:-21.000000px;}
.ws7{word-spacing:-16.500000px;}
.ws3f{word-spacing:-15.906000px;}
.ws57{word-spacing:-15.840000px;}
.ws94{word-spacing:-15.246000px;}
.ws72{word-spacing:-15.180000px;}
.ws9{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.700000px;}
.ws73{word-spacing:-14.586000px;}
.ws3{word-spacing:-14.520000px;}
.wsd{word-spacing:-13.800000px;}
.ws27{word-spacing:-13.500000px;}
.ws42{word-spacing:-13.014000px;}
.ws96{word-spacing:-12.960000px;}
.wsc{word-spacing:-12.900000px;}
.ws95{word-spacing:-12.474000px;}
.ws40{word-spacing:-12.420000px;}
.ws26{word-spacing:-12.243000px;}
.ws58{word-spacing:-11.753280px;}
.ws8{word-spacing:-11.550000px;}
.ws28{word-spacing:-11.502000px;}
.wsb{word-spacing:-10.500000px;}
.ws5a{word-spacing:-10.431036px;}
.ws59{word-spacing:-9.941316px;}
.ws3e{word-spacing:-9.619500px;}
.ws41{word-spacing:-9.450000px;}
.ws4f{word-spacing:-7.656000px;}
.ws4d{word-spacing:-6.666000px;}
.wsc4{word-spacing:-4.320000px;}
.ws10{word-spacing:-3.660000px;}
.ws4c{word-spacing:-3.234000px;}
.ws51{word-spacing:-3.168000px;}
.ws66{word-spacing:-2.904000px;}
.wsc0{word-spacing:-2.880000px;}
.ws8f{word-spacing:-2.772000px;}
.wsba{word-spacing:-2.580000px;}
.ws83{word-spacing:-2.574000px;}
.ws29{word-spacing:-2.520000px;}
.wsa4{word-spacing:-2.484000px;}
.ws63{word-spacing:-2.376000px;}
.ws52{word-spacing:-2.310000px;}
.wsad{word-spacing:-2.244000px;}
.ws37{word-spacing:-2.214000px;}
.ws8d{word-spacing:-2.178000px;}
.ws13{word-spacing:-2.160000px;}
.ws36{word-spacing:-1.914000px;}
.wsbc{word-spacing:-1.860000px;}
.ws4e{word-spacing:-1.836000px;}
.wsab{word-spacing:-1.782000px;}
.wsbb{word-spacing:-1.740000px;}
.ws7c{word-spacing:-1.716000px;}
.wsa9{word-spacing:-1.650000px;}
.ws2e{word-spacing:-1.620000px;}
.ws81{word-spacing:-1.584000px;}
.ws2d{word-spacing:-1.512000px;}
.ws76{word-spacing:-1.452000px;}
.wsb7{word-spacing:-1.404000px;}
.wsb0{word-spacing:-1.386000px;}
.ws8e{word-spacing:-1.320000px;}
.ws2a{word-spacing:-1.296000px;}
.wsa6{word-spacing:-1.134000px;}
.ws82{word-spacing:-1.122000px;}
.ws17{word-spacing:-1.080000px;}
.wsaa{word-spacing:-1.056000px;}
.wsc3{word-spacing:-1.020000px;}
.ws49{word-spacing:-0.924000px;}
.ws12{word-spacing:-0.900000px;}
.ws54{word-spacing:-0.864000px;}
.ws8c{word-spacing:-0.792000px;}
.wsc2{word-spacing:-0.780000px;}
.ws38{word-spacing:-0.756000px;}
.ws9b{word-spacing:-0.726000px;}
.ws64{word-spacing:-0.660000px;}
.ws87{word-spacing:-0.594000px;}
.ws99{word-spacing:-0.528000px;}
.ws65{word-spacing:-0.462000px;}
.ws90{word-spacing:-0.330000px;}
.ws7f{word-spacing:-0.264000px;}
.ws31{word-spacing:-0.216000px;}
.ws93{word-spacing:-0.162000px;}
.ws6c{word-spacing:-0.132000px;}
.ws2{word-spacing:0.000000px;}
.ws45{word-spacing:0.066000px;}
.wsbe{word-spacing:0.180000px;}
.ws68{word-spacing:0.264000px;}
.wsb1{word-spacing:0.396000px;}
.ws30{word-spacing:0.432000px;}
.ws98{word-spacing:0.462000px;}
.wsb6{word-spacing:0.528000px;}
.wsa7{word-spacing:0.540000px;}
.wsaf{word-spacing:0.594000px;}
.ws14{word-spacing:0.600000px;}
.ws67{word-spacing:0.660000px;}
.ws5b{word-spacing:0.702000px;}
.ws85{word-spacing:0.726000px;}
.ws9a{word-spacing:0.792000px;}
.ws80{word-spacing:0.924000px;}
.ws25{word-spacing:1.026000px;}
.ws33{word-spacing:1.080000px;}
.ws9d{word-spacing:1.122000px;}
.ws75{word-spacing:1.188000px;}
.wsc1{word-spacing:1.200000px;}
.ws97{word-spacing:1.254000px;}
.ws62{word-spacing:1.320000px;}
.ws6e{word-spacing:1.350000px;}
.ws2c{word-spacing:1.404000px;}
.ws5e{word-spacing:1.452000px;}
.wsb9{word-spacing:1.518000px;}
.wsb3{word-spacing:1.584000px;}
.ws2f{word-spacing:1.728000px;}
.ws53{word-spacing:1.782000px;}
.wsf{word-spacing:1.800000px;}
.ws77{word-spacing:1.914000px;}
.wsbd{word-spacing:2.100000px;}
.ws86{word-spacing:2.112000px;}
.ws18{word-spacing:2.160000px;}
.ws44{word-spacing:2.178000px;}
.wsa3{word-spacing:2.214000px;}
.ws88{word-spacing:2.244000px;}
.ws5f{word-spacing:2.376000px;}
.ws35{word-spacing:2.442000px;}
.ws55{word-spacing:2.484000px;}
.wsb4{word-spacing:2.508000px;}
.ws69{word-spacing:2.574000px;}
.wsae{word-spacing:2.640000px;}
.ws5c{word-spacing:2.700000px;}
.ws9c{word-spacing:2.838000px;}
.ws6f{word-spacing:2.862000px;}
.ws1b{word-spacing:2.880000px;}
.ws4b{word-spacing:2.904000px;}
.ws2b{word-spacing:2.970000px;}
.ws48{word-spacing:3.102000px;}
.ws1a{word-spacing:3.120000px;}
.ws78{word-spacing:3.168000px;}
.wsb8{word-spacing:3.234000px;}
.ws43{word-spacing:3.300000px;}
.ws19{word-spacing:3.480000px;}
.wse{word-spacing:3.540000px;}
.ws6d{word-spacing:3.762000px;}
.ws7e{word-spacing:3.828000px;}
.ws74{word-spacing:3.960000px;}
.wsa8{word-spacing:4.224000px;}
.ws15{word-spacing:4.260000px;}
.ws89{word-spacing:4.356000px;}
.wsa0{word-spacing:4.422000px;}
.ws70{word-spacing:4.482000px;}
.ws7a{word-spacing:4.488000px;}
.ws84{word-spacing:4.752000px;}
.ws11{word-spacing:4.980000px;}
.ws32{word-spacing:5.022000px;}
.wsb2{word-spacing:5.148000px;}
.ws9f{word-spacing:5.280000px;}
.ws9e{word-spacing:5.346000px;}
.ws91{word-spacing:5.412000px;}
.ws39{word-spacing:5.616000px;}
.ws47{word-spacing:5.676000px;}
.ws8b{word-spacing:6.072000px;}
.ws4a{word-spacing:6.138000px;}
.ws60{word-spacing:6.204000px;}
.ws7d{word-spacing:6.270000px;}
.ws8a{word-spacing:6.402000px;}
.wsb5{word-spacing:6.534000px;}
.wsbf{word-spacing:6.660000px;}
.ws6a{word-spacing:6.732000px;}
.ws61{word-spacing:6.864000px;}
.wsa5{word-spacing:6.912000px;}
.ws7b{word-spacing:6.996000px;}
.ws46{word-spacing:7.062000px;}
.wsa2{word-spacing:7.182000px;}
.wsac{word-spacing:7.194000px;}
.ws5d{word-spacing:7.524000px;}
.ws16{word-spacing:7.740000px;}
.wsa1{word-spacing:7.788000px;}
.ws6b{word-spacing:8.052000px;}
.wsc5{word-spacing:8.160000px;}
.ws34{word-spacing:8.712000px;}
.ws79{word-spacing:8.778000px;}
.ws3a{word-spacing:8.802000px;}
.ws3c{word-spacing:11.124000px;}
.ws50{word-spacing:18.348000px;}
.ws92{word-spacing:22.572000px;}
.ws71{word-spacing:24.408000px;}
.ws3b{word-spacing:47.034000px;}
.ws22{word-spacing:383.040000px;}
.ws24{word-spacing:758.040000px;}
.ws1c{word-spacing:953.040000px;}
.ws23{word-spacing:1073.040000px;}
.ws56{word-spacing:1107.277800px;}
.ws1f{word-spacing:1283.040000px;}
.ws3d{word-spacing:1444.029000px;}
.ws20{word-spacing:1478.040000px;}
.ws21{word-spacing:1825.260000px;}
.ws1d{word-spacing:1929.000000px;}
.ws1e{word-spacing:2113.020000px;}
._f{margin-left:-47.014800px;}
._16{margin-left:-23.641872px;}
._1d{margin-left:-22.576800px;}
._1b{margin-left:-10.725600px;}
._17{margin-left:-9.553200px;}
._5{margin-left:-7.812000px;}
._0{margin-left:-6.216000px;}
._1{margin-left:-4.620000px;}
._7{margin-left:-2.776200px;}
._4{margin-left:-1.512000px;}
._3{width:1.026600px;}
._b{width:2.423400px;}
._8{width:3.540000px;}
._a{width:4.615800px;}
._9{width:5.632800px;}
._c{width:7.516200px;}
._13{width:8.530800px;}
._e{width:10.491600px;}
._19{width:12.160800px;}
._18{width:13.447200px;}
._2{width:14.520000px;}
._1a{width:16.200000px;}
._6{width:18.348000px;}
._10{width:21.384000px;}
._14{width:22.426200px;}
._1c{width:23.976000px;}
._12{width:42.066000px;}
._11{width:45.414000px;}
._15{width:47.034000px;}
._d{width:49.248000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(35,31,32);}
.fsf{font-size:31.482000px;}
.fse{font-size:37.800000px;}
.fsd{font-size:38.478000px;}
.fs9{font-size:42.000000px;}
.fs7{font-size:46.200000px;}
.fsc{font-size:48.972000px;}
.fsb{font-size:54.000000px;}
.fs2{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs5{font-size:100.800000px;}
.fs4{font-size:126.000000px;}
.fs6{font-size:144.000000px;}
.fs3{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:96.146100px;}
.y25{bottom:112.646100px;}
.y4c{bottom:120.492000px;}
.y6c{bottom:121.009050px;}
.y14b{bottom:127.558950px;}
.yb5{bottom:127.559100px;}
.ydd{bottom:134.551950px;}
.y103{bottom:134.552100px;}
.y4b{bottom:136.992000px;}
.y24{bottom:137.650050px;}
.y1ab{bottom:138.175650px;}
.y6e{bottom:138.862050px;}
.y14a{bottom:144.058950px;}
.yb4{bottom:144.059100px;}
.y23{bottom:154.150050px;}
.ya{bottom:154.478850px;}
.ydc{bottom:155.303850px;}
.y102{bottom:155.304000px;}
.y6d{bottom:155.362050px;}
.y4a{bottom:157.743900px;}
.y6b{bottom:158.509050px;}
.y1aa{bottom:159.677700px;}
.yb3{bottom:164.811000px;}
.y149{bottom:167.551950px;}
.ydb{bottom:169.062900px;}
.y22{bottom:170.650050px;}
.y49{bottom:174.243900px;}
.y101{bottom:176.056050px;}
.y1a9{bottom:181.179600px;}
.y148{bottom:181.310850px;}
.yb2{bottom:185.562900px;}
.y127{bottom:186.453300px;}
.y21{bottom:187.150050px;}
.y16b{bottom:189.441300px;}
.y100{bottom:189.814950px;}
.yda{bottom:192.555900px;}
.y18b{bottom:192.556050px;}
.y48{bottom:194.995950px;}
.y6a{bottom:196.009050px;}
.y8f{bottom:196.914300px;}
.y147{bottom:197.810850px;}
.y1a8{bottom:198.429600px;}
.yb1{bottom:202.062900px;}
.y126{bottom:204.453300px;}
.yd9{bottom:206.314800px;}
.y16a{bottom:209.691300px;}
.y8e{bottom:210.673200px;}
.yff{bottom:213.307950px;}
.y146{bottom:214.310850px;}
.y1a7{bottom:215.679600px;}
.y47{bottom:215.747850px;}
.y69{bottom:217.009050px;}
.yb0{bottom:218.562900px;}
.y20{bottom:220.150050px;}
.y125{bottom:222.453300px;}
.yd8{bottom:222.814800px;}
.y18a{bottom:227.066850px;}
.y169{bottom:229.941300px;}
.y145{bottom:230.810850px;}
.y46{bottom:232.247850px;}
.y8d{bottom:234.166200px;}
.y1a6{bottom:237.181650px;}
.yd7{bottom:239.314800px;}
.yaf{bottom:239.314950px;}
.y1f{bottom:242.402100px;}
.yfe{bottom:242.439150px;}
.y189{bottom:243.566850px;}
.y124{bottom:244.705200px;}
.y144{bottom:247.310850px;}
.y8c{bottom:247.925100px;}
.y168{bottom:250.191300px;}
.y45{bottom:252.999900px;}
.y68{bottom:253.009050px;}
.y1a5{bottom:254.431650px;}
.yae{bottom:255.814950px;}
.yfd{bottom:261.939150px;}
.y123{bottom:262.705200px;}
.yd6{bottom:262.807800px;}
.y8b{bottom:264.425100px;}
.y188{bottom:267.059850px;}
.y44{bottom:269.499900px;}
.y167{bottom:270.441300px;}
.y143{bottom:270.803850px;}
.y1a4{bottom:275.933550px;}
.yfc{bottom:280.689150px;}
.y122{bottom:280.705200px;}
.y187{bottom:280.818900px;}
.y8a{bottom:280.925100px;}
.y1e{bottom:287.413950px;}
.y43{bottom:290.251800px;}
.y67{bottom:290.509050px;}
.y166{bottom:290.691300px;}
.yd5{bottom:293.487150px;}
.yad{bottom:294.073350px;}
.y89{bottom:297.425100px;}
.y1a3{bottom:297.435450px;}
.y121{bottom:298.705200px;}
.yfb{bottom:299.439150px;}
.y186{bottom:304.311900px;}
.y42{bottom:306.751800px;}
.y142{bottom:307.797300px;}
.y165{bottom:310.941300px;}
.yac{bottom:312.073350px;}
.yd4{bottom:312.987150px;}
.y1a2{bottom:314.685450px;}
.y1d{bottom:315.417750px;}
.y120{bottom:316.705200px;}
.yfa{bottom:318.189150px;}
.y88{bottom:320.918100px;}
.y66{bottom:326.509050px;}
.y141{bottom:326.997300px;}
.y41{bottom:327.503700px;}
.yab{bottom:330.073350px;}
.y164{bottom:331.191300px;}
.yd3{bottom:332.037150px;}
.y185{bottom:334.463100px;}
.y11f{bottom:334.705200px;}
.y1a1{bottom:336.187500px;}
.y40{bottom:344.003700px;}
.yf9{bottom:345.442950px;}
.y140{bottom:346.197300px;}
.yd2{bottom:351.087150px;}
.y87{bottom:351.403950px;}
.y163{bottom:351.441300px;}
.y11e{bottom:352.705200px;}
.y1a0{bottom:353.437500px;}
.y184{bottom:353.963100px;}
.yaa{bottom:356.577150px;}
.y1c{bottom:358.669800px;}
.y65{bottom:364.009050px;}
.yf8{bottom:364.192950px;}
.y3f{bottom:364.755750px;}
.y13f{bottom:365.397300px;}
.yd1{bottom:370.137150px;}
.y4{bottom:370.156800px;}
.y86{bottom:370.903950px;}
.y162{bottom:371.691300px;}
.y183{bottom:374.213100px;}
.y19f{bottom:374.939550px;}
.ya9{bottom:376.077150px;}
.y1b{bottom:378.169800px;}
.y11d{bottom:379.209150px;}
.yf7{bottom:382.942950px;}
.y13e{bottom:384.597300px;}
.y3e{bottom:385.507800px;}
.y9{bottom:386.429400px;}
.y64{bottom:386.509050px;}
.yd0{bottom:389.187150px;}
.y85{bottom:390.403950px;}
.y182{bottom:394.463100px;}
.y19e{bottom:396.441450px;}
.y1a{bottom:397.669800px;}
.y11c{bottom:398.709150px;}
.y161{bottom:400.445250px;}
.yf6{bottom:401.692950px;}
.y13d{bottom:403.797300px;}
.ya8{bottom:404.081250px;}
.y3d{bottom:406.259700px;}
.y63{bottom:407.509050px;}
.ycf{bottom:408.237150px;}
.y84{bottom:409.903950px;}
.y181{bottom:414.713100px;}
.y3{bottom:416.420550px;}
.y19{bottom:417.169800px;}
.y19d{bottom:417.943350px;}
.y11b{bottom:418.209150px;}
.y160{bottom:420.695250px;}
.ya7{bottom:422.081250px;}
.y3c{bottom:422.759700px;}
.yce{bottom:427.287150px;}
.yf5{bottom:428.947050px;}
.y83{bottom:429.403950px;}
.y13c{bottom:431.501100px;}
.y180{bottom:434.963100px;}
.y11a{bottom:437.709150px;}
.y19c{bottom:439.445400px;}
.ya6{bottom:440.081250px;}
.y15f{bottom:440.945250px;}
.y62{bottom:443.509050px;}
.y3b{bottom:443.511600px;}
.y18{bottom:445.173750px;}
.ycd{bottom:446.337150px;}
.y13b{bottom:450.701250px;}
.y17f{bottom:455.213100px;}
.y119{bottom:457.209150px;}
.y82{bottom:457.407900px;}
.y8{bottom:458.429400px;}
.y3a{bottom:460.011600px;}
.yf4{bottom:460.452900px;}
.y19b{bottom:460.947300px;}
.y15e{bottom:461.195250px;}
.ycc{bottom:465.387150px;}
.ya5{bottom:466.585050px;}
.y2{bottom:467.420550px;}
.y13a{bottom:469.901250px;}
.y17e{bottom:475.463100px;}
.y19a{bottom:478.197300px;}
.yf3{bottom:479.202900px;}
.y39{bottom:480.763650px;}
.y61{bottom:481.009050px;}
.y15d{bottom:481.445250px;}
.y17{bottom:484.173750px;}
.y118{bottom:485.213100px;}
.ya4{bottom:487.337100px;}
.y139{bottom:489.101100px;}
.ycb{bottom:493.391100px;}
.y17d{bottom:495.713100px;}
.y38{bottom:497.263650px;}
.yf2{bottom:497.952900px;}
.y199{bottom:499.699350px;}
.y81{bottom:502.250700px;}
.y117{bottom:504.713100px;}
.y16{bottom:505.173750px;}
.y1{bottom:505.180350px;}
.ya3{bottom:505.337100px;}
.y15c{bottom:510.199200px;}
.yca{bottom:511.391100px;}
.y7{bottom:515.689200px;}
.y17c{bottom:515.963100px;}
.yf1{bottom:516.702900px;}
.y138{bottom:516.805050px;}
.y198{bottom:516.949350px;}
.y37{bottom:518.015550px;}
.y60{bottom:518.509050px;}
.y15{bottom:521.673750px;}
.ya2{bottom:523.337100px;}
.y116{bottom:524.213100px;}
.y80{bottom:526.002750px;}
.yc9{bottom:529.391100px;}
.y15b{bottom:530.449200px;}
.yf0{bottom:535.452900px;}
.y137{bottom:536.005050px;}
.y17b{bottom:536.213100px;}
.y14{bottom:538.173750px;}
.y197{bottom:538.451250px;}
.y36{bottom:538.767600px;}
.y5f{bottom:539.509050px;}
.y7f{bottom:542.502750px;}
.y115{bottom:543.713100px;}
.yc8{bottom:547.391100px;}
.ya1{bottom:549.841050px;}
.y15a{bottom:550.699200px;}
.yef{bottom:554.202900px;}
.y13{bottom:554.673750px;}
.y136{bottom:555.205050px;}
.y35{bottom:555.267600px;}
.y17a{bottom:556.463100px;}
.y7e{bottom:559.002750px;}
.y196{bottom:559.953300px;}
.y114{bottom:563.213100px;}
.yc7{bottom:565.391100px;}
.ya0{bottom:567.841050px;}
.y12{bottom:571.173750px;}
.yee{bottom:572.952900px;}
.y135{bottom:574.405200px;}
.y7d{bottom:575.502750px;}
.y34{bottom:576.019500px;}
.y179{bottom:576.713100px;}
.y5e{bottom:577.009050px;}
.y159{bottom:579.453150px;}
.y195{bottom:581.455200px;}
.y113{bottom:582.713100px;}
.y9f{bottom:585.841050px;}
.yc6{bottom:587.643150px;}
.yed{bottom:591.702900px;}
.y7c{bottom:592.002750px;}
.y134{bottom:593.605200px;}
.y33{bottom:596.771550px;}
.y178{bottom:596.963100px;}
.y5d{bottom:598.009050px;}
.y158{bottom:599.703150px;}
.y194{bottom:602.957100px;}
.y11{bottom:604.173750px;}
.yc5{bottom:605.643150px;}
.yec{bottom:610.452900px;}
.y112{bottom:610.717050px;}
.y9e{bottom:612.345000px;}
.y7b{bottom:612.754650px;}
.y32{bottom:613.271550px;}
.y177{bottom:617.213100px;}
.y157{bottom:619.953150px;}
.y133{bottom:621.309150px;}
.yc4{bottom:623.643150px;}
.y193{bottom:624.459150px;}
.y111{bottom:628.717050px;}
.yeb{bottom:629.202900px;}
.y9d{bottom:630.345000px;}
.y5c{bottom:634.009050px;}
.y31{bottom:634.023450px;}
.y10{bottom:637.173750px;}
.y176{bottom:637.463100px;}
.y7a{bottom:639.648900px;}
.y156{bottom:640.203150px;}
.yc3{bottom:641.643150px;}
.y192{bottom:641.709150px;}
.y110{bottom:646.717050px;}
.yea{bottom:647.952900px;}
.y9c{bottom:648.345000px;}
.y30{bottom:650.523450px;}
.y132{bottom:653.265000px;}
.y175{bottom:657.713100px;}
.yf{bottom:658.173750px;}
.yc2{bottom:659.643150px;}
.y155{bottom:660.453150px;}
.y191{bottom:663.211050px;}
.y10f{bottom:664.717050px;}
.ye9{bottom:666.702900px;}
.y2f{bottom:671.275500px;}
.y5b{bottom:671.509050px;}
.y131{bottom:672.465000px;}
.y9b{bottom:674.848800px;}
.y79{bottom:675.329400px;}
.yc1{bottom:677.643150px;}
.y174{bottom:677.963100px;}
.y154{bottom:680.703150px;}
.y10e{bottom:682.717050px;}
.ye8{bottom:685.452900px;}
.y190{bottom:688.965150px;}
.y130{bottom:691.665000px;}
.y2e{bottom:692.027400px;}
.y5a{bottom:692.509050px;}
.y59{bottom:694.009050px;}
.y9a{bottom:694.348800px;}
.y78{bottom:696.081450px;}
.ye{bottom:697.173750px;}
.y173{bottom:698.213100px;}
.yc0{bottom:704.146950px;}
.ye7{bottom:704.202900px;}
.y10d{bottom:704.968950px;}
.y153{bottom:709.457100px;}
.y12f{bottom:710.865000px;}
.y77{bottom:712.581450px;}
.y2d{bottom:712.779300px;}
.y58{bottom:713.509050px;}
.y99{bottom:713.848950px;}
.y57{bottom:715.009050px;}
.yd{bottom:716.673750px;}
.y172{bottom:718.463100px;}
.y6{bottom:721.053600px;}
.ye6{bottom:722.952900px;}
.y10c{bottom:722.968950px;}
.ybf{bottom:723.646950px;}
.y18f{bottom:725.472900px;}
.y76{bottom:729.081450px;}
.y152{bottom:730.959000px;}
.y56{bottom:731.509050px;}
.y55{bottom:733.009050px;}
.y98{bottom:733.348950px;}
.y2c{bottom:733.531350px;}
.y12e{bottom:738.568950px;}
.y10b{bottom:740.968950px;}
.ybe{bottom:742.696950px;}
.y18e{bottom:744.972900px;}
.y75{bottom:745.581450px;}
.y5{bottom:746.553600px;}
.y171{bottom:747.217050px;}
.y2b{bottom:750.031350px;}
.ye5{bottom:750.206850px;}
.y151{bottom:752.461050px;}
.y54{bottom:752.509050px;}
.y97{bottom:752.848950px;}
.y53{bottom:754.009050px;}
.y52{bottom:755.509050px;}
.yc{bottom:755.673750px;}
.y51{bottom:757.009050px;}
.y12d{bottom:757.768950px;}
.y50{bottom:758.509050px;}
.y10a{bottom:758.968950px;}
.ybd{bottom:761.747100px;}
.y74{bottom:762.081450px;}
.y18d{bottom:764.472900px;}
.ye4{bottom:768.956850px;}
.y96{bottom:772.348800px;}
.y4f{bottom:773.509050px;}
.y150{bottom:773.962950px;}
.y2a{bottom:775.035300px;}
.yb{bottom:775.173750px;}
.y12c{bottom:776.968800px;}
.y109{bottom:776.968950px;}
.y170{bottom:780.222900px;}
.ybc{bottom:780.797100px;}
.y1b2{bottom:782.219700px;}
.y73{bottom:782.833350px;}
.y18c{bottom:783.972900px;}
.ye3{bottom:787.706850px;}
.y95{bottom:791.848800px;}
.y14f{bottom:795.465000px;}
.y12b{bottom:796.168950px;}
.y1b1{bottom:798.719700px;}
.y29{bottom:800.039250px;}
.y16f{bottom:800.472900px;}
.y4e{bottom:800.509050px;}
.y108{bottom:803.472900px;}
.ye2{bottom:806.456850px;}
.ybb{bottom:808.801050px;}
.y94{bottom:811.348800px;}
.y72{bottom:811.687200px;}
.y12a{bottom:815.368950px;}
.y14e{bottom:816.967050px;}
.y1b0{bottom:818.721750px;}
.y16e{bottom:820.722900px;}
.y28{bottom:820.791300px;}
.y4d{bottom:821.509050px;}
.y107{bottom:822.972900px;}
.ye1{bottom:825.206850px;}
.yba{bottom:826.801050px;}
.y93{bottom:830.848800px;}
.y71{bottom:831.187200px;}
.y1af{bottom:834.471750px;}
.y14d{bottom:838.468950px;}
.y16d{bottom:840.972900px;}
.y106{bottom:842.472900px;}
.y129{bottom:843.072900px;}
.ye0{bottom:843.956850px;}
.yb9{bottom:844.801050px;}
.y1ae{bottom:850.221750px;}
.y92{bottom:850.348800px;}
.y70{bottom:850.687200px;}
.y27{bottom:858.891150px;}
.y14c{bottom:859.971000px;}
.y16c{bottom:861.222900px;}
.y105{bottom:861.972900px;}
.y128{bottom:862.272900px;}
.ydf{bottom:862.706850px;}
.y1ad{bottom:865.971750px;}
.yb8{bottom:867.052950px;}
.y91{bottom:878.352750px;}
.y6f{bottom:878.691150px;}
.yde{bottom:881.456850px;}
.y104{bottom:881.472900px;}
.y1ac{bottom:883.221750px;}
.yb7{bottom:883.552950px;}
.y90{bottom:914.402850px;}
.yb6{bottom:914.644350px;}
.h17{height:42.970061px;}
.h12{height:47.381836px;}
.h18{height:47.513672px;}
.h13{height:49.148438px;}
.h5{height:49.500000px;}
.hd{height:52.646484px;}
.h10{height:52.792969px;}
.hb{height:53.291016px;}
.hc{height:54.609375px;}
.h19{height:57.092016px;}
.h9{height:57.911133px;}
.h1a{height:58.072266px;}
.ha{height:58.620117px;}
.h15{height:60.070312px;}
.h11{height:63.949219px;}
.h14{height:70.942061px;}
.h16{height:70.942661px;}
.h4{height:74.607422px;}
.h7{height:89.528906px;}
.h8{height:127.898438px;}
.h6{height:159.873047px;}
.h2{height:914.173500px;}
.h3{height:914.250000px;}
.he{height:1020.472500px;}
.hf{height:1020.750000px;}
.h0{height:1037.646000px;}
.h1{height:1038.000000px;}
.w3{width:637.500000px;}
.w2{width:637.795500px;}
.w4{width:722.835000px;}
.w5{width:723.000000px;}
.w0{width:740.929500px;}
.w1{width:741.000000px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x5{left:90.461100px;}
.x17{left:102.047250px;}
.x2b{left:103.110300px;}
.x15{left:106.299150px;}
.x2a{left:124.370100px;}
.x16{left:127.559100px;}
.x2e{left:148.818900px;}
.x12{left:151.101150px;}
.x1{left:164.879100px;}
.xf{left:167.886900px;}
.x13{left:180.168150px;}
.x1d{left:182.800200px;}
.x7{left:184.072650px;}
.x23{left:194.050200px;}
.x2c{left:195.966450px;}
.x9{left:197.901600px;}
.x24{left:201.550200px;}
.x25{left:216.550200px;}
.x28{left:224.369250px;}
.xd{left:233.489850px;}
.x10{left:234.742350px;}
.x11{left:237.463350px;}
.x27{left:239.606850px;}
.xa{left:250.426500px;}
.xc{left:256.128300px;}
.x14{left:259.269450px;}
.x2{left:261.250500px;}
.xb{left:266.436750px;}
.x4{left:270.365250px;}
.xe{left:290.985000px;}
.x6{left:294.693300px;}
.x29{left:297.356550px;}
.x8{left:301.394550px;}
.x1b{left:329.050200px;}
.x2d{left:331.733850px;}
.x18{left:333.356850px;}
.x26{left:407.800200px;}
.x1c{left:479.050200px;}
.x19{left:494.050200px;}
.x20{left:505.300200px;}
.x22{left:512.800200px;}
.x1e{left:535.856850px;}
.x21{left:569.050200px;}
.x1f{left:572.800200px;}
.x1a{left:630.295200px;}
@media print{
.v2{vertical-align:-24.864000pt;}
.v6{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.378667pt;}
.v5{vertical-align:15.984000pt;}
.v4{vertical-align:19.536533pt;}
.v1{vertical-align:24.864000pt;}
.ls10{letter-spacing:-6.880000pt;}
.ls34{letter-spacing:-2.045941pt;}
.lsf{letter-spacing:-1.866667pt;}
.ls15{letter-spacing:-1.776000pt;}
.ls38{letter-spacing:-1.701333pt;}
.ls35{letter-spacing:-1.610635pt;}
.lsc{letter-spacing:-1.600000pt;}
.ls24{letter-spacing:-1.584000pt;}
.ls31{letter-spacing:-1.173333pt;}
.ls51{letter-spacing:-1.114667pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls53{letter-spacing:-0.912000pt;}
.ls32{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.528000pt;}
.ls52{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.435307pt;}
.ls25{letter-spacing:-0.432000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000533pt;}
.lsa{letter-spacing:0.005333pt;}
.ls26{letter-spacing:0.005867pt;}
.ls37{letter-spacing:0.006400pt;}
.ls54{letter-spacing:0.007467pt;}
.ls2{letter-spacing:0.008000pt;}
.ls11{letter-spacing:0.008533pt;}
.ls7{letter-spacing:0.009067pt;}
.ls8{letter-spacing:0.009600pt;}
.ls55{letter-spacing:0.010133pt;}
.ls3{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.013867pt;}
.ls5{letter-spacing:0.017067pt;}
.ls2f{letter-spacing:0.502933pt;}
.ls30{letter-spacing:0.503467pt;}
.ls3b{letter-spacing:0.589333pt;}
.ls4d{letter-spacing:1.593600pt;}
.lsb{letter-spacing:1.603200pt;}
.ls56{letter-spacing:1.852267pt;}
.ls41{letter-spacing:1.916800pt;}
.ls4b{letter-spacing:1.973333pt;}
.ls4c{letter-spacing:1.973867pt;}
.ls39{letter-spacing:2.386133pt;}
.ls3a{letter-spacing:2.386667pt;}
.ls2d{letter-spacing:2.483733pt;}
.ls2e{letter-spacing:2.484267pt;}
.ls19{letter-spacing:2.771200pt;}
.ls18{letter-spacing:2.771733pt;}
.ls36{letter-spacing:2.801067pt;}
.ls3c{letter-spacing:2.896000pt;}
.ls3d{letter-spacing:2.896533pt;}
.ls16{letter-spacing:2.904000pt;}
.ls17{letter-spacing:2.904533pt;}
.ls40{letter-spacing:3.515733pt;}
.ls47{letter-spacing:3.942933pt;}
.ls48{letter-spacing:3.943467pt;}
.ls46{letter-spacing:4.229333pt;}
.ls45{letter-spacing:4.695467pt;}
.ls50{letter-spacing:5.661333pt;}
.ls4e{letter-spacing:5.661867pt;}
.ls4f{letter-spacing:5.662400pt;}
.ls58{letter-spacing:5.914667pt;}
.ls57{letter-spacing:5.915200pt;}
.ls49{letter-spacing:6.366933pt;}
.ls4a{letter-spacing:6.367467pt;}
.ls2a{letter-spacing:7.158400pt;}
.ls29{letter-spacing:7.158933pt;}
.ls21{letter-spacing:7.430400pt;}
.ls22{letter-spacing:7.430933pt;}
.ls1c{letter-spacing:8.948267pt;}
.ls1b{letter-spacing:8.948800pt;}
.ls43{letter-spacing:9.182933pt;}
.ls44{letter-spacing:9.183467pt;}
.ls1e{letter-spacing:9.599467pt;}
.ls1d{letter-spacing:9.600000pt;}
.ls13{letter-spacing:9.864000pt;}
.ls12{letter-spacing:9.864533pt;}
.ls3f{letter-spacing:11.392000pt;}
.ls3e{letter-spacing:11.392533pt;}
.ls42{letter-spacing:11.913600pt;}
.ls1{letter-spacing:12.906667pt;}
.ls28{letter-spacing:14.735467pt;}
.ls27{letter-spacing:14.736000pt;}
.ls20{letter-spacing:16.291200pt;}
.ls1f{letter-spacing:16.291733pt;}
.ls0{letter-spacing:16.426667pt;}
.ls1a{letter-spacing:19.038933pt;}
.ls2c{letter-spacing:19.705600pt;}
.ls2b{letter-spacing:19.706133pt;}
.ws4{word-spacing:-40.000000pt;}
.wsa{word-spacing:-30.080000pt;}
.ws5{word-spacing:-28.000000pt;}
.ws6{word-spacing:-22.400000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws7{word-spacing:-14.666667pt;}
.ws3f{word-spacing:-14.138667pt;}
.ws57{word-spacing:-14.080000pt;}
.ws94{word-spacing:-13.552000pt;}
.ws72{word-spacing:-13.493333pt;}
.ws9{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.066667pt;}
.ws73{word-spacing:-12.965333pt;}
.ws3{word-spacing:-12.906667pt;}
.wsd{word-spacing:-12.266667pt;}
.ws27{word-spacing:-12.000000pt;}
.ws42{word-spacing:-11.568000pt;}
.ws96{word-spacing:-11.520000pt;}
.wsc{word-spacing:-11.466667pt;}
.ws95{word-spacing:-11.088000pt;}
.ws40{word-spacing:-11.040000pt;}
.ws26{word-spacing:-10.882667pt;}
.ws58{word-spacing:-10.447360pt;}
.ws8{word-spacing:-10.266667pt;}
.ws28{word-spacing:-10.224000pt;}
.wsb{word-spacing:-9.333333pt;}
.ws5a{word-spacing:-9.272032pt;}
.ws59{word-spacing:-8.836725pt;}
.ws3e{word-spacing:-8.550667pt;}
.ws41{word-spacing:-8.400000pt;}
.ws4f{word-spacing:-6.805333pt;}
.ws4d{word-spacing:-5.925333pt;}
.wsc4{word-spacing:-3.840000pt;}
.ws10{word-spacing:-3.253333pt;}
.ws4c{word-spacing:-2.874667pt;}
.ws51{word-spacing:-2.816000pt;}
.ws66{word-spacing:-2.581333pt;}
.wsc0{word-spacing:-2.560000pt;}
.ws8f{word-spacing:-2.464000pt;}
.wsba{word-spacing:-2.293333pt;}
.ws83{word-spacing:-2.288000pt;}
.ws29{word-spacing:-2.240000pt;}
.wsa4{word-spacing:-2.208000pt;}
.ws63{word-spacing:-2.112000pt;}
.ws52{word-spacing:-2.053333pt;}
.wsad{word-spacing:-1.994667pt;}
.ws37{word-spacing:-1.968000pt;}
.ws8d{word-spacing:-1.936000pt;}
.ws13{word-spacing:-1.920000pt;}
.ws36{word-spacing:-1.701333pt;}
.wsbc{word-spacing:-1.653333pt;}
.ws4e{word-spacing:-1.632000pt;}
.wsab{word-spacing:-1.584000pt;}
.wsbb{word-spacing:-1.546667pt;}
.ws7c{word-spacing:-1.525333pt;}
.wsa9{word-spacing:-1.466667pt;}
.ws2e{word-spacing:-1.440000pt;}
.ws81{word-spacing:-1.408000pt;}
.ws2d{word-spacing:-1.344000pt;}
.ws76{word-spacing:-1.290667pt;}
.wsb7{word-spacing:-1.248000pt;}
.wsb0{word-spacing:-1.232000pt;}
.ws8e{word-spacing:-1.173333pt;}
.ws2a{word-spacing:-1.152000pt;}
.wsa6{word-spacing:-1.008000pt;}
.ws82{word-spacing:-0.997333pt;}
.ws17{word-spacing:-0.960000pt;}
.wsaa{word-spacing:-0.938667pt;}
.wsc3{word-spacing:-0.906667pt;}
.ws49{word-spacing:-0.821333pt;}
.ws12{word-spacing:-0.800000pt;}
.ws54{word-spacing:-0.768000pt;}
.ws8c{word-spacing:-0.704000pt;}
.wsc2{word-spacing:-0.693333pt;}
.ws38{word-spacing:-0.672000pt;}
.ws9b{word-spacing:-0.645333pt;}
.ws64{word-spacing:-0.586667pt;}
.ws87{word-spacing:-0.528000pt;}
.ws99{word-spacing:-0.469333pt;}
.ws65{word-spacing:-0.410667pt;}
.ws90{word-spacing:-0.293333pt;}
.ws7f{word-spacing:-0.234667pt;}
.ws31{word-spacing:-0.192000pt;}
.ws93{word-spacing:-0.144000pt;}
.ws6c{word-spacing:-0.117333pt;}
.ws2{word-spacing:0.000000pt;}
.ws45{word-spacing:0.058667pt;}
.wsbe{word-spacing:0.160000pt;}
.ws68{word-spacing:0.234667pt;}
.wsb1{word-spacing:0.352000pt;}
.ws30{word-spacing:0.384000pt;}
.ws98{word-spacing:0.410667pt;}
.wsb6{word-spacing:0.469333pt;}
.wsa7{word-spacing:0.480000pt;}
.wsaf{word-spacing:0.528000pt;}
.ws14{word-spacing:0.533333pt;}
.ws67{word-spacing:0.586667pt;}
.ws5b{word-spacing:0.624000pt;}
.ws85{word-spacing:0.645333pt;}
.ws9a{word-spacing:0.704000pt;}
.ws80{word-spacing:0.821333pt;}
.ws25{word-spacing:0.912000pt;}
.ws33{word-spacing:0.960000pt;}
.ws9d{word-spacing:0.997333pt;}
.ws75{word-spacing:1.056000pt;}
.wsc1{word-spacing:1.066667pt;}
.ws97{word-spacing:1.114667pt;}
.ws62{word-spacing:1.173333pt;}
.ws6e{word-spacing:1.200000pt;}
.ws2c{word-spacing:1.248000pt;}
.ws5e{word-spacing:1.290667pt;}
.wsb9{word-spacing:1.349333pt;}
.wsb3{word-spacing:1.408000pt;}
.ws2f{word-spacing:1.536000pt;}
.ws53{word-spacing:1.584000pt;}
.wsf{word-spacing:1.600000pt;}
.ws77{word-spacing:1.701333pt;}
.wsbd{word-spacing:1.866667pt;}
.ws86{word-spacing:1.877333pt;}
.ws18{word-spacing:1.920000pt;}
.ws44{word-spacing:1.936000pt;}
.wsa3{word-spacing:1.968000pt;}
.ws88{word-spacing:1.994667pt;}
.ws5f{word-spacing:2.112000pt;}
.ws35{word-spacing:2.170667pt;}
.ws55{word-spacing:2.208000pt;}
.wsb4{word-spacing:2.229333pt;}
.ws69{word-spacing:2.288000pt;}
.wsae{word-spacing:2.346667pt;}
.ws5c{word-spacing:2.400000pt;}
.ws9c{word-spacing:2.522667pt;}
.ws6f{word-spacing:2.544000pt;}
.ws1b{word-spacing:2.560000pt;}
.ws4b{word-spacing:2.581333pt;}
.ws2b{word-spacing:2.640000pt;}
.ws48{word-spacing:2.757333pt;}
.ws1a{word-spacing:2.773333pt;}
.ws78{word-spacing:2.816000pt;}
.wsb8{word-spacing:2.874667pt;}
.ws43{word-spacing:2.933333pt;}
.ws19{word-spacing:3.093333pt;}
.wse{word-spacing:3.146667pt;}
.ws6d{word-spacing:3.344000pt;}
.ws7e{word-spacing:3.402667pt;}
.ws74{word-spacing:3.520000pt;}
.wsa8{word-spacing:3.754667pt;}
.ws15{word-spacing:3.786667pt;}
.ws89{word-spacing:3.872000pt;}
.wsa0{word-spacing:3.930667pt;}
.ws70{word-spacing:3.984000pt;}
.ws7a{word-spacing:3.989333pt;}
.ws84{word-spacing:4.224000pt;}
.ws11{word-spacing:4.426667pt;}
.ws32{word-spacing:4.464000pt;}
.wsb2{word-spacing:4.576000pt;}
.ws9f{word-spacing:4.693333pt;}
.ws9e{word-spacing:4.752000pt;}
.ws91{word-spacing:4.810667pt;}
.ws39{word-spacing:4.992000pt;}
.ws47{word-spacing:5.045333pt;}
.ws8b{word-spacing:5.397333pt;}
.ws4a{word-spacing:5.456000pt;}
.ws60{word-spacing:5.514667pt;}
.ws7d{word-spacing:5.573333pt;}
.ws8a{word-spacing:5.690667pt;}
.wsb5{word-spacing:5.808000pt;}
.wsbf{word-spacing:5.920000pt;}
.ws6a{word-spacing:5.984000pt;}
.ws61{word-spacing:6.101333pt;}
.wsa5{word-spacing:6.144000pt;}
.ws7b{word-spacing:6.218667pt;}
.ws46{word-spacing:6.277333pt;}
.wsa2{word-spacing:6.384000pt;}
.wsac{word-spacing:6.394667pt;}
.ws5d{word-spacing:6.688000pt;}
.ws16{word-spacing:6.880000pt;}
.wsa1{word-spacing:6.922667pt;}
.ws6b{word-spacing:7.157333pt;}
.wsc5{word-spacing:7.253333pt;}
.ws34{word-spacing:7.744000pt;}
.ws79{word-spacing:7.802667pt;}
.ws3a{word-spacing:7.824000pt;}
.ws3c{word-spacing:9.888000pt;}
.ws50{word-spacing:16.309333pt;}
.ws92{word-spacing:20.064000pt;}
.ws71{word-spacing:21.696000pt;}
.ws3b{word-spacing:41.808000pt;}
.ws22{word-spacing:340.480000pt;}
.ws24{word-spacing:673.813333pt;}
.ws1c{word-spacing:847.146667pt;}
.ws23{word-spacing:953.813333pt;}
.ws56{word-spacing:984.246933pt;}
.ws1f{word-spacing:1140.480000pt;}
.ws3d{word-spacing:1283.581333pt;}
.ws20{word-spacing:1313.813333pt;}
.ws21{word-spacing:1622.453333pt;}
.ws1d{word-spacing:1714.666667pt;}
.ws1e{word-spacing:1878.240000pt;}
._f{margin-left:-41.790933pt;}
._16{margin-left:-21.014997pt;}
._1d{margin-left:-20.068267pt;}
._1b{margin-left:-9.533867pt;}
._17{margin-left:-8.491733pt;}
._5{margin-left:-6.944000pt;}
._0{margin-left:-5.525333pt;}
._1{margin-left:-4.106667pt;}
._7{margin-left:-2.467733pt;}
._4{margin-left:-1.344000pt;}
._3{width:0.912533pt;}
._b{width:2.154133pt;}
._8{width:3.146667pt;}
._a{width:4.102933pt;}
._9{width:5.006933pt;}
._c{width:6.681067pt;}
._13{width:7.582933pt;}
._e{width:9.325867pt;}
._19{width:10.809600pt;}
._18{width:11.953067pt;}
._2{width:12.906667pt;}
._1a{width:14.400000pt;}
._6{width:16.309333pt;}
._10{width:19.008000pt;}
._14{width:19.934400pt;}
._1c{width:21.312000pt;}
._12{width:37.392000pt;}
._11{width:40.368000pt;}
._15{width:41.808000pt;}
._d{width:43.776000pt;}
.fsf{font-size:27.984000pt;}
.fse{font-size:33.600000pt;}
.fsd{font-size:34.202667pt;}
.fs9{font-size:37.333333pt;}
.fs7{font-size:41.066667pt;}
.fsc{font-size:43.530667pt;}
.fsb{font-size:48.000000pt;}
.fs2{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs5{font-size:89.600000pt;}
.fs4{font-size:112.000000pt;}
.fs6{font-size:128.000000pt;}
.fs3{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:85.463200pt;}
.y25{bottom:100.129867pt;}
.y4c{bottom:107.104000pt;}
.y6c{bottom:107.563600pt;}
.y14b{bottom:113.385733pt;}
.yb5{bottom:113.385867pt;}
.ydd{bottom:119.601733pt;}
.y103{bottom:119.601867pt;}
.y4b{bottom:121.770667pt;}
.y24{bottom:122.355600pt;}
.y1ab{bottom:122.822800pt;}
.y6e{bottom:123.432933pt;}
.y14a{bottom:128.052400pt;}
.yb4{bottom:128.052533pt;}
.y23{bottom:137.022267pt;}
.ya{bottom:137.314533pt;}
.ydc{bottom:138.047867pt;}
.y102{bottom:138.048000pt;}
.y6d{bottom:138.099600pt;}
.y4a{bottom:140.216800pt;}
.y6b{bottom:140.896933pt;}
.y1aa{bottom:141.935733pt;}
.yb3{bottom:146.498667pt;}
.y149{bottom:148.935067pt;}
.ydb{bottom:150.278133pt;}
.y22{bottom:151.688933pt;}
.y49{bottom:154.883467pt;}
.y101{bottom:156.494267pt;}
.y1a9{bottom:161.048533pt;}
.y148{bottom:161.165200pt;}
.yb2{bottom:164.944800pt;}
.y127{bottom:165.736267pt;}
.y21{bottom:166.355600pt;}
.y16b{bottom:168.392267pt;}
.y100{bottom:168.724400pt;}
.yda{bottom:171.160800pt;}
.y18b{bottom:171.160933pt;}
.y48{bottom:173.329733pt;}
.y6a{bottom:174.230267pt;}
.y8f{bottom:175.034933pt;}
.y147{bottom:175.831867pt;}
.y1a8{bottom:176.381867pt;}
.yb1{bottom:179.611467pt;}
.y126{bottom:181.736267pt;}
.yd9{bottom:183.390933pt;}
.y16a{bottom:186.392267pt;}
.y8e{bottom:187.265067pt;}
.yff{bottom:189.607067pt;}
.y146{bottom:190.498533pt;}
.y1a7{bottom:191.715200pt;}
.y47{bottom:191.775867pt;}
.y69{bottom:192.896933pt;}
.yb0{bottom:194.278133pt;}
.y20{bottom:195.688933pt;}
.y125{bottom:197.736267pt;}
.yd8{bottom:198.057600pt;}
.y18a{bottom:201.837200pt;}
.y169{bottom:204.392267pt;}
.y145{bottom:205.165200pt;}
.y46{bottom:206.442533pt;}
.y8d{bottom:208.147733pt;}
.y1a6{bottom:210.828133pt;}
.yd7{bottom:212.724267pt;}
.yaf{bottom:212.724400pt;}
.y1f{bottom:215.468533pt;}
.yfe{bottom:215.501467pt;}
.y189{bottom:216.503867pt;}
.y124{bottom:217.515733pt;}
.y144{bottom:219.831867pt;}
.y8c{bottom:220.377867pt;}
.y168{bottom:222.392267pt;}
.y45{bottom:224.888800pt;}
.y68{bottom:224.896933pt;}
.y1a5{bottom:226.161467pt;}
.yae{bottom:227.391067pt;}
.yfd{bottom:232.834800pt;}
.y123{bottom:233.515733pt;}
.yd6{bottom:233.606933pt;}
.y8b{bottom:235.044533pt;}
.y188{bottom:237.386533pt;}
.y44{bottom:239.555467pt;}
.y167{bottom:240.392267pt;}
.y143{bottom:240.714533pt;}
.y1a4{bottom:245.274267pt;}
.yfc{bottom:249.501467pt;}
.y122{bottom:249.515733pt;}
.y187{bottom:249.616800pt;}
.y8a{bottom:249.711200pt;}
.y1e{bottom:255.479067pt;}
.y43{bottom:258.001600pt;}
.y67{bottom:258.230267pt;}
.y166{bottom:258.392267pt;}
.yd5{bottom:260.877467pt;}
.yad{bottom:261.398533pt;}
.y89{bottom:264.377867pt;}
.y1a3{bottom:264.387067pt;}
.y121{bottom:265.515733pt;}
.yfb{bottom:266.168133pt;}
.y186{bottom:270.499467pt;}
.y42{bottom:272.668267pt;}
.y142{bottom:273.597600pt;}
.y165{bottom:276.392267pt;}
.yac{bottom:277.398533pt;}
.yd4{bottom:278.210800pt;}
.y1a2{bottom:279.720400pt;}
.y1d{bottom:280.371333pt;}
.y120{bottom:281.515733pt;}
.yfa{bottom:282.834800pt;}
.y88{bottom:285.260533pt;}
.y66{bottom:290.230267pt;}
.y141{bottom:290.664267pt;}
.y41{bottom:291.114400pt;}
.yab{bottom:293.398533pt;}
.y164{bottom:294.392267pt;}
.yd3{bottom:295.144133pt;}
.y185{bottom:297.300533pt;}
.y11f{bottom:297.515733pt;}
.y1a1{bottom:298.833333pt;}
.y40{bottom:305.781067pt;}
.yf9{bottom:307.060400pt;}
.y140{bottom:307.730933pt;}
.yd2{bottom:312.077467pt;}
.y87{bottom:312.359067pt;}
.y163{bottom:312.392267pt;}
.y11e{bottom:313.515733pt;}
.y1a0{bottom:314.166667pt;}
.y184{bottom:314.633867pt;}
.yaa{bottom:316.957467pt;}
.y1c{bottom:318.817600pt;}
.y65{bottom:323.563600pt;}
.yf8{bottom:323.727067pt;}
.y3f{bottom:324.227333pt;}
.y13f{bottom:324.797600pt;}
.yd1{bottom:329.010800pt;}
.y4{bottom:329.028267pt;}
.y86{bottom:329.692400pt;}
.y162{bottom:330.392267pt;}
.y183{bottom:332.633867pt;}
.y19f{bottom:333.279600pt;}
.ya9{bottom:334.290800pt;}
.y1b{bottom:336.150933pt;}
.y11d{bottom:337.074800pt;}
.yf7{bottom:340.393733pt;}
.y13e{bottom:341.864267pt;}
.y3e{bottom:342.673600pt;}
.y9{bottom:343.492800pt;}
.y64{bottom:343.563600pt;}
.yd0{bottom:345.944133pt;}
.y85{bottom:347.025733pt;}
.y182{bottom:350.633867pt;}
.y19e{bottom:352.392400pt;}
.y1a{bottom:353.484267pt;}
.y11c{bottom:354.408133pt;}
.y161{bottom:355.951333pt;}
.yf6{bottom:357.060400pt;}
.y13d{bottom:358.930933pt;}
.ya8{bottom:359.183333pt;}
.y3d{bottom:361.119733pt;}
.y63{bottom:362.230267pt;}
.ycf{bottom:362.877467pt;}
.y84{bottom:364.359067pt;}
.y181{bottom:368.633867pt;}
.y3{bottom:370.151600pt;}
.y19{bottom:370.817600pt;}
.y19d{bottom:371.505200pt;}
.y11b{bottom:371.741467pt;}
.y160{bottom:373.951333pt;}
.ya7{bottom:375.183333pt;}
.y3c{bottom:375.786400pt;}
.yce{bottom:379.810800pt;}
.yf5{bottom:381.286267pt;}
.y83{bottom:381.692400pt;}
.y13c{bottom:383.556533pt;}
.y180{bottom:386.633867pt;}
.y11a{bottom:389.074800pt;}
.y19c{bottom:390.618133pt;}
.ya6{bottom:391.183333pt;}
.y15f{bottom:391.951333pt;}
.y62{bottom:394.230267pt;}
.y3b{bottom:394.232533pt;}
.y18{bottom:395.710000pt;}
.ycd{bottom:396.744133pt;}
.y13b{bottom:400.623333pt;}
.y17f{bottom:404.633867pt;}
.y119{bottom:406.408133pt;}
.y82{bottom:406.584800pt;}
.y8{bottom:407.492800pt;}
.y3a{bottom:408.899200pt;}
.yf4{bottom:409.291467pt;}
.y19b{bottom:409.730933pt;}
.y15e{bottom:409.951333pt;}
.ycc{bottom:413.677467pt;}
.ya5{bottom:414.742267pt;}
.y2{bottom:415.484933pt;}
.y13a{bottom:417.690000pt;}
.y17e{bottom:422.633867pt;}
.y19a{bottom:425.064267pt;}
.yf3{bottom:425.958133pt;}
.y39{bottom:427.345467pt;}
.y61{bottom:427.563600pt;}
.y15d{bottom:427.951333pt;}
.y17{bottom:430.376667pt;}
.y118{bottom:431.300533pt;}
.ya4{bottom:433.188533pt;}
.y139{bottom:434.756533pt;}
.ycb{bottom:438.569867pt;}
.y17d{bottom:440.633867pt;}
.y38{bottom:442.012133pt;}
.yf2{bottom:442.624800pt;}
.y199{bottom:444.177200pt;}
.y81{bottom:446.445067pt;}
.y117{bottom:448.633867pt;}
.y16{bottom:449.043333pt;}
.y1{bottom:449.049200pt;}
.ya3{bottom:449.188533pt;}
.y15c{bottom:453.510400pt;}
.yca{bottom:454.569867pt;}
.y7{bottom:458.390400pt;}
.y17c{bottom:458.633867pt;}
.yf1{bottom:459.291467pt;}
.y138{bottom:459.382267pt;}
.y198{bottom:459.510533pt;}
.y37{bottom:460.458267pt;}
.y60{bottom:460.896933pt;}
.y15{bottom:463.710000pt;}
.ya2{bottom:465.188533pt;}
.y116{bottom:465.967200pt;}
.y80{bottom:467.558000pt;}
.yc9{bottom:470.569867pt;}
.y15b{bottom:471.510400pt;}
.yf0{bottom:475.958133pt;}
.y137{bottom:476.448933pt;}
.y17b{bottom:476.633867pt;}
.y14{bottom:478.376667pt;}
.y197{bottom:478.623333pt;}
.y36{bottom:478.904533pt;}
.y5f{bottom:479.563600pt;}
.y7f{bottom:482.224667pt;}
.y115{bottom:483.300533pt;}
.yc8{bottom:486.569867pt;}
.ya1{bottom:488.747600pt;}
.y15a{bottom:489.510400pt;}
.yef{bottom:492.624800pt;}
.y13{bottom:493.043333pt;}
.y136{bottom:493.515600pt;}
.y35{bottom:493.571200pt;}
.y17a{bottom:494.633867pt;}
.y7e{bottom:496.891333pt;}
.y196{bottom:497.736267pt;}
.y114{bottom:500.633867pt;}
.yc7{bottom:502.569867pt;}
.ya0{bottom:504.747600pt;}
.y12{bottom:507.710000pt;}
.yee{bottom:509.291467pt;}
.y135{bottom:510.582400pt;}
.y7d{bottom:511.558000pt;}
.y34{bottom:512.017333pt;}
.y179{bottom:512.633867pt;}
.y5e{bottom:512.896933pt;}
.y159{bottom:515.069467pt;}
.y195{bottom:516.849067pt;}
.y113{bottom:517.967200pt;}
.y9f{bottom:520.747600pt;}
.yc6{bottom:522.349467pt;}
.yed{bottom:525.958133pt;}
.y7c{bottom:526.224667pt;}
.y134{bottom:527.649067pt;}
.y33{bottom:530.463600pt;}
.y178{bottom:530.633867pt;}
.y5d{bottom:531.563600pt;}
.y158{bottom:533.069467pt;}
.y194{bottom:535.961867pt;}
.y11{bottom:537.043333pt;}
.yc5{bottom:538.349467pt;}
.yec{bottom:542.624800pt;}
.y112{bottom:542.859600pt;}
.y9e{bottom:544.306667pt;}
.y7b{bottom:544.670800pt;}
.y32{bottom:545.130267pt;}
.y177{bottom:548.633867pt;}
.y157{bottom:551.069467pt;}
.y133{bottom:552.274800pt;}
.yc4{bottom:554.349467pt;}
.y193{bottom:555.074800pt;}
.y111{bottom:558.859600pt;}
.yeb{bottom:559.291467pt;}
.y9d{bottom:560.306667pt;}
.y5c{bottom:563.563600pt;}
.y31{bottom:563.576400pt;}
.y10{bottom:566.376667pt;}
.y176{bottom:566.633867pt;}
.y7a{bottom:568.576800pt;}
.y156{bottom:569.069467pt;}
.yc3{bottom:570.349467pt;}
.y192{bottom:570.408133pt;}
.y110{bottom:574.859600pt;}
.yea{bottom:575.958133pt;}
.y9c{bottom:576.306667pt;}
.y30{bottom:578.243067pt;}
.y132{bottom:580.680000pt;}
.y175{bottom:584.633867pt;}
.yf{bottom:585.043333pt;}
.yc2{bottom:586.349467pt;}
.y155{bottom:587.069467pt;}
.y191{bottom:589.520933pt;}
.y10f{bottom:590.859600pt;}
.ye9{bottom:592.624800pt;}
.y2f{bottom:596.689333pt;}
.y5b{bottom:596.896933pt;}
.y131{bottom:597.746667pt;}
.y9b{bottom:599.865600pt;}
.y79{bottom:600.292800pt;}
.yc1{bottom:602.349467pt;}
.y174{bottom:602.633867pt;}
.y154{bottom:605.069467pt;}
.y10e{bottom:606.859600pt;}
.ye8{bottom:609.291467pt;}
.y190{bottom:612.413467pt;}
.y130{bottom:614.813333pt;}
.y2e{bottom:615.135467pt;}
.y5a{bottom:615.563600pt;}
.y59{bottom:616.896933pt;}
.y9a{bottom:617.198933pt;}
.y78{bottom:618.739067pt;}
.ye{bottom:619.710000pt;}
.y173{bottom:620.633867pt;}
.yc0{bottom:625.908400pt;}
.ye7{bottom:625.958133pt;}
.y10d{bottom:626.639067pt;}
.y153{bottom:630.628533pt;}
.y12f{bottom:631.880000pt;}
.y77{bottom:633.405733pt;}
.y2d{bottom:633.581600pt;}
.y58{bottom:634.230267pt;}
.y99{bottom:634.532400pt;}
.y57{bottom:635.563600pt;}
.yd{bottom:637.043333pt;}
.y172{bottom:638.633867pt;}
.y6{bottom:640.936533pt;}
.ye6{bottom:642.624800pt;}
.y10c{bottom:642.639067pt;}
.ybf{bottom:643.241733pt;}
.y18f{bottom:644.864800pt;}
.y76{bottom:648.072400pt;}
.y152{bottom:649.741333pt;}
.y56{bottom:650.230267pt;}
.y55{bottom:651.563600pt;}
.y98{bottom:651.865733pt;}
.y2c{bottom:652.027867pt;}
.y12e{bottom:656.505733pt;}
.y10b{bottom:658.639067pt;}
.ybe{bottom:660.175067pt;}
.y18e{bottom:662.198133pt;}
.y75{bottom:662.739067pt;}
.y5{bottom:663.603200pt;}
.y171{bottom:664.192933pt;}
.y2b{bottom:666.694533pt;}
.ye5{bottom:666.850533pt;}
.y151{bottom:668.854267pt;}
.y54{bottom:668.896933pt;}
.y97{bottom:669.199067pt;}
.y53{bottom:670.230267pt;}
.y52{bottom:671.563600pt;}
.yc{bottom:671.710000pt;}
.y51{bottom:672.896933pt;}
.y12d{bottom:673.572400pt;}
.y50{bottom:674.230267pt;}
.y10a{bottom:674.639067pt;}
.ybd{bottom:677.108533pt;}
.y74{bottom:677.405733pt;}
.y18d{bottom:679.531467pt;}
.ye4{bottom:683.517200pt;}
.y96{bottom:686.532267pt;}
.y4f{bottom:687.563600pt;}
.y150{bottom:687.967067pt;}
.y2a{bottom:688.920267pt;}
.yb{bottom:689.043333pt;}
.y12c{bottom:690.638933pt;}
.y109{bottom:690.639067pt;}
.y170{bottom:693.531467pt;}
.ybc{bottom:694.041867pt;}
.y1b2{bottom:695.306400pt;}
.y73{bottom:695.851867pt;}
.y18c{bottom:696.864800pt;}
.ye3{bottom:700.183867pt;}
.y95{bottom:703.865600pt;}
.y14f{bottom:707.080000pt;}
.y12b{bottom:707.705733pt;}
.y1b1{bottom:709.973067pt;}
.y29{bottom:711.146000pt;}
.y16f{bottom:711.531467pt;}
.y4e{bottom:711.563600pt;}
.y108{bottom:714.198133pt;}
.ye2{bottom:716.850533pt;}
.ybb{bottom:718.934267pt;}
.y94{bottom:721.198933pt;}
.y72{bottom:721.499733pt;}
.y12a{bottom:724.772400pt;}
.y14e{bottom:726.192933pt;}
.y1b0{bottom:727.752667pt;}
.y16e{bottom:729.531467pt;}
.y28{bottom:729.592267pt;}
.y4d{bottom:730.230267pt;}
.y107{bottom:731.531467pt;}
.ye1{bottom:733.517200pt;}
.yba{bottom:734.934267pt;}
.y93{bottom:738.532267pt;}
.y71{bottom:738.833067pt;}
.y1af{bottom:741.752667pt;}
.y14d{bottom:745.305733pt;}
.y16d{bottom:747.531467pt;}
.y106{bottom:748.864800pt;}
.y129{bottom:749.398133pt;}
.ye0{bottom:750.183867pt;}
.yb9{bottom:750.934267pt;}
.y1ae{bottom:755.752667pt;}
.y92{bottom:755.865600pt;}
.y70{bottom:756.166400pt;}
.y27{bottom:763.458800pt;}
.y14c{bottom:764.418667pt;}
.y16c{bottom:765.531467pt;}
.y105{bottom:766.198133pt;}
.y128{bottom:766.464800pt;}
.ydf{bottom:766.850533pt;}
.y1ad{bottom:769.752667pt;}
.yb8{bottom:770.713733pt;}
.y91{bottom:780.758000pt;}
.y6f{bottom:781.058800pt;}
.yde{bottom:783.517200pt;}
.y104{bottom:783.531467pt;}
.y1ac{bottom:785.086000pt;}
.yb7{bottom:785.380400pt;}
.y90{bottom:812.802533pt;}
.yb6{bottom:813.017200pt;}
.h17{height:38.195609pt;}
.h12{height:42.117188pt;}
.h18{height:42.234375pt;}
.h13{height:43.687500pt;}
.h5{height:44.000000pt;}
.hd{height:46.796875pt;}
.h10{height:46.927083pt;}
.hb{height:47.369792pt;}
.hc{height:48.541667pt;}
.h19{height:50.748458pt;}
.h9{height:51.476562pt;}
.h1a{height:51.619792pt;}
.ha{height:52.106771pt;}
.h15{height:53.395833pt;}
.h11{height:56.843750pt;}
.h14{height:63.059609pt;}
.h16{height:63.060143pt;}
.h4{height:66.317708pt;}
.h7{height:79.581250pt;}
.h8{height:113.687500pt;}
.h6{height:142.109375pt;}
.h2{height:812.598667pt;}
.h3{height:812.666667pt;}
.he{height:907.086667pt;}
.hf{height:907.333333pt;}
.h0{height:922.352000pt;}
.h1{height:922.666667pt;}
.w3{width:566.666667pt;}
.w2{width:566.929333pt;}
.w4{width:642.520000pt;}
.w5{width:642.666667pt;}
.w0{width:658.604000pt;}
.w1{width:658.666667pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x5{left:80.409867pt;}
.x17{left:90.708667pt;}
.x2b{left:91.653600pt;}
.x15{left:94.488133pt;}
.x2a{left:110.551200pt;}
.x16{left:113.385867pt;}
.x2e{left:132.283467pt;}
.x12{left:134.312133pt;}
.x1{left:146.559200pt;}
.xf{left:149.232800pt;}
.x13{left:160.149467pt;}
.x1d{left:162.489067pt;}
.x7{left:163.620133pt;}
.x23{left:172.489067pt;}
.x2c{left:174.192400pt;}
.x9{left:175.912533pt;}
.x24{left:179.155733pt;}
.x25{left:192.489067pt;}
.x28{left:199.439333pt;}
.xd{left:207.546533pt;}
.x10{left:208.659867pt;}
.x11{left:211.078533pt;}
.x27{left:212.983867pt;}
.xa{left:222.601333pt;}
.xc{left:227.669600pt;}
.x14{left:230.461733pt;}
.x2{left:232.222667pt;}
.xb{left:236.832667pt;}
.x4{left:240.324667pt;}
.xe{left:258.653333pt;}
.x6{left:261.949600pt;}
.x29{left:264.316933pt;}
.x8{left:267.906267pt;}
.x1b{left:292.489067pt;}
.x2d{left:294.874533pt;}
.x18{left:296.317200pt;}
.x26{left:362.489067pt;}
.x1c{left:425.822400pt;}
.x19{left:439.155733pt;}
.x20{left:449.155733pt;}
.x22{left:455.822400pt;}
.x1e{left:476.317200pt;}
.x21{left:505.822400pt;}
.x1f{left:509.155733pt;}
.x1a{left:560.262400pt;}
}




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