
    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_50523e780e497af8f37c0397.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_65d47cb1c7aa25fac1f74fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1c1bcb00a9d5161ba781aabc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_9657a705b83cf72ae3d09282.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_ad388d58d3419ba177685b46.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935000;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_1e9660e4f7b776d205de5651.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.111000;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_fc76119371b53448439285fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_1c1bcb00a9d5161ba781aabc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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_cc3daf9cf4fcde77ae5eb7aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.111000;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_a4ec809d4a3d372a99015ece.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935000;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_6ca6c4a83d1811309a9cd66b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_bd4e44662c89b6d9a607bbd3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941000;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_7d71e0932dc2a8aba8155c70.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_674e3f10b59b7068be335700.woff2')format("woff");}.fff{font-family:fff;line-height:0.908203;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_ca34781fddbe855cab43a4b0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941000;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_1c1bcb00a9d5161ba781aabc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936000;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_43377f5889ca7ced89362540.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941000;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_2b9a02abfd75ed91a432f695.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.941000;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_1c1bcb00a9d5161ba781aabc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936000;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_cc3daf9cf4fcde77ae5eb7aa.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.111000;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_a4ec809d4a3d372a99015ece.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.935000;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_deee30778edd57ca0a8a07fe.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.935000;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_d786d54e288ebfc586e6e30e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.936032;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m7{transform:matrix(0.237139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237139,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-37.417200px;}
.v3{vertical-align:-19.800000px;}
.v2{vertical-align:-17.820000px;}
.v5{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:13.860000px;}
.v4{vertical-align:19.800000px;}
.ls12{letter-spacing:-15.000000px;}
.ls2f{letter-spacing:-4.020000px;}
.ls3e{letter-spacing:-3.906000px;}
.ls1d{letter-spacing:-3.834000px;}
.ls3a{letter-spacing:-3.276000px;}
.ls38{letter-spacing:-3.234000px;}
.ls2d{letter-spacing:-2.760000px;}
.ls4e{letter-spacing:-2.562000px;}
.ls25{letter-spacing:-2.478000px;}
.ls51{letter-spacing:-2.352000px;}
.ls4a{letter-spacing:-1.932000px;}
.ls3f{letter-spacing:-1.890000px;}
.ls43{letter-spacing:-1.848000px;}
.ls47{letter-spacing:-1.680000px;}
.ls2e{letter-spacing:-1.600800px;}
.ls29{letter-spacing:-1.596000px;}
.ls49{letter-spacing:-0.966000px;}
.ls4d{letter-spacing:-0.924000px;}
.ls24{letter-spacing:-0.588000px;}
.ls41{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.487200px;}
.lse{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.432000px;}
.ls3c{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.348000px;}
.ls1f{letter-spacing:-0.336000px;}
.ls33{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.210000px;}
.ls48{letter-spacing:-0.168000px;}
.ls42{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.009600px;}
.ls27{letter-spacing:0.042000px;}
.ls31{letter-spacing:0.120000px;}
.ls3b{letter-spacing:0.126000px;}
.ls32{letter-spacing:0.162000px;}
.ls39{letter-spacing:0.168000px;}
.ls50{letter-spacing:0.252000px;}
.ls2b{letter-spacing:0.324000px;}
.ls3d{letter-spacing:0.336000px;}
.ls34{letter-spacing:0.378000px;}
.ls2{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.432000px;}
.ls40{letter-spacing:0.462000px;}
.ls9{letter-spacing:0.486000px;}
.ls20{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.540000px;}
.ls44{letter-spacing:0.546000px;}
.ls22{letter-spacing:0.588000px;}
.lsa{letter-spacing:0.594000px;}
.ls5{letter-spacing:0.630000px;}
.ls30{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.660000px;}
.ls37{letter-spacing:0.672000px;}
.ls2a{letter-spacing:0.702000px;}
.lsd{letter-spacing:0.713040px;}
.ls4{letter-spacing:0.714000px;}
.ls1e{letter-spacing:0.756000px;}
.ls1b{letter-spacing:0.780000px;}
.ls23{letter-spacing:0.798000px;}
.ls3{letter-spacing:0.840000px;}
.ls4b{letter-spacing:0.882000px;}
.ls46{letter-spacing:0.924000px;}
.ls36{letter-spacing:0.963000px;}
.ls26{letter-spacing:0.966000px;}
.ls35{letter-spacing:0.972000px;}
.ls6{letter-spacing:1.026000px;}
.ls28{letter-spacing:1.050000px;}
.lsf{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.134000px;}
.ls52{letter-spacing:1.260000px;}
.ls4f{letter-spacing:1.302000px;}
.ls45{letter-spacing:1.596000px;}
.ls1c{letter-spacing:1.637576px;}
.ls4c{letter-spacing:1.974000px;}
.ls15{letter-spacing:245.993040px;}
.ls17{letter-spacing:334.790640px;}
.ls1a{letter-spacing:420.215040px;}
.ls14{letter-spacing:431.061840px;}
.ls18{letter-spacing:450.615840px;}
.ls16{letter-spacing:534.278040px;}
.ls19{letter-spacing:653.147640px;}
.ls13{letter-spacing:708.641640px;}
.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;}
}
.ws97{word-spacing:-40.500000px;}
.ws93{word-spacing:-37.740000px;}
.ws92{word-spacing:-23.002800px;}
.ws1{word-spacing:-17.100000px;}
.wsc7{word-spacing:-16.800000px;}
.ws3c{word-spacing:-16.200000px;}
.wse8{word-spacing:-16.092000px;}
.wsa6{word-spacing:-15.780000px;}
.ws43{word-spacing:-15.660000px;}
.ws90{word-spacing:-15.480000px;}
.ws3e{word-spacing:-15.012000px;}
.ws3d{word-spacing:-15.000000px;}
.wsff{word-spacing:-14.634000px;}
.ws128{word-spacing:-13.650000px;}
.ws125{word-spacing:-13.272000px;}
.ws95{word-spacing:-13.260000px;}
.ws12c{word-spacing:-12.936000px;}
.ws12b{word-spacing:-12.558000px;}
.ws123{word-spacing:-12.516000px;}
.ws86{word-spacing:-12.474000px;}
.ws8a{word-spacing:-12.432000px;}
.ws82{word-spacing:-12.390000px;}
.wsec{word-spacing:-12.348000px;}
.ws8b{word-spacing:-12.306000px;}
.ws83{word-spacing:-12.264000px;}
.ws124{word-spacing:-12.222000px;}
.ws122{word-spacing:-12.180000px;}
.ws8c{word-spacing:-12.096000px;}
.ws127{word-spacing:-12.012000px;}
.ws8f{word-spacing:-12.000000px;}
.ws129{word-spacing:-11.928000px;}
.wsfe{word-spacing:-11.802000px;}
.ws126{word-spacing:-11.508000px;}
.wsf3{word-spacing:-11.298000px;}
.ws85{word-spacing:-11.088000px;}
.ws40{word-spacing:-10.518000px;}
.ws91{word-spacing:-10.506000px;}
.ws8e{word-spacing:-10.488000px;}
.ws8d{word-spacing:-10.080000px;}
.ws12a{word-spacing:-9.324000px;}
.ws88{word-spacing:-9.198000px;}
.ws41{word-spacing:-8.700000px;}
.wsef{word-spacing:-8.400000px;}
.ws3f{word-spacing:-8.352000px;}
.wsf6{word-spacing:-7.770000px;}
.ws94{word-spacing:-7.099200px;}
.ws81{word-spacing:-6.772080px;}
.ws100{word-spacing:-6.090000px;}
.ws105{word-spacing:-5.880000px;}
.ws11{word-spacing:-4.092000px;}
.ws12{word-spacing:-3.696000px;}
.ws113{word-spacing:-3.564000px;}
.wsa9{word-spacing:-3.510000px;}
.ws64{word-spacing:-3.186000px;}
.ws6c{word-spacing:-3.024000px;}
.ws163{word-spacing:-2.982000px;}
.ws29{word-spacing:-2.970000px;}
.ws34{word-spacing:-2.862000px;}
.ws2f{word-spacing:-2.808000px;}
.ws115{word-spacing:-2.754000px;}
.ws6e{word-spacing:-2.646000px;}
.ws44{word-spacing:-2.592000px;}
.ws158{word-spacing:-2.562000px;}
.wsc{word-spacing:-2.538000px;}
.ws16d{word-spacing:-2.448000px;}
.ws14e{word-spacing:-2.352000px;}
.ws10a{word-spacing:-2.322000px;}
.ws136{word-spacing:-2.268000px;}
.wsdc{word-spacing:-2.214000px;}
.ws45{word-spacing:-2.184000px;}
.ws141{word-spacing:-2.142000px;}
.ws4c{word-spacing:-2.106000px;}
.ws143{word-spacing:-2.100000px;}
.ws14f{word-spacing:-2.058000px;}
.wsb{word-spacing:-2.052000px;}
.ws3{word-spacing:-2.016000px;}
.wsf{word-spacing:-1.998000px;}
.wsd{word-spacing:-1.944000px;}
.ws9a{word-spacing:-1.932000px;}
.ws9{word-spacing:-1.890000px;}
.ws10{word-spacing:-1.848000px;}
.wsa5{word-spacing:-1.836000px;}
.ws7{word-spacing:-1.806000px;}
.ws30{word-spacing:-1.782000px;}
.wsba{word-spacing:-1.728000px;}
.ws9f{word-spacing:-1.680000px;}
.wse2{word-spacing:-1.566000px;}
.wsa{word-spacing:-1.512000px;}
.ws37{word-spacing:-1.458000px;}
.ws38{word-spacing:-1.404000px;}
.ws15{word-spacing:-1.350000px;}
.ws149{word-spacing:-1.344000px;}
.ws4b{word-spacing:-1.242000px;}
.wsa0{word-spacing:-1.218000px;}
.ws4{word-spacing:-1.176000px;}
.wsd0{word-spacing:-1.134000px;}
.wse{word-spacing:-1.080000px;}
.ws16c{word-spacing:-1.056000px;}
.wsa1{word-spacing:-1.050000px;}
.ws74{word-spacing:-1.026000px;}
.wsc2{word-spacing:-0.972000px;}
.ws13f{word-spacing:-0.966000px;}
.wsb2{word-spacing:-0.918000px;}
.ws145{word-spacing:-0.882000px;}
.ws27{word-spacing:-0.864000px;}
.ws161{word-spacing:-0.840000px;}
.wsc1{word-spacing:-0.810000px;}
.ws66{word-spacing:-0.756000px;}
.ws104{word-spacing:-0.714000px;}
.wsa4{word-spacing:-0.702000px;}
.ws2e{word-spacing:-0.648000px;}
.ws20{word-spacing:-0.594000px;}
.ws2{word-spacing:-0.540000px;}
.wsbe{word-spacing:-0.486000px;}
.ws4d{word-spacing:-0.378000px;}
.ws154{word-spacing:-0.336000px;}
.wsb0{word-spacing:-0.324000px;}
.wsbf{word-spacing:-0.270000px;}
.ws15b{word-spacing:-0.252000px;}
.ws52{word-spacing:-0.216000px;}
.ws14d{word-spacing:-0.210000px;}
.wsac{word-spacing:-0.108000px;}
.ws42{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsd6{word-spacing:0.108000px;}
.ws102{word-spacing:0.126000px;}
.wse6{word-spacing:0.162000px;}
.ws9e{word-spacing:0.210000px;}
.ws1d{word-spacing:0.216000px;}
.ws6f{word-spacing:0.270000px;}
.wsa7{word-spacing:0.324000px;}
.ws9b{word-spacing:0.336000px;}
.ws4a{word-spacing:0.378000px;}
.ws162{word-spacing:0.420000px;}
.wsb9{word-spacing:0.432000px;}
.ws13c{word-spacing:0.462000px;}
.ws2c{word-spacing:0.486000px;}
.ws144{word-spacing:0.504000px;}
.ws5d{word-spacing:0.540000px;}
.ws148{word-spacing:0.546000px;}
.ws7c{word-spacing:0.594000px;}
.ws166{word-spacing:0.630000px;}
.ws49{word-spacing:0.648000px;}
.ws13d{word-spacing:0.672000px;}
.ws139{word-spacing:0.714000px;}
.ws16b{word-spacing:0.720000px;}
.wsbd{word-spacing:0.756000px;}
.ws160{word-spacing:0.798000px;}
.ws54{word-spacing:0.810000px;}
.wsd4{word-spacing:0.864000px;}
.ws112{word-spacing:0.918000px;}
.wsd9{word-spacing:0.972000px;}
.ws77{word-spacing:1.026000px;}
.ws69{word-spacing:1.080000px;}
.ws12d{word-spacing:1.134000px;}
.ws14{word-spacing:1.188000px;}
.ws31{word-spacing:1.242000px;}
.ws150{word-spacing:1.344000px;}
.wsda{word-spacing:1.350000px;}
.ws15c{word-spacing:1.386000px;}
.ws32{word-spacing:1.404000px;}
.ws5b{word-spacing:1.458000px;}
.ws103{word-spacing:1.512000px;}
.wsa3{word-spacing:1.674000px;}
.ws165{word-spacing:1.806000px;}
.wsbb{word-spacing:1.836000px;}
.ws13{word-spacing:1.848000px;}
.wsaf{word-spacing:1.890000px;}
.ws152{word-spacing:1.932000px;}
.wse1{word-spacing:1.944000px;}
.ws1b{word-spacing:1.998000px;}
.ws14a{word-spacing:2.100000px;}
.wsc3{word-spacing:2.160000px;}
.ws151{word-spacing:2.310000px;}
.ws6b{word-spacing:2.322000px;}
.wsae{word-spacing:2.430000px;}
.ws13e{word-spacing:2.478000px;}
.ws109{word-spacing:2.484000px;}
.ws17{word-spacing:2.538000px;}
.ws106{word-spacing:2.592000px;}
.ws13b{word-spacing:2.604000px;}
.ws133{word-spacing:2.646000px;}
.ws1a{word-spacing:2.700000px;}
.wse0{word-spacing:2.808000px;}
.ws11b{word-spacing:2.862000px;}
.ws9c{word-spacing:2.898000px;}
.ws5c{word-spacing:2.916000px;}
.wse4{word-spacing:2.970000px;}
.wsce{word-spacing:3.024000px;}
.wsa2{word-spacing:3.078000px;}
.ws164{word-spacing:3.108000px;}
.ws4f{word-spacing:3.132000px;}
.ws1c{word-spacing:3.186000px;}
.wsb1{word-spacing:3.240000px;}
.ws13a{word-spacing:3.276000px;}
.ws15e{word-spacing:3.318000px;}
.wse3{word-spacing:3.348000px;}
.ws55{word-spacing:3.402000px;}
.ws121{word-spacing:3.444000px;}
.ws50{word-spacing:3.456000px;}
.ws2a{word-spacing:3.510000px;}
.ws75{word-spacing:3.564000px;}
.ws9d{word-spacing:3.612000px;}
.ws111{word-spacing:3.618000px;}
.ws153{word-spacing:3.654000px;}
.ws56{word-spacing:3.672000px;}
.ws19{word-spacing:3.726000px;}
.ws26{word-spacing:3.780000px;}
.ws3b{word-spacing:3.834000px;}
.ws3a{word-spacing:3.888000px;}
.ws132{word-spacing:3.942000px;}
.ws96{word-spacing:3.960000px;}
.wsc6{word-spacing:3.996000px;}
.ws120{word-spacing:4.032000px;}
.ws1e{word-spacing:4.050000px;}
.wsb5{word-spacing:4.104000px;}
.wsc0{word-spacing:4.158000px;}
.ws46{word-spacing:4.320000px;}
.ws12f{word-spacing:4.374000px;}
.ws167{word-spacing:4.410000px;}
.wsb7{word-spacing:4.428000px;}
.ws15d{word-spacing:4.452000px;}
.wsd2{word-spacing:4.536000px;}
.ws147{word-spacing:4.578000px;}
.ws35{word-spacing:4.590000px;}
.ws138{word-spacing:4.620000px;}
.ws159{word-spacing:4.662000px;}
.ws70{word-spacing:4.752000px;}
.ws79{word-spacing:4.806000px;}
.ws169{word-spacing:4.830000px;}
.ws5a{word-spacing:4.860000px;}
.wsd5{word-spacing:4.968000px;}
.ws11d{word-spacing:4.998000px;}
.ws62{word-spacing:5.022000px;}
.ws107{word-spacing:5.076000px;}
.ws11f{word-spacing:5.082000px;}
.ws168{word-spacing:5.166000px;}
.ws73{word-spacing:5.238000px;}
.ws6{word-spacing:5.292000px;}
.wscc{word-spacing:5.346000px;}
.ws16a{word-spacing:5.586000px;}
.ws15f{word-spacing:5.628000px;}
.ws2b{word-spacing:5.670000px;}
.ws11e{word-spacing:5.754000px;}
.ws60{word-spacing:5.778000px;}
.ws5e{word-spacing:5.940000px;}
.ws142{word-spacing:6.090000px;}
.wsdd{word-spacing:6.156000px;}
.ws76{word-spacing:6.210000px;}
.ws58{word-spacing:6.264000px;}
.ws7f{word-spacing:6.318000px;}
.ws80{word-spacing:6.372000px;}
.ws16{word-spacing:6.426000px;}
.ws137{word-spacing:6.510000px;}
.wsaa{word-spacing:6.642000px;}
.ws134{word-spacing:6.696000px;}
.ws25{word-spacing:6.804000px;}
.ws7b{word-spacing:6.858000px;}
.wsb8{word-spacing:6.912000px;}
.ws14c{word-spacing:6.930000px;}
.wsdb{word-spacing:6.966000px;}
.wsc4{word-spacing:7.128000px;}
.ws14b{word-spacing:7.140000px;}
.wsab{word-spacing:7.182000px;}
.wse7{word-spacing:7.236000px;}
.wsd3{word-spacing:7.398000px;}
.ws57{word-spacing:7.506000px;}
.ws98{word-spacing:7.518000px;}
.ws2d{word-spacing:7.560000px;}
.ws47{word-spacing:7.614000px;}
.ws18{word-spacing:7.668000px;}
.ws10d{word-spacing:7.776000px;}
.ws108{word-spacing:7.992000px;}
.ws59{word-spacing:8.100000px;}
.ws67{word-spacing:8.262000px;}
.ws12e{word-spacing:8.586000px;}
.wsd8{word-spacing:8.748000px;}
.ws5{word-spacing:8.820000px;}
.wscf{word-spacing:8.856000px;}
.ws65{word-spacing:9.018000px;}
.ws6d{word-spacing:9.072000px;}
.wsb3{word-spacing:9.126000px;}
.wsad{word-spacing:9.180000px;}
.ws118{word-spacing:9.234000px;}
.wsd1{word-spacing:9.342000px;}
.ws61{word-spacing:9.396000px;}
.ws114{word-spacing:9.774000px;}
.ws10e{word-spacing:9.882000px;}
.ws116{word-spacing:10.152000px;}
.wsa8{word-spacing:10.206000px;}
.wsd7{word-spacing:10.314000px;}
.ws10c{word-spacing:10.584000px;}
.wsdf{word-spacing:10.638000px;}
.ws156{word-spacing:10.710000px;}
.ws78{word-spacing:10.962000px;}
.wsb6{word-spacing:11.016000px;}
.ws51{word-spacing:11.070000px;}
.wse5{word-spacing:11.124000px;}
.ws10b{word-spacing:11.232000px;}
.ws8{word-spacing:11.256000px;}
.ws140{word-spacing:11.424000px;}
.wsbc{word-spacing:11.448000px;}
.ws23{word-spacing:11.556000px;}
.wsde{word-spacing:11.718000px;}
.ws4e{word-spacing:12.042000px;}
.ws33{word-spacing:12.096000px;}
.ws110{word-spacing:12.204000px;}
.ws146{word-spacing:12.306000px;}
.ws11c{word-spacing:12.474000px;}
.ws68{word-spacing:12.528000px;}
.ws131{word-spacing:13.014000px;}
.ws117{word-spacing:13.176000px;}
.ws10f{word-spacing:13.554000px;}
.ws99{word-spacing:13.608000px;}
.ws155{word-spacing:13.692000px;}
.wsb4{word-spacing:13.770000px;}
.ws63{word-spacing:13.932000px;}
.ws7e{word-spacing:14.310000px;}
.ws21{word-spacing:14.364000px;}
.ws119{word-spacing:14.580000px;}
.wscd{word-spacing:14.688000px;}
.ws24{word-spacing:14.904000px;}
.ws11a{word-spacing:15.066000px;}
.ws36{word-spacing:15.768000px;}
.ws15a{word-spacing:15.792000px;}
.ws1f{word-spacing:15.930000px;}
.wsc5{word-spacing:16.254000px;}
.ws6a{word-spacing:16.308000px;}
.ws22{word-spacing:16.794000px;}
.ws71{word-spacing:16.902000px;}
.ws135{word-spacing:17.010000px;}
.ws5f{word-spacing:17.820000px;}
.ws7d{word-spacing:18.198000px;}
.ws72{word-spacing:19.170000px;}
.ws130{word-spacing:20.574000px;}
.ws7a{word-spacing:21.384000px;}
.ws53{word-spacing:21.438000px;}
.ws48{word-spacing:21.708000px;}
.wse9{word-spacing:22.536000px;}
.ws39{word-spacing:22.572000px;}
.wseb{word-spacing:24.237000px;}
.wsea{word-spacing:24.399600px;}
.ws28{word-spacing:27.864000px;}
.ws157{word-spacing:32.298000px;}
.wscb{word-spacing:84.084000px;}
.wsfb{word-spacing:85.789800px;}
.wsc9{word-spacing:91.476000px;}
.ws89{word-spacing:93.500400px;}
.wsfa{word-spacing:94.150200px;}
.wsed{word-spacing:102.586200px;}
.wsee{word-spacing:104.572800px;}
.wsfd{word-spacing:115.869000px;}
.wsf5{word-spacing:119.491200px;}
.wsf1{word-spacing:119.596200px;}
.ws84{word-spacing:120.703800px;}
.wsf8{word-spacing:122.469600px;}
.wsf2{word-spacing:123.443400px;}
.wsfc{word-spacing:125.205000px;}
.wsf9{word-spacing:129.398400px;}
.wsf4{word-spacing:139.926000px;}
.wsf0{word-spacing:140.627400px;}
.wsca{word-spacing:147.051600px;}
.wsf7{word-spacing:147.158400px;}
.wsc8{word-spacing:176.506200px;}
.ws101{word-spacing:204.666000px;}
.ws87{word-spacing:545.253600px;}
._4{margin-left:-2896.046400px;}
._f{margin-left:-24.408000px;}
._18{margin-left:-19.980000px;}
._c{margin-left:-15.762600px;}
._e{margin-left:-13.500000px;}
._10{margin-left:-11.772000px;}
._5{margin-left:-9.996000px;}
._b{margin-left:-8.521200px;}
._d{margin-left:-6.750000px;}
._a{margin-left:-5.603400px;}
._8{margin-left:-3.720600px;}
._0{margin-left:-1.900800px;}
._1{width:1.296000px;}
._9{width:2.311200px;}
._6{width:3.444000px;}
._14{width:4.444200px;}
._16{width:6.299400px;}
._17{width:12.271800px;}
._15{width:13.500000px;}
._12{width:15.135000px;}
._11{width:16.246800px;}
._3{width:43.780200px;}
._7{width:45.108000px;}
._24{width:98.062800px;}
._13{width:123.018000px;}
._1f{width:136.219800px;}
._22{width:137.825400px;}
._1b{width:172.040400px;}
._1a{width:177.328800px;}
._19{width:198.675000px;}
._1d{width:244.743600px;}
._1e{width:470.001000px;}
._20{width:486.986400px;}
._21{width:492.708600px;}
._23{width:497.042400px;}
._26{width:504.918000px;}
._25{width:510.268800px;}
._1c{width:612.486000px;}
._2{width:1900.773600px;}
.fc3{color:rgb(23,111,192);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.360000px;}
.fs9{font-size:31.320000px;}
.fs8{font-size:34.800000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.000446px;}
.fsc{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:20.551200px;}
.y20{bottom:29.763750px;}
.y8d{bottom:47.034300px;}
.y5{bottom:66.525004px;}
.y105{bottom:89.676900px;}
.ybd{bottom:95.244000px;}
.y77{bottom:95.244150px;}
.y28{bottom:96.888900px;}
.y4{bottom:97.125005px;}
.y27{bottom:110.388900px;}
.ybc{bottom:113.244000px;}
.y76{bottom:113.244150px;}
.y84{bottom:114.587100px;}
.y37{bottom:130.062000px;}
.ybb{bottom:131.244000px;}
.y75{bottom:131.244150px;}
.y26{bottom:131.329950px;}
.y1f{bottom:139.264499px;}
.y25{bottom:144.829950px;}
.yba{bottom:149.244000px;}
.y74{bottom:149.244150px;}
.y36{bottom:151.062000px;}
.y24{bottom:158.329950px;}
.yb9{bottom:167.244000px;}
.y73{bottom:167.244150px;}
.yb8{bottom:185.244000px;}
.y5e{bottom:185.244150px;}
.y35{bottom:189.069750px;}
.y16{bottom:196.933500px;}
.yb7{bottom:203.244000px;}
.y5d{bottom:203.244150px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y34{bottom:210.069750px;}
.y5c{bottom:221.244150px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y33{bottom:231.069750px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y5b{bottom:239.244150px;}
.y72{bottom:257.244150px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y32{bottom:269.077650px;}
.yb6{bottom:270.294150px;}
.y15d{bottom:272.247300px;}
.y122{bottom:272.303250px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y5a{bottom:275.244150px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y15c{bottom:285.747300px;}
.y121{bottom:285.803250px;}
.y31{bottom:290.077650px;}
.y59{bottom:293.244150px;}
.y15b{bottom:299.247300px;}
.y120{bottom:299.303250px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y30{bottom:311.077650px;}
.y58{bottom:311.244150px;}
.y15a{bottom:312.747300px;}
.y11f{bottom:312.803250px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y159{bottom:326.247300px;}
.y11e{bottom:326.303250px;}
.y57{bottom:329.244150px;}
.y2f{bottom:332.077650px;}
.y158{bottom:339.747300px;}
.y11d{bottom:339.803250px;}
.y56{bottom:347.244150px;}
.yd{bottom:348.133500px;}
.y2e{bottom:353.077650px;}
.y157{bottom:353.247300px;}
.y11c{bottom:353.303250px;}
.y55{bottom:365.244150px;}
.y156{bottom:366.747300px;}
.y11b{bottom:366.803250px;}
.y155{bottom:380.247300px;}
.y11a{bottom:380.303250px;}
.y54{bottom:383.244150px;}
.yc{bottom:386.785499px;}
.y2d{bottom:391.085550px;}
.y154{bottom:393.747300px;}
.y119{bottom:393.803250px;}
.y53{bottom:401.244150px;}
.y153{bottom:407.247300px;}
.y118{bottom:407.303250px;}
.yb{bottom:408.044999px;}
.y2c{bottom:412.085550px;}
.y52{bottom:419.244150px;}
.y152{bottom:420.747300px;}
.y117{bottom:420.803250px;}
.y95{bottom:427.975500px;}
.y151{bottom:434.247300px;}
.y116{bottom:434.303250px;}
.y51{bottom:437.244150px;}
.y94{bottom:441.475500px;}
.y150{bottom:447.747300px;}
.y115{bottom:447.803250px;}
.y2b{bottom:450.093450px;}
.y50{bottom:455.244150px;}
.y14f{bottom:461.247300px;}
.y114{bottom:461.303250px;}
.y93{bottom:463.479450px;}
.y2a{bottom:471.093450px;}
.y71{bottom:473.244150px;}
.y14e{bottom:474.747300px;}
.y113{bottom:474.803250px;}
.y92{bottom:476.979450px;}
.y14d{bottom:488.247300px;}
.y112{bottom:488.303250px;}
.y4f{bottom:491.244150px;}
.y29{bottom:492.093450px;}
.y91{bottom:493.944450px;}
.y14c{bottom:501.747300px;}
.ya{bottom:502.864502px;}
.y4e{bottom:509.244150px;}
.yb3{bottom:514.315950px;}
.y14b{bottom:515.247300px;}
.y9{bottom:520.864502px;}
.y4d{bottom:527.244150px;}
.yb5{bottom:527.815950px;}
.y14a{bottom:528.747300px;}
.y8{bottom:538.864499px;}
.yb4{bottom:541.315950px;}
.y149{bottom:542.247300px;}
.y4c{bottom:545.244150px;}
.y148{bottom:555.747300px;}
.y7{bottom:556.864499px;}
.yb2{bottom:561.568650px;}
.y4b{bottom:563.244150px;}
.y147{bottom:569.247300px;}
.yb1{bottom:575.068650px;}
.y4a{bottom:581.244150px;}
.y146{bottom:582.747300px;}
.yb0{bottom:588.568650px;}
.y145{bottom:596.247300px;}
.y49{bottom:599.244150px;}
.yaf{bottom:602.068650px;}
.y144{bottom:609.747300px;}
.y48{bottom:617.244150px;}
.yae{bottom:622.321500px;}
.y143{bottom:623.247300px;}
.ye0{bottom:632.152800px;}
.y47{bottom:635.244150px;}
.yad{bottom:635.821500px;}
.y142{bottom:636.747300px;}
.yac{bottom:649.321500px;}
.y141{bottom:650.247300px;}
.y46{bottom:653.244150px;}
.ydf{bottom:654.156600px;}
.y140{bottom:663.747300px;}
.yde{bottom:667.656600px;}
.yab{bottom:669.574350px;}
.y45{bottom:671.244150px;}
.y13f{bottom:677.247300px;}
.ydd{bottom:681.156600px;}
.yaa{bottom:683.074350px;}
.y44{bottom:689.244150px;}
.y13e{bottom:690.747300px;}
.ydc{bottom:694.656600px;}
.yf6{bottom:700.349550px;}
.ya9{bottom:703.327050px;}
.y13d{bottom:704.247300px;}
.y43{bottom:707.244150px;}
.ydb{bottom:708.156600px;}
.ya8{bottom:716.827050px;}
.y13c{bottom:717.747300px;}
.yf5{bottom:722.353500px;}
.y42{bottom:725.244150px;}
.y6{bottom:726.298500px;}
.y63{bottom:728.353500px;}
.ya7{bottom:730.327050px;}
.y13b{bottom:731.247300px;}
.yf0{bottom:733.941450px;}
.yf4{bottom:735.853500px;}
.y41{bottom:743.244150px;}
.y13a{bottom:744.747300px;}
.yef{bottom:747.441450px;}
.yf3{bottom:749.353500px;}
.y62{bottom:750.357450px;}
.ya6{bottom:750.579900px;}
.y3{bottom:752.599495px;}
.y139{bottom:758.247300px;}
.y40{bottom:761.244150px;}
.yf2{bottom:762.853500px;}
.ya5{bottom:764.079900px;}
.y83{bottom:767.553000px;}
.yee{bottom:767.694150px;}
.y138{bottom:771.747300px;}
.y8f{bottom:772.728600px;}
.yf1{bottom:776.353500px;}
.y70{bottom:779.244150px;}
.ybe{bottom:779.743350px;}
.yed{bottom:781.194150px;}
.ya4{bottom:784.332600px;}
.y137{bottom:785.247300px;}
.y104{bottom:789.370500px;}
.y8e{bottom:790.589100px;}
.y6f{bottom:797.244150px;}
.y110{bottom:797.884200px;}
.y136{bottom:798.747300px;}
.yd6{bottom:800.978700px;}
.yec{bottom:801.447000px;}
.yc9{bottom:802.206150px;}
.ya3{bottom:804.585450px;}
.y111{bottom:810.778200px;}
.y135{bottom:812.247300px;}
.yd5{bottom:814.512300px;}
.y87{bottom:814.583700px;}
.y8a{bottom:814.584750px;}
.y85{bottom:814.585200px;}
.y8b{bottom:814.585350px;}
.y86{bottom:814.585650px;}
.y89{bottom:814.586550px;}
.y8c{bottom:814.587300px;}
.y88{bottom:814.588650px;}
.yeb{bottom:814.947000px;}
.y6e{bottom:815.244150px;}
.yc8{bottom:815.995350px;}
.ya2{bottom:818.085450px;}
.y134{bottom:825.747300px;}
.y10e{bottom:830.349750px;}
.y109{bottom:830.352450px;}
.y106{bottom:830.354250px;}
.y10c{bottom:830.354550px;}
.y10f{bottom:830.355300px;}
.y10d{bottom:830.355900px;}
.y108{bottom:830.356200px;}
.y10a{bottom:830.356500px;}
.y107{bottom:830.358000px;}
.y10b{bottom:830.358600px;}
.ya1{bottom:831.585450px;}
.y6d{bottom:833.244150px;}
.y3f{bottom:834.354450px;}
.yea{bottom:835.199850px;}
.yd4{bottom:836.937600px;}
.yc7{bottom:837.067950px;}
.y133{bottom:839.247300px;}
.y78{bottom:842.428200px;}
.ye9{bottom:848.699850px;}
.y6c{bottom:851.244150px;}
.ya0{bottom:851.838300px;}
.y132{bottom:852.747300px;}
.yd3{bottom:853.397400px;}
.yc6{bottom:854.670900px;}
.y3e{bottom:855.354450px;}
.y79{bottom:855.805350px;}
.yf7{bottom:857.772000px;}
.y9f{bottom:865.338300px;}
.y131{bottom:866.247300px;}
.ye8{bottom:868.952700px;}
.yf8{bottom:868.963500px;}
.y7a{bottom:869.182200px;}
.y6b{bottom:869.244150px;}
.yd2{bottom:869.857050px;}
.yc5{bottom:872.279700px;}
.y3d{bottom:876.354450px;}
.y9e{bottom:878.838300px;}
.y2{bottom:879.369000px;}
.y130{bottom:879.747300px;}
.yf9{bottom:880.155600px;}
.ye7{bottom:882.452700px;}
.y7b{bottom:882.566550px;}
.yd1{bottom:886.316100px;}
.y6a{bottom:887.244150px;}
.yc4{bottom:889.882800px;}
.yfa{bottom:891.339750px;}
.yd9{bottom:892.139700px;}
.y9d{bottom:892.338300px;}
.y12f{bottom:893.247300px;}
.y7c{bottom:895.930350px;}
.y3c{bottom:897.354450px;}
.yfb{bottom:902.530350px;}
.ye6{bottom:902.705400px;}
.yd0{bottom:902.775000px;}
.yd8{bottom:904.739700px;}
.y69{bottom:905.244150px;}
.y12e{bottom:906.747300px;}
.yc3{bottom:907.485750px;}
.y7d{bottom:909.314700px;}
.y9c{bottom:912.591000px;}
.yfc{bottom:913.728900px;}
.ye5{bottom:916.205400px;}
.y3b{bottom:918.354450px;}
.ycf{bottom:919.234800px;}
.y12d{bottom:920.247300px;}
.y7e{bottom:922.684050px;}
.y68{bottom:923.244150px;}
.yfd{bottom:924.920400px;}
.yc2{bottom:925.089000px;}
.y9b{bottom:926.091000px;}
.y12c{bottom:933.747300px;}
.yce{bottom:935.694450px;}
.y7f{bottom:936.061200px;}
.yfe{bottom:936.111900px;}
.ye4{bottom:936.458250px;}
.y9a{bottom:939.591000px;}
.y67{bottom:941.244150px;}
.yc1{bottom:942.691800px;}
.y12b{bottom:947.247300px;}
.yff{bottom:947.303250px;}
.y80{bottom:949.432200px;}
.ye3{bottom:949.958250px;}
.ycd{bottom:952.153500px;}
.y100{bottom:958.494750px;}
.y66{bottom:959.244150px;}
.y99{bottom:959.843850px;}
.yc0{bottom:960.287700px;}
.y12a{bottom:960.747300px;}
.y3a{bottom:962.740200px;}
.y81{bottom:962.809050px;}
.y1{bottom:966.726000px;}
.ycc{bottom:968.613900px;}
.y101{bottom:969.692700px;}
.ye2{bottom:970.210950px;}
.ycb{bottom:970.608000px;}
.y98{bottom:973.343850px;}
.y129{bottom:974.247300px;}
.y82{bottom:976.186200px;}
.y65{bottom:977.244150px;}
.ybf{bottom:977.904000px;}
.y102{bottom:980.871000px;}
.yca{bottom:983.208000px;}
.yda{bottom:983.720700px;}
.y128{bottom:987.747300px;}
.y90{bottom:987.947100px;}
.ye1{bottom:990.463800px;}
.y103{bottom:992.068950px;}
.y96{bottom:993.596700px;}
.y64{bottom:995.244150px;}
.y127{bottom:1001.247300px;}
.y39{bottom:1001.740200px;}
.y97{bottom:1007.096700px;}
.yd7{bottom:1007.849700px;}
.y61{bottom:1013.244150px;}
.y126{bottom:1014.747300px;}
.y125{bottom:1028.247300px;}
.y60{bottom:1031.244150px;}
.y124{bottom:1041.747300px;}
.y38{bottom:1049.244150px;}
.y123{bottom:1055.247300px;}
.y22{bottom:1098.236250px;}
.y23{bottom:1116.756000px;}
.y21{bottom:1143.779550px;}
.h14{height:23.814000px;}
.h11{height:30.702000px;}
.h13{height:30.702326px;}
.h7{height:32.130000px;}
.h18{height:35.088000px;}
.hc{height:37.674000px;}
.ha{height:39.474000px;}
.h15{height:41.660156px;}
.hb{height:43.860000px;}
.h6{height:45.900000px;}
.he{height:48.114000px;}
.h3{height:48.195000px;}
.h10{height:48.246000px;}
.hd{height:48.438000px;}
.h2{height:55.080000px;}
.h16{height:61.460156px;}
.h5{height:78.030000px;}
.hf{height:96.492000px;}
.h4{height:119.055004px;}
.h17{height:214.837500px;}
.h12{height:232.533000px;}
.h9{height:1177.500000px;}
.h8{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:348.084000px;}
.w4{width:348.661500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.130450px;}
.x3a{left:9.680850px;}
.xd{left:34.015800px;}
.x5{left:63.779550px;}
.x9{left:80.787450px;}
.xe{left:97.795200px;}
.x1{left:102.045000px;}
.x24{left:104.036550px;}
.x2{left:106.297500px;}
.x28{left:110.262150px;}
.x45{left:114.803100px;}
.x21{left:125.207550px;}
.x32{left:130.702350px;}
.x25{left:152.472450px;}
.x1d{left:153.921300px;}
.x26{left:160.441950px;}
.x23{left:176.306100px;}
.x29{left:183.804000px;}
.x27{left:190.764900px;}
.x4{left:203.484001px;}
.x36{left:217.275300px;}
.x35{left:243.174600px;}
.x2a{left:265.948050px;}
.x2b{left:325.458750px;}
.x19{left:329.879400px;}
.x22{left:351.338550px;}
.x1f{left:363.543300px;}
.x1e{left:370.531500px;}
.x20{left:372.508200px;}
.xb{left:446.456700px;}
.x3{left:454.959000px;}
.x37{left:462.675450px;}
.x39{left:466.551450px;}
.x3b{left:474.469800px;}
.x38{left:476.356350px;}
.xa{left:480.472500px;}
.x10{left:491.983800px;}
.x1c{left:496.925250px;}
.xf{left:500.740650px;}
.x2e{left:505.688850px;}
.x3c{left:507.259200px;}
.x2d{left:510.263100px;}
.x33{left:522.131850px;}
.x2c{left:527.189100px;}
.x44{left:528.648900px;}
.x12{left:534.285900px;}
.x3d{left:540.049650px;}
.x1b{left:555.735750px;}
.x1a{left:557.216250px;}
.x43{left:560.064900px;}
.x13{left:568.796850px;}
.x3e{left:572.841450px;}
.x2f{left:590.337600px;}
.x34{left:593.258850px;}
.x14{left:603.302250px;}
.x8{left:605.683350px;}
.x6{left:623.590050px;}
.x30{left:630.329400px;}
.x15{left:637.813350px;}
.xc{left:667.999650px;}
.x3f{left:671.211900px;}
.x16{left:672.314100px;}
.x31{left:687.181350px;}
.x40{left:704.001450px;}
.x7{left:707.657550px;}
.x41{left:736.792950px;}
.x17{left:741.334650px;}
.x42{left:769.582800px;}
.x18{left:775.841550px;}
@media print{
.v1{vertical-align:-33.259733pt;}
.v3{vertical-align:-17.600000pt;}
.v2{vertical-align:-15.840000pt;}
.v5{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.320000pt;}
.v4{vertical-align:17.600000pt;}
.ls12{letter-spacing:-13.333333pt;}
.ls2f{letter-spacing:-3.573333pt;}
.ls3e{letter-spacing:-3.472000pt;}
.ls1d{letter-spacing:-3.408000pt;}
.ls3a{letter-spacing:-2.912000pt;}
.ls38{letter-spacing:-2.874667pt;}
.ls2d{letter-spacing:-2.453333pt;}
.ls4e{letter-spacing:-2.277333pt;}
.ls25{letter-spacing:-2.202667pt;}
.ls51{letter-spacing:-2.090667pt;}
.ls4a{letter-spacing:-1.717333pt;}
.ls3f{letter-spacing:-1.680000pt;}
.ls43{letter-spacing:-1.642667pt;}
.ls47{letter-spacing:-1.493333pt;}
.ls2e{letter-spacing:-1.422933pt;}
.ls29{letter-spacing:-1.418667pt;}
.ls49{letter-spacing:-0.858667pt;}
.ls4d{letter-spacing:-0.821333pt;}
.ls24{letter-spacing:-0.522667pt;}
.ls41{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.433067pt;}
.lse{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls3c{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.309333pt;}
.ls1f{letter-spacing:-0.298667pt;}
.ls33{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.186667pt;}
.ls48{letter-spacing:-0.149333pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.008533pt;}
.ls27{letter-spacing:0.037333pt;}
.ls31{letter-spacing:0.106667pt;}
.ls3b{letter-spacing:0.112000pt;}
.ls32{letter-spacing:0.144000pt;}
.ls39{letter-spacing:0.149333pt;}
.ls50{letter-spacing:0.224000pt;}
.ls2b{letter-spacing:0.288000pt;}
.ls3d{letter-spacing:0.298667pt;}
.ls34{letter-spacing:0.336000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.384000pt;}
.ls40{letter-spacing:0.410667pt;}
.ls9{letter-spacing:0.432000pt;}
.ls20{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls44{letter-spacing:0.485333pt;}
.ls22{letter-spacing:0.522667pt;}
.lsa{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.560000pt;}
.ls30{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.586667pt;}
.ls37{letter-spacing:0.597333pt;}
.ls2a{letter-spacing:0.624000pt;}
.lsd{letter-spacing:0.633813pt;}
.ls4{letter-spacing:0.634667pt;}
.ls1e{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls23{letter-spacing:0.709333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls4b{letter-spacing:0.784000pt;}
.ls46{letter-spacing:0.821333pt;}
.ls36{letter-spacing:0.856000pt;}
.ls26{letter-spacing:0.858667pt;}
.ls35{letter-spacing:0.864000pt;}
.ls6{letter-spacing:0.912000pt;}
.ls28{letter-spacing:0.933333pt;}
.lsf{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.008000pt;}
.ls52{letter-spacing:1.120000pt;}
.ls4f{letter-spacing:1.157333pt;}
.ls45{letter-spacing:1.418667pt;}
.ls1c{letter-spacing:1.455623pt;}
.ls4c{letter-spacing:1.754667pt;}
.ls15{letter-spacing:218.660480pt;}
.ls17{letter-spacing:297.591680pt;}
.ls1a{letter-spacing:373.524480pt;}
.ls14{letter-spacing:383.166080pt;}
.ls18{letter-spacing:400.547413pt;}
.ls16{letter-spacing:474.913813pt;}
.ls19{letter-spacing:580.575680pt;}
.ls13{letter-spacing:629.903680pt;}
.ws97{word-spacing:-36.000000pt;}
.ws93{word-spacing:-33.546667pt;}
.ws92{word-spacing:-20.446933pt;}
.ws1{word-spacing:-15.200000pt;}
.wsc7{word-spacing:-14.933333pt;}
.ws3c{word-spacing:-14.400000pt;}
.wse8{word-spacing:-14.304000pt;}
.wsa6{word-spacing:-14.026667pt;}
.ws43{word-spacing:-13.920000pt;}
.ws90{word-spacing:-13.760000pt;}
.ws3e{word-spacing:-13.344000pt;}
.ws3d{word-spacing:-13.333333pt;}
.wsff{word-spacing:-13.008000pt;}
.ws128{word-spacing:-12.133333pt;}
.ws125{word-spacing:-11.797333pt;}
.ws95{word-spacing:-11.786667pt;}
.ws12c{word-spacing:-11.498667pt;}
.ws12b{word-spacing:-11.162667pt;}
.ws123{word-spacing:-11.125333pt;}
.ws86{word-spacing:-11.088000pt;}
.ws8a{word-spacing:-11.050667pt;}
.ws82{word-spacing:-11.013333pt;}
.wsec{word-spacing:-10.976000pt;}
.ws8b{word-spacing:-10.938667pt;}
.ws83{word-spacing:-10.901333pt;}
.ws124{word-spacing:-10.864000pt;}
.ws122{word-spacing:-10.826667pt;}
.ws8c{word-spacing:-10.752000pt;}
.ws127{word-spacing:-10.677333pt;}
.ws8f{word-spacing:-10.666667pt;}
.ws129{word-spacing:-10.602667pt;}
.wsfe{word-spacing:-10.490667pt;}
.ws126{word-spacing:-10.229333pt;}
.wsf3{word-spacing:-10.042667pt;}
.ws85{word-spacing:-9.856000pt;}
.ws40{word-spacing:-9.349333pt;}
.ws91{word-spacing:-9.338667pt;}
.ws8e{word-spacing:-9.322667pt;}
.ws8d{word-spacing:-8.960000pt;}
.ws12a{word-spacing:-8.288000pt;}
.ws88{word-spacing:-8.176000pt;}
.ws41{word-spacing:-7.733333pt;}
.wsef{word-spacing:-7.466667pt;}
.ws3f{word-spacing:-7.424000pt;}
.wsf6{word-spacing:-6.906667pt;}
.ws94{word-spacing:-6.310400pt;}
.ws81{word-spacing:-6.019627pt;}
.ws100{word-spacing:-5.413333pt;}
.ws105{word-spacing:-5.226667pt;}
.ws11{word-spacing:-3.637333pt;}
.ws12{word-spacing:-3.285333pt;}
.ws113{word-spacing:-3.168000pt;}
.wsa9{word-spacing:-3.120000pt;}
.ws64{word-spacing:-2.832000pt;}
.ws6c{word-spacing:-2.688000pt;}
.ws163{word-spacing:-2.650667pt;}
.ws29{word-spacing:-2.640000pt;}
.ws34{word-spacing:-2.544000pt;}
.ws2f{word-spacing:-2.496000pt;}
.ws115{word-spacing:-2.448000pt;}
.ws6e{word-spacing:-2.352000pt;}
.ws44{word-spacing:-2.304000pt;}
.ws158{word-spacing:-2.277333pt;}
.wsc{word-spacing:-2.256000pt;}
.ws16d{word-spacing:-2.176000pt;}
.ws14e{word-spacing:-2.090667pt;}
.ws10a{word-spacing:-2.064000pt;}
.ws136{word-spacing:-2.016000pt;}
.wsdc{word-spacing:-1.968000pt;}
.ws45{word-spacing:-1.941333pt;}
.ws141{word-spacing:-1.904000pt;}
.ws4c{word-spacing:-1.872000pt;}
.ws143{word-spacing:-1.866667pt;}
.ws14f{word-spacing:-1.829333pt;}
.wsb{word-spacing:-1.824000pt;}
.ws3{word-spacing:-1.792000pt;}
.wsf{word-spacing:-1.776000pt;}
.wsd{word-spacing:-1.728000pt;}
.ws9a{word-spacing:-1.717333pt;}
.ws9{word-spacing:-1.680000pt;}
.ws10{word-spacing:-1.642667pt;}
.wsa5{word-spacing:-1.632000pt;}
.ws7{word-spacing:-1.605333pt;}
.ws30{word-spacing:-1.584000pt;}
.wsba{word-spacing:-1.536000pt;}
.ws9f{word-spacing:-1.493333pt;}
.wse2{word-spacing:-1.392000pt;}
.wsa{word-spacing:-1.344000pt;}
.ws37{word-spacing:-1.296000pt;}
.ws38{word-spacing:-1.248000pt;}
.ws15{word-spacing:-1.200000pt;}
.ws149{word-spacing:-1.194667pt;}
.ws4b{word-spacing:-1.104000pt;}
.wsa0{word-spacing:-1.082667pt;}
.ws4{word-spacing:-1.045333pt;}
.wsd0{word-spacing:-1.008000pt;}
.wse{word-spacing:-0.960000pt;}
.ws16c{word-spacing:-0.938667pt;}
.wsa1{word-spacing:-0.933333pt;}
.ws74{word-spacing:-0.912000pt;}
.wsc2{word-spacing:-0.864000pt;}
.ws13f{word-spacing:-0.858667pt;}
.wsb2{word-spacing:-0.816000pt;}
.ws145{word-spacing:-0.784000pt;}
.ws27{word-spacing:-0.768000pt;}
.ws161{word-spacing:-0.746667pt;}
.wsc1{word-spacing:-0.720000pt;}
.ws66{word-spacing:-0.672000pt;}
.ws104{word-spacing:-0.634667pt;}
.wsa4{word-spacing:-0.624000pt;}
.ws2e{word-spacing:-0.576000pt;}
.ws20{word-spacing:-0.528000pt;}
.ws2{word-spacing:-0.480000pt;}
.wsbe{word-spacing:-0.432000pt;}
.ws4d{word-spacing:-0.336000pt;}
.ws154{word-spacing:-0.298667pt;}
.wsb0{word-spacing:-0.288000pt;}
.wsbf{word-spacing:-0.240000pt;}
.ws15b{word-spacing:-0.224000pt;}
.ws52{word-spacing:-0.192000pt;}
.ws14d{word-spacing:-0.186667pt;}
.wsac{word-spacing:-0.096000pt;}
.ws42{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsd6{word-spacing:0.096000pt;}
.ws102{word-spacing:0.112000pt;}
.wse6{word-spacing:0.144000pt;}
.ws9e{word-spacing:0.186667pt;}
.ws1d{word-spacing:0.192000pt;}
.ws6f{word-spacing:0.240000pt;}
.wsa7{word-spacing:0.288000pt;}
.ws9b{word-spacing:0.298667pt;}
.ws4a{word-spacing:0.336000pt;}
.ws162{word-spacing:0.373333pt;}
.wsb9{word-spacing:0.384000pt;}
.ws13c{word-spacing:0.410667pt;}
.ws2c{word-spacing:0.432000pt;}
.ws144{word-spacing:0.448000pt;}
.ws5d{word-spacing:0.480000pt;}
.ws148{word-spacing:0.485333pt;}
.ws7c{word-spacing:0.528000pt;}
.ws166{word-spacing:0.560000pt;}
.ws49{word-spacing:0.576000pt;}
.ws13d{word-spacing:0.597333pt;}
.ws139{word-spacing:0.634667pt;}
.ws16b{word-spacing:0.640000pt;}
.wsbd{word-spacing:0.672000pt;}
.ws160{word-spacing:0.709333pt;}
.ws54{word-spacing:0.720000pt;}
.wsd4{word-spacing:0.768000pt;}
.ws112{word-spacing:0.816000pt;}
.wsd9{word-spacing:0.864000pt;}
.ws77{word-spacing:0.912000pt;}
.ws69{word-spacing:0.960000pt;}
.ws12d{word-spacing:1.008000pt;}
.ws14{word-spacing:1.056000pt;}
.ws31{word-spacing:1.104000pt;}
.ws150{word-spacing:1.194667pt;}
.wsda{word-spacing:1.200000pt;}
.ws15c{word-spacing:1.232000pt;}
.ws32{word-spacing:1.248000pt;}
.ws5b{word-spacing:1.296000pt;}
.ws103{word-spacing:1.344000pt;}
.wsa3{word-spacing:1.488000pt;}
.ws165{word-spacing:1.605333pt;}
.wsbb{word-spacing:1.632000pt;}
.ws13{word-spacing:1.642667pt;}
.wsaf{word-spacing:1.680000pt;}
.ws152{word-spacing:1.717333pt;}
.wse1{word-spacing:1.728000pt;}
.ws1b{word-spacing:1.776000pt;}
.ws14a{word-spacing:1.866667pt;}
.wsc3{word-spacing:1.920000pt;}
.ws151{word-spacing:2.053333pt;}
.ws6b{word-spacing:2.064000pt;}
.wsae{word-spacing:2.160000pt;}
.ws13e{word-spacing:2.202667pt;}
.ws109{word-spacing:2.208000pt;}
.ws17{word-spacing:2.256000pt;}
.ws106{word-spacing:2.304000pt;}
.ws13b{word-spacing:2.314667pt;}
.ws133{word-spacing:2.352000pt;}
.ws1a{word-spacing:2.400000pt;}
.wse0{word-spacing:2.496000pt;}
.ws11b{word-spacing:2.544000pt;}
.ws9c{word-spacing:2.576000pt;}
.ws5c{word-spacing:2.592000pt;}
.wse4{word-spacing:2.640000pt;}
.wsce{word-spacing:2.688000pt;}
.wsa2{word-spacing:2.736000pt;}
.ws164{word-spacing:2.762667pt;}
.ws4f{word-spacing:2.784000pt;}
.ws1c{word-spacing:2.832000pt;}
.wsb1{word-spacing:2.880000pt;}
.ws13a{word-spacing:2.912000pt;}
.ws15e{word-spacing:2.949333pt;}
.wse3{word-spacing:2.976000pt;}
.ws55{word-spacing:3.024000pt;}
.ws121{word-spacing:3.061333pt;}
.ws50{word-spacing:3.072000pt;}
.ws2a{word-spacing:3.120000pt;}
.ws75{word-spacing:3.168000pt;}
.ws9d{word-spacing:3.210667pt;}
.ws111{word-spacing:3.216000pt;}
.ws153{word-spacing:3.248000pt;}
.ws56{word-spacing:3.264000pt;}
.ws19{word-spacing:3.312000pt;}
.ws26{word-spacing:3.360000pt;}
.ws3b{word-spacing:3.408000pt;}
.ws3a{word-spacing:3.456000pt;}
.ws132{word-spacing:3.504000pt;}
.ws96{word-spacing:3.520000pt;}
.wsc6{word-spacing:3.552000pt;}
.ws120{word-spacing:3.584000pt;}
.ws1e{word-spacing:3.600000pt;}
.wsb5{word-spacing:3.648000pt;}
.wsc0{word-spacing:3.696000pt;}
.ws46{word-spacing:3.840000pt;}
.ws12f{word-spacing:3.888000pt;}
.ws167{word-spacing:3.920000pt;}
.wsb7{word-spacing:3.936000pt;}
.ws15d{word-spacing:3.957333pt;}
.wsd2{word-spacing:4.032000pt;}
.ws147{word-spacing:4.069333pt;}
.ws35{word-spacing:4.080000pt;}
.ws138{word-spacing:4.106667pt;}
.ws159{word-spacing:4.144000pt;}
.ws70{word-spacing:4.224000pt;}
.ws79{word-spacing:4.272000pt;}
.ws169{word-spacing:4.293333pt;}
.ws5a{word-spacing:4.320000pt;}
.wsd5{word-spacing:4.416000pt;}
.ws11d{word-spacing:4.442667pt;}
.ws62{word-spacing:4.464000pt;}
.ws107{word-spacing:4.512000pt;}
.ws11f{word-spacing:4.517333pt;}
.ws168{word-spacing:4.592000pt;}
.ws73{word-spacing:4.656000pt;}
.ws6{word-spacing:4.704000pt;}
.wscc{word-spacing:4.752000pt;}
.ws16a{word-spacing:4.965333pt;}
.ws15f{word-spacing:5.002667pt;}
.ws2b{word-spacing:5.040000pt;}
.ws11e{word-spacing:5.114667pt;}
.ws60{word-spacing:5.136000pt;}
.ws5e{word-spacing:5.280000pt;}
.ws142{word-spacing:5.413333pt;}
.wsdd{word-spacing:5.472000pt;}
.ws76{word-spacing:5.520000pt;}
.ws58{word-spacing:5.568000pt;}
.ws7f{word-spacing:5.616000pt;}
.ws80{word-spacing:5.664000pt;}
.ws16{word-spacing:5.712000pt;}
.ws137{word-spacing:5.786667pt;}
.wsaa{word-spacing:5.904000pt;}
.ws134{word-spacing:5.952000pt;}
.ws25{word-spacing:6.048000pt;}
.ws7b{word-spacing:6.096000pt;}
.wsb8{word-spacing:6.144000pt;}
.ws14c{word-spacing:6.160000pt;}
.wsdb{word-spacing:6.192000pt;}
.wsc4{word-spacing:6.336000pt;}
.ws14b{word-spacing:6.346667pt;}
.wsab{word-spacing:6.384000pt;}
.wse7{word-spacing:6.432000pt;}
.wsd3{word-spacing:6.576000pt;}
.ws57{word-spacing:6.672000pt;}
.ws98{word-spacing:6.682667pt;}
.ws2d{word-spacing:6.720000pt;}
.ws47{word-spacing:6.768000pt;}
.ws18{word-spacing:6.816000pt;}
.ws10d{word-spacing:6.912000pt;}
.ws108{word-spacing:7.104000pt;}
.ws59{word-spacing:7.200000pt;}
.ws67{word-spacing:7.344000pt;}
.ws12e{word-spacing:7.632000pt;}
.wsd8{word-spacing:7.776000pt;}
.ws5{word-spacing:7.840000pt;}
.wscf{word-spacing:7.872000pt;}
.ws65{word-spacing:8.016000pt;}
.ws6d{word-spacing:8.064000pt;}
.wsb3{word-spacing:8.112000pt;}
.wsad{word-spacing:8.160000pt;}
.ws118{word-spacing:8.208000pt;}
.wsd1{word-spacing:8.304000pt;}
.ws61{word-spacing:8.352000pt;}
.ws114{word-spacing:8.688000pt;}
.ws10e{word-spacing:8.784000pt;}
.ws116{word-spacing:9.024000pt;}
.wsa8{word-spacing:9.072000pt;}
.wsd7{word-spacing:9.168000pt;}
.ws10c{word-spacing:9.408000pt;}
.wsdf{word-spacing:9.456000pt;}
.ws156{word-spacing:9.520000pt;}
.ws78{word-spacing:9.744000pt;}
.wsb6{word-spacing:9.792000pt;}
.ws51{word-spacing:9.840000pt;}
.wse5{word-spacing:9.888000pt;}
.ws10b{word-spacing:9.984000pt;}
.ws8{word-spacing:10.005333pt;}
.ws140{word-spacing:10.154667pt;}
.wsbc{word-spacing:10.176000pt;}
.ws23{word-spacing:10.272000pt;}
.wsde{word-spacing:10.416000pt;}
.ws4e{word-spacing:10.704000pt;}
.ws33{word-spacing:10.752000pt;}
.ws110{word-spacing:10.848000pt;}
.ws146{word-spacing:10.938667pt;}
.ws11c{word-spacing:11.088000pt;}
.ws68{word-spacing:11.136000pt;}
.ws131{word-spacing:11.568000pt;}
.ws117{word-spacing:11.712000pt;}
.ws10f{word-spacing:12.048000pt;}
.ws99{word-spacing:12.096000pt;}
.ws155{word-spacing:12.170667pt;}
.wsb4{word-spacing:12.240000pt;}
.ws63{word-spacing:12.384000pt;}
.ws7e{word-spacing:12.720000pt;}
.ws21{word-spacing:12.768000pt;}
.ws119{word-spacing:12.960000pt;}
.wscd{word-spacing:13.056000pt;}
.ws24{word-spacing:13.248000pt;}
.ws11a{word-spacing:13.392000pt;}
.ws36{word-spacing:14.016000pt;}
.ws15a{word-spacing:14.037333pt;}
.ws1f{word-spacing:14.160000pt;}
.wsc5{word-spacing:14.448000pt;}
.ws6a{word-spacing:14.496000pt;}
.ws22{word-spacing:14.928000pt;}
.ws71{word-spacing:15.024000pt;}
.ws135{word-spacing:15.120000pt;}
.ws5f{word-spacing:15.840000pt;}
.ws7d{word-spacing:16.176000pt;}
.ws72{word-spacing:17.040000pt;}
.ws130{word-spacing:18.288000pt;}
.ws7a{word-spacing:19.008000pt;}
.ws53{word-spacing:19.056000pt;}
.ws48{word-spacing:19.296000pt;}
.wse9{word-spacing:20.032000pt;}
.ws39{word-spacing:20.064000pt;}
.wseb{word-spacing:21.544000pt;}
.wsea{word-spacing:21.688533pt;}
.ws28{word-spacing:24.768000pt;}
.ws157{word-spacing:28.709333pt;}
.wscb{word-spacing:74.741333pt;}
.wsfb{word-spacing:76.257600pt;}
.wsc9{word-spacing:81.312000pt;}
.ws89{word-spacing:83.111467pt;}
.wsfa{word-spacing:83.689067pt;}
.wsed{word-spacing:91.187733pt;}
.wsee{word-spacing:92.953600pt;}
.wsfd{word-spacing:102.994667pt;}
.wsf5{word-spacing:106.214400pt;}
.wsf1{word-spacing:106.307733pt;}
.ws84{word-spacing:107.292267pt;}
.wsf8{word-spacing:108.861867pt;}
.wsf2{word-spacing:109.727467pt;}
.wsfc{word-spacing:111.293333pt;}
.wsf9{word-spacing:115.020800pt;}
.wsf4{word-spacing:124.378667pt;}
.wsf0{word-spacing:125.002133pt;}
.wsca{word-spacing:130.712533pt;}
.wsf7{word-spacing:130.807467pt;}
.wsc8{word-spacing:156.894400pt;}
.ws101{word-spacing:181.925333pt;}
.ws87{word-spacing:484.669867pt;}
._4{margin-left:-2574.263467pt;}
._f{margin-left:-21.696000pt;}
._18{margin-left:-17.760000pt;}
._c{margin-left:-14.011200pt;}
._e{margin-left:-12.000000pt;}
._10{margin-left:-10.464000pt;}
._5{margin-left:-8.885333pt;}
._b{margin-left:-7.574400pt;}
._d{margin-left:-6.000000pt;}
._a{margin-left:-4.980800pt;}
._8{margin-left:-3.307200pt;}
._0{margin-left:-1.689600pt;}
._1{width:1.152000pt;}
._9{width:2.054400pt;}
._6{width:3.061333pt;}
._14{width:3.950400pt;}
._16{width:5.599467pt;}
._17{width:10.908267pt;}
._15{width:12.000000pt;}
._12{width:13.453333pt;}
._11{width:14.441600pt;}
._3{width:38.915733pt;}
._7{width:40.096000pt;}
._24{width:87.166933pt;}
._13{width:109.349333pt;}
._1f{width:121.084267pt;}
._22{width:122.511467pt;}
._1b{width:152.924800pt;}
._1a{width:157.625600pt;}
._19{width:176.600000pt;}
._1d{width:217.549867pt;}
._1e{width:417.778667pt;}
._20{width:432.876800pt;}
._21{width:437.963200pt;}
._23{width:441.815467pt;}
._26{width:448.816000pt;}
._25{width:453.572267pt;}
._1c{width:544.432000pt;}
._2{width:1689.576533pt;}
.fsb{font-size:21.653333pt;}
.fs9{font-size:27.840000pt;}
.fs8{font-size:30.933333pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.333730pt;}
.fsc{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:18.267733pt;}
.y20{bottom:26.456667pt;}
.y8d{bottom:41.808267pt;}
.y5{bottom:59.133337pt;}
.y105{bottom:79.712800pt;}
.ybd{bottom:84.661333pt;}
.y77{bottom:84.661467pt;}
.y28{bottom:86.123467pt;}
.y4{bottom:86.333337pt;}
.y27{bottom:98.123467pt;}
.ybc{bottom:100.661333pt;}
.y76{bottom:100.661467pt;}
.y84{bottom:101.855200pt;}
.y37{bottom:115.610667pt;}
.ybb{bottom:116.661333pt;}
.y75{bottom:116.661467pt;}
.y26{bottom:116.737733pt;}
.y1f{bottom:123.790666pt;}
.y25{bottom:128.737733pt;}
.yba{bottom:132.661333pt;}
.y74{bottom:132.661467pt;}
.y36{bottom:134.277333pt;}
.y24{bottom:140.737733pt;}
.yb9{bottom:148.661333pt;}
.y73{bottom:148.661467pt;}
.yb8{bottom:164.661333pt;}
.y5e{bottom:164.661467pt;}
.y35{bottom:168.062000pt;}
.y16{bottom:175.052000pt;}
.yb7{bottom:180.661333pt;}
.y5d{bottom:180.661467pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y34{bottom:186.728667pt;}
.y5c{bottom:196.661467pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y33{bottom:205.395333pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y5b{bottom:212.661467pt;}
.y72{bottom:228.661467pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y32{bottom:239.180133pt;}
.yb6{bottom:240.261467pt;}
.y15d{bottom:241.997600pt;}
.y122{bottom:242.047333pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y5a{bottom:244.661467pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y15c{bottom:253.997600pt;}
.y121{bottom:254.047333pt;}
.y31{bottom:257.846800pt;}
.y59{bottom:260.661467pt;}
.y15b{bottom:265.997600pt;}
.y120{bottom:266.047333pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y30{bottom:276.513467pt;}
.y58{bottom:276.661467pt;}
.y15a{bottom:277.997600pt;}
.y11f{bottom:278.047333pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y159{bottom:289.997600pt;}
.y11e{bottom:290.047333pt;}
.y57{bottom:292.661467pt;}
.y2f{bottom:295.180133pt;}
.y158{bottom:301.997600pt;}
.y11d{bottom:302.047333pt;}
.y56{bottom:308.661467pt;}
.yd{bottom:309.452000pt;}
.y2e{bottom:313.846800pt;}
.y157{bottom:313.997600pt;}
.y11c{bottom:314.047333pt;}
.y55{bottom:324.661467pt;}
.y156{bottom:325.997600pt;}
.y11b{bottom:326.047333pt;}
.y155{bottom:337.997600pt;}
.y11a{bottom:338.047333pt;}
.y54{bottom:340.661467pt;}
.yc{bottom:343.809333pt;}
.y2d{bottom:347.631600pt;}
.y154{bottom:349.997600pt;}
.y119{bottom:350.047333pt;}
.y53{bottom:356.661467pt;}
.y153{bottom:361.997600pt;}
.y118{bottom:362.047333pt;}
.yb{bottom:362.706666pt;}
.y2c{bottom:366.298267pt;}
.y52{bottom:372.661467pt;}
.y152{bottom:373.997600pt;}
.y117{bottom:374.047333pt;}
.y95{bottom:380.422667pt;}
.y151{bottom:385.997600pt;}
.y116{bottom:386.047333pt;}
.y51{bottom:388.661467pt;}
.y94{bottom:392.422667pt;}
.y150{bottom:397.997600pt;}
.y115{bottom:398.047333pt;}
.y2b{bottom:400.083067pt;}
.y50{bottom:404.661467pt;}
.y14f{bottom:409.997600pt;}
.y114{bottom:410.047333pt;}
.y93{bottom:411.981733pt;}
.y2a{bottom:418.749733pt;}
.y71{bottom:420.661467pt;}
.y14e{bottom:421.997600pt;}
.y113{bottom:422.047333pt;}
.y92{bottom:423.981733pt;}
.y14d{bottom:433.997600pt;}
.y112{bottom:434.047333pt;}
.y4f{bottom:436.661467pt;}
.y29{bottom:437.416400pt;}
.y91{bottom:439.061733pt;}
.y14c{bottom:445.997600pt;}
.ya{bottom:446.990669pt;}
.y4e{bottom:452.661467pt;}
.yb3{bottom:457.169733pt;}
.y14b{bottom:457.997600pt;}
.y9{bottom:462.990669pt;}
.y4d{bottom:468.661467pt;}
.yb5{bottom:469.169733pt;}
.y14a{bottom:469.997600pt;}
.y8{bottom:478.990666pt;}
.yb4{bottom:481.169733pt;}
.y149{bottom:481.997600pt;}
.y4c{bottom:484.661467pt;}
.y148{bottom:493.997600pt;}
.y7{bottom:494.990666pt;}
.yb2{bottom:499.172133pt;}
.y4b{bottom:500.661467pt;}
.y147{bottom:505.997600pt;}
.yb1{bottom:511.172133pt;}
.y4a{bottom:516.661467pt;}
.y146{bottom:517.997600pt;}
.yb0{bottom:523.172133pt;}
.y145{bottom:529.997600pt;}
.y49{bottom:532.661467pt;}
.yaf{bottom:535.172133pt;}
.y144{bottom:541.997600pt;}
.y48{bottom:548.661467pt;}
.yae{bottom:553.174667pt;}
.y143{bottom:553.997600pt;}
.ye0{bottom:561.913600pt;}
.y47{bottom:564.661467pt;}
.yad{bottom:565.174667pt;}
.y142{bottom:565.997600pt;}
.yac{bottom:577.174667pt;}
.y141{bottom:577.997600pt;}
.y46{bottom:580.661467pt;}
.ydf{bottom:581.472533pt;}
.y140{bottom:589.997600pt;}
.yde{bottom:593.472533pt;}
.yab{bottom:595.177200pt;}
.y45{bottom:596.661467pt;}
.y13f{bottom:601.997600pt;}
.ydd{bottom:605.472533pt;}
.yaa{bottom:607.177200pt;}
.y44{bottom:612.661467pt;}
.y13e{bottom:613.997600pt;}
.ydc{bottom:617.472533pt;}
.yf6{bottom:622.532933pt;}
.ya9{bottom:625.179600pt;}
.y13d{bottom:625.997600pt;}
.y43{bottom:628.661467pt;}
.ydb{bottom:629.472533pt;}
.ya8{bottom:637.179600pt;}
.y13c{bottom:637.997600pt;}
.yf5{bottom:642.092000pt;}
.y42{bottom:644.661467pt;}
.y6{bottom:645.598667pt;}
.y63{bottom:647.425333pt;}
.ya7{bottom:649.179600pt;}
.y13b{bottom:649.997600pt;}
.yf0{bottom:652.392400pt;}
.yf4{bottom:654.092000pt;}
.y41{bottom:660.661467pt;}
.y13a{bottom:661.997600pt;}
.yef{bottom:664.392400pt;}
.yf3{bottom:666.092000pt;}
.y62{bottom:666.984400pt;}
.ya6{bottom:667.182133pt;}
.y3{bottom:668.977329pt;}
.y139{bottom:673.997600pt;}
.y40{bottom:676.661467pt;}
.yf2{bottom:678.092000pt;}
.ya5{bottom:679.182133pt;}
.y83{bottom:682.269333pt;}
.yee{bottom:682.394800pt;}
.y138{bottom:685.997600pt;}
.y8f{bottom:686.869867pt;}
.yf1{bottom:690.092000pt;}
.y70{bottom:692.661467pt;}
.ybe{bottom:693.105200pt;}
.yed{bottom:694.394800pt;}
.ya4{bottom:697.184533pt;}
.y137{bottom:697.997600pt;}
.y104{bottom:701.662667pt;}
.y8e{bottom:702.745867pt;}
.y6f{bottom:708.661467pt;}
.y110{bottom:709.230400pt;}
.y136{bottom:709.997600pt;}
.yd6{bottom:711.981067pt;}
.yec{bottom:712.397333pt;}
.yc9{bottom:713.072133pt;}
.ya3{bottom:715.187067pt;}
.y111{bottom:720.691733pt;}
.y135{bottom:721.997600pt;}
.yd5{bottom:724.010933pt;}
.y87{bottom:724.074400pt;}
.y8a{bottom:724.075333pt;}
.y85{bottom:724.075733pt;}
.y8b{bottom:724.075867pt;}
.y86{bottom:724.076133pt;}
.y89{bottom:724.076933pt;}
.y8c{bottom:724.077600pt;}
.y88{bottom:724.078800pt;}
.yeb{bottom:724.397333pt;}
.y6e{bottom:724.661467pt;}
.yc8{bottom:725.329200pt;}
.ya2{bottom:727.187067pt;}
.y134{bottom:733.997600pt;}
.y10e{bottom:738.088667pt;}
.y109{bottom:738.091067pt;}
.y106{bottom:738.092667pt;}
.y10c{bottom:738.092933pt;}
.y10f{bottom:738.093600pt;}
.y10d{bottom:738.094133pt;}
.y108{bottom:738.094400pt;}
.y10a{bottom:738.094667pt;}
.y107{bottom:738.096000pt;}
.y10b{bottom:738.096533pt;}
.ya1{bottom:739.187067pt;}
.y6d{bottom:740.661467pt;}
.y3f{bottom:741.648400pt;}
.yea{bottom:742.399867pt;}
.yd4{bottom:743.944533pt;}
.yc7{bottom:744.060400pt;}
.y133{bottom:745.997600pt;}
.y78{bottom:748.825067pt;}
.ye9{bottom:754.399867pt;}
.y6c{bottom:756.661467pt;}
.ya0{bottom:757.189600pt;}
.y132{bottom:757.997600pt;}
.yd3{bottom:758.575467pt;}
.yc6{bottom:759.707467pt;}
.y3e{bottom:760.315067pt;}
.y79{bottom:760.715867pt;}
.yf7{bottom:762.464000pt;}
.y9f{bottom:769.189600pt;}
.y131{bottom:769.997600pt;}
.ye8{bottom:772.402400pt;}
.yf8{bottom:772.412000pt;}
.y7a{bottom:772.606400pt;}
.y6b{bottom:772.661467pt;}
.yd2{bottom:773.206267pt;}
.yc5{bottom:775.359733pt;}
.y3d{bottom:778.981733pt;}
.y9e{bottom:781.189600pt;}
.y2{bottom:781.661334pt;}
.y130{bottom:781.997600pt;}
.yf9{bottom:782.360533pt;}
.ye7{bottom:784.402400pt;}
.y7b{bottom:784.503600pt;}
.yd1{bottom:787.836533pt;}
.y6a{bottom:788.661467pt;}
.yc4{bottom:791.006933pt;}
.yfa{bottom:792.302000pt;}
.yd9{bottom:793.013067pt;}
.y9d{bottom:793.189600pt;}
.y12f{bottom:793.997600pt;}
.y7c{bottom:796.382533pt;}
.y3c{bottom:797.648400pt;}
.yfb{bottom:802.249200pt;}
.ye6{bottom:802.404800pt;}
.yd0{bottom:802.466667pt;}
.yd8{bottom:804.213067pt;}
.y69{bottom:804.661467pt;}
.y12e{bottom:805.997600pt;}
.yc3{bottom:806.654000pt;}
.y7d{bottom:808.279733pt;}
.y9c{bottom:811.192000pt;}
.yfc{bottom:812.203467pt;}
.ye5{bottom:814.404800pt;}
.y3b{bottom:816.315067pt;}
.ycf{bottom:817.097600pt;}
.y12d{bottom:817.997600pt;}
.y7e{bottom:820.163600pt;}
.y68{bottom:820.661467pt;}
.yfd{bottom:822.151467pt;}
.yc2{bottom:822.301333pt;}
.y9b{bottom:823.192000pt;}
.y12c{bottom:829.997600pt;}
.yce{bottom:831.728400pt;}
.y7f{bottom:832.054400pt;}
.yfe{bottom:832.099467pt;}
.ye4{bottom:832.407333pt;}
.y9a{bottom:835.192000pt;}
.y67{bottom:836.661467pt;}
.yc1{bottom:837.948267pt;}
.y12b{bottom:841.997600pt;}
.yff{bottom:842.047333pt;}
.y80{bottom:843.939733pt;}
.ye3{bottom:844.407333pt;}
.ycd{bottom:846.358667pt;}
.y100{bottom:851.995333pt;}
.y66{bottom:852.661467pt;}
.y99{bottom:853.194533pt;}
.yc0{bottom:853.589067pt;}
.y12a{bottom:853.997600pt;}
.y3a{bottom:855.769067pt;}
.y81{bottom:855.830267pt;}
.y1{bottom:859.312000pt;}
.ycc{bottom:860.990133pt;}
.y101{bottom:861.949067pt;}
.ye2{bottom:862.409733pt;}
.ycb{bottom:862.762667pt;}
.y98{bottom:865.194533pt;}
.y129{bottom:865.997600pt;}
.y82{bottom:867.721067pt;}
.y65{bottom:868.661467pt;}
.ybf{bottom:869.248000pt;}
.y102{bottom:871.885333pt;}
.yca{bottom:873.962667pt;}
.yda{bottom:874.418400pt;}
.y128{bottom:877.997600pt;}
.y90{bottom:878.175200pt;}
.ye1{bottom:880.412267pt;}
.y103{bottom:881.839067pt;}
.y96{bottom:883.197067pt;}
.y64{bottom:884.661467pt;}
.y127{bottom:889.997600pt;}
.y39{bottom:890.435733pt;}
.y97{bottom:895.197067pt;}
.yd7{bottom:895.866400pt;}
.y61{bottom:900.661467pt;}
.y126{bottom:901.997600pt;}
.y125{bottom:913.997600pt;}
.y60{bottom:916.661467pt;}
.y124{bottom:925.997600pt;}
.y38{bottom:932.661467pt;}
.y123{bottom:937.997600pt;}
.y22{bottom:976.210000pt;}
.y23{bottom:992.672000pt;}
.y21{bottom:1016.692933pt;}
.h14{height:21.168000pt;}
.h11{height:27.290667pt;}
.h13{height:27.290956pt;}
.h7{height:28.560000pt;}
.h18{height:31.189333pt;}
.hc{height:33.488000pt;}
.ha{height:35.088000pt;}
.h15{height:37.031250pt;}
.hb{height:38.986667pt;}
.h6{height:40.800000pt;}
.he{height:42.768000pt;}
.h3{height:42.840000pt;}
.h10{height:42.885333pt;}
.hd{height:43.056000pt;}
.h2{height:48.960000pt;}
.h16{height:54.631250pt;}
.h5{height:69.360000pt;}
.hf{height:85.770667pt;}
.h4{height:105.826671pt;}
.h17{height:190.966667pt;}
.h12{height:206.696000pt;}
.h9{height:1046.666667pt;}
.h8{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:309.408000pt;}
.w4{width:309.921333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.227067pt;}
.x3a{left:8.605200pt;}
.xd{left:30.236267pt;}
.x5{left:56.692933pt;}
.x9{left:71.811067pt;}
.xe{left:86.929067pt;}
.x1{left:90.706667pt;}
.x24{left:92.476933pt;}
.x2{left:94.486667pt;}
.x28{left:98.010800pt;}
.x45{left:102.047200pt;}
.x21{left:111.295600pt;}
.x32{left:116.179867pt;}
.x25{left:135.531067pt;}
.x1d{left:136.818933pt;}
.x26{left:142.615067pt;}
.x23{left:156.716533pt;}
.x29{left:163.381333pt;}
.x27{left:169.568800pt;}
.x4{left:180.874667pt;}
.x36{left:193.133600pt;}
.x35{left:216.155200pt;}
.x2a{left:236.398267pt;}
.x2b{left:289.296667pt;}
.x19{left:293.226133pt;}
.x22{left:312.300933pt;}
.x1f{left:323.149600pt;}
.x1e{left:329.361333pt;}
.x20{left:331.118400pt;}
.xb{left:396.850400pt;}
.x3{left:404.408000pt;}
.x37{left:411.267067pt;}
.x39{left:414.712400pt;}
.x3b{left:421.750933pt;}
.x38{left:423.427867pt;}
.xa{left:427.086667pt;}
.x10{left:437.318933pt;}
.x1c{left:441.711333pt;}
.xf{left:445.102800pt;}
.x2e{left:449.501200pt;}
.x3c{left:450.897067pt;}
.x2d{left:453.567200pt;}
.x33{left:464.117200pt;}
.x2c{left:468.612533pt;}
.x44{left:469.910133pt;}
.x12{left:474.920800pt;}
.x3d{left:480.044133pt;}
.x1b{left:493.987333pt;}
.x1a{left:495.303333pt;}
.x43{left:497.835467pt;}
.x13{left:505.597200pt;}
.x3e{left:509.192400pt;}
.x2f{left:524.744533pt;}
.x34{left:527.341200pt;}
.x14{left:536.268667pt;}
.x8{left:538.385200pt;}
.x6{left:554.302267pt;}
.x30{left:560.292800pt;}
.x15{left:566.945200pt;}
.xc{left:593.777467pt;}
.x3f{left:596.632800pt;}
.x16{left:597.612533pt;}
.x31{left:610.827867pt;}
.x40{left:625.779067pt;}
.x7{left:629.028933pt;}
.x41{left:654.927067pt;}
.x17{left:658.964133pt;}
.x42{left:684.073600pt;}
.x18{left:689.636933pt;}
}




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