
    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_b275e0953ab00c49df6d0ac0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.993000;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_43f9530d7e1019bca878b51c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993000;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_93bb69af041116868994b972.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089000;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_06366c90f46b50891f0e7ad2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.778000;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_c76a03bf732faecad5c1526c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083000;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_c584fd6f8caee4d610e3e9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995000;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_1dd97c8a0e37b9a44bb19056.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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_b084a019bfa7a23f470619d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.798655;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_6dcd1693ed5b338b1d24e0e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.729000;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_b275e0953ab00c49df6d0ac0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.993000;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_d06069ca35fe7350f811acb4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962000;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_3aa35db42707a39faa0a2927.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969349;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_71a0d71dd8a635fe48b2e962.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.993000;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_b275e0953ab00c49df6d0ac0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.993000;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_5e8341de353fc11dc8c3b2e7.woff2')format("woff");}.fff{font-family:fff;line-height:0.980000;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_e228cee6c484b6b3d38b9c4e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969349;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_b275e0953ab00c49df6d0ac0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.993000;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_5e8341de353fc11dc8c3b2e7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.980000;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_e228cee6c484b6b3d38b9c4e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.969349;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_5e8341de353fc11dc8c3b2e7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.980000;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_e228cee6c484b6b3d38b9c4e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.969349;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_b275e0953ab00c49df6d0ac0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.993000;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;}
.m1{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,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);}
.v4{vertical-align:-18.900600px;}
.vb{vertical-align:-16.800000px;}
.v5{vertical-align:-11.954100px;}
.v7{vertical-align:-10.824000px;}
.v8{vertical-align:-9.600000px;}
.v2{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.484200px;}
.va{vertical-align:9.600000px;}
.v6{vertical-align:11.700600px;}
.v9{vertical-align:16.488000px;}
.v3{vertical-align:18.915000px;}
.ls4{letter-spacing:-2.100000px;}
.ls4d{letter-spacing:-1.350000px;}
.ls5a{letter-spacing:-1.296000px;}
.ls15{letter-spacing:-1.242000px;}
.ls8{letter-spacing:-1.228500px;}
.ls3a{letter-spacing:-1.026000px;}
.ls5{letter-spacing:-0.972000px;}
.ls50{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.680400px;}
.ls24{letter-spacing:-0.594932px;}
.ls7{letter-spacing:-0.594000px;}
.ls59{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.480000px;}
.ls4e{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.415800px;}
.ls4f{letter-spacing:-0.302400px;}
.ls14{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.093937px;}
.ls4c{letter-spacing:-0.075600px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls41{letter-spacing:0.001200px;}
.ls22{letter-spacing:0.003600px;}
.ls51{letter-spacing:0.004200px;}
.ls35{letter-spacing:0.020400px;}
.ls33{letter-spacing:0.021000px;}
.lsb{letter-spacing:0.021600px;}
.ls2f{letter-spacing:0.029400px;}
.ls2c{letter-spacing:0.033600px;}
.ls2a{letter-spacing:0.051000px;}
.ls1e{letter-spacing:0.058200px;}
.ls3e{letter-spacing:0.064800px;}
.lsd{letter-spacing:0.083400px;}
.ls37{letter-spacing:0.192000px;}
.ls38{letter-spacing:0.196800px;}
.lsa{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.432000px;}
.ls5b{letter-spacing:0.480000px;}
.ls1c{letter-spacing:0.648000px;}
.ls5c{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.768000px;}
.ls12{letter-spacing:0.912000px;}
.ls44{letter-spacing:0.918000px;}
.ls1{letter-spacing:1.050000px;}
.ls42{letter-spacing:1.134000px;}
.ls52{letter-spacing:1.200000px;}
.ls55{letter-spacing:1.204800px;}
.ls56{letter-spacing:1.209600px;}
.ls36{letter-spacing:1.344000px;}
.ls2d{letter-spacing:1.458000px;}
.ls2e{letter-spacing:1.512000px;}
.ls3c{letter-spacing:1.782000px;}
.ls34{letter-spacing:1.968000px;}
.ls46{letter-spacing:1.998000px;}
.ls47{letter-spacing:2.052000px;}
.ls58{letter-spacing:2.328000px;}
.ls48{letter-spacing:2.496000px;}
.ls30{letter-spacing:2.970000px;}
.ls16{letter-spacing:3.078000px;}
.ls29{letter-spacing:3.186000px;}
.ls57{letter-spacing:3.259200px;}
.ls53{letter-spacing:3.403200px;}
.ls43{letter-spacing:4.455000px;}
.ls40{letter-spacing:4.644000px;}
.ls3d{letter-spacing:5.022000px;}
.ls49{letter-spacing:5.232000px;}
.ls20{letter-spacing:5.400000px;}
.ls32{letter-spacing:5.472000px;}
.ls5d{letter-spacing:5.683200px;}
.ls18{letter-spacing:6.750000px;}
.ls4a{letter-spacing:6.768000px;}
.ls1d{letter-spacing:7.020000px;}
.ls3f{letter-spacing:7.074000px;}
.ls1b{letter-spacing:7.160400px;}
.ls4b{letter-spacing:7.248000px;}
.ls45{letter-spacing:7.560000px;}
.ls21{letter-spacing:8.064000px;}
.ls28{letter-spacing:8.316000px;}
.ls31{letter-spacing:9.180000px;}
.ls11{letter-spacing:9.288000px;}
.ls17{letter-spacing:9.720000px;}
.ls1f{letter-spacing:10.962000px;}
.lsf{letter-spacing:11.232000px;}
.lse{letter-spacing:11.286000px;}
.ls9{letter-spacing:12.366000px;}
.ls10{letter-spacing:12.474000px;}
.ls1a{letter-spacing:12.960000px;}
.ls2b{letter-spacing:13.122000px;}
.ls54{letter-spacing:14.040000px;}
.ls5e{letter-spacing:17.409600px;}
.ls19{letter-spacing:20.304000px;}
.ls39{letter-spacing:83.052000px;}
.ls3b{letter-spacing:96.552000px;}
.ls27{letter-spacing:110.052000px;}
.ls26{letter-spacing:482.417109px;}
.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;}
}
.wsa4{word-spacing:-482.417109px;}
.wsa5{word-spacing:-110.052000px;}
.wsd0{word-spacing:-96.552000px;}
.wsb6{word-spacing:-83.052000px;}
.ws8{word-spacing:-14.625000px;}
.ws30{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.396500px;}
.ws2e{word-spacing:-13.392000px;}
.ws2d{word-spacing:-12.906000px;}
.ws31{word-spacing:-12.258000px;}
.wsdc{word-spacing:-12.150000px;}
.ws33{word-spacing:-12.000000px;}
.wsde{word-spacing:-11.568000px;}
.wse0{word-spacing:-11.280000px;}
.ws9{word-spacing:-10.500000px;}
.ws7{word-spacing:-10.237500px;}
.ws3{word-spacing:-9.450000px;}
.wsdb{word-spacing:-9.374400px;}
.ws1{word-spacing:-9.000000px;}
.ws34{word-spacing:-8.400000px;}
.wsdf{word-spacing:-8.097600px;}
.wsbc{word-spacing:-1.674000px;}
.wsf1{word-spacing:-1.026000px;}
.ws16{word-spacing:-0.918000px;}
.ws104{word-spacing:-0.624000px;}
.ws3e{word-spacing:-0.594000px;}
.ws184{word-spacing:-0.576000px;}
.ws2{word-spacing:-0.504000px;}
.ws2c{word-spacing:-0.378000px;}
.wsd9{word-spacing:-0.288000px;}
.wsfd{word-spacing:-0.270000px;}
.wsaa{word-spacing:-0.240000px;}
.ws5{word-spacing:-0.058500px;}
.ws4{word-spacing:-0.054000px;}
.wsdd{word-spacing:-0.048000px;}
.ws32{word-spacing:-0.037800px;}
.ws78{word-spacing:-0.033600px;}
.ws77{word-spacing:-0.022500px;}
.wsa{word-spacing:0.000000px;}
.ws17b{word-spacing:0.048000px;}
.ws2f{word-spacing:0.054000px;}
.wsf3{word-spacing:0.075600px;}
.ws48{word-spacing:0.108000px;}
.ws123{word-spacing:0.144000px;}
.wsda{word-spacing:0.192000px;}
.ws17e{word-spacing:0.240000px;}
.ws1c{word-spacing:0.270000px;}
.ws10f{word-spacing:0.302400px;}
.ws14e{word-spacing:0.336000px;}
.ws2b{word-spacing:0.378000px;}
.ws39{word-spacing:0.415800px;}
.ws0{word-spacing:0.432000px;}
.ws17d{word-spacing:0.480000px;}
.ws139{word-spacing:0.504000px;}
.ws162{word-spacing:0.528000px;}
.ws1b{word-spacing:0.540000px;}
.ws75{word-spacing:0.563620px;}
.ws134{word-spacing:0.576000px;}
.ws9e{word-spacing:0.648000px;}
.ws11{word-spacing:0.680400px;}
.wsc1{word-spacing:0.702000px;}
.ws136{word-spacing:0.720000px;}
.wsa7{word-spacing:0.756000px;}
.wsab{word-spacing:0.768000px;}
.wsc7{word-spacing:0.864000px;}
.ws6a{word-spacing:0.912000px;}
.ws174{word-spacing:0.960000px;}
.ws22{word-spacing:0.972000px;}
.wscf{word-spacing:1.026000px;}
.wsb{word-spacing:1.050000px;}
.ws70{word-spacing:1.056000px;}
.ws41{word-spacing:1.134000px;}
.ws160{word-spacing:1.152000px;}
.wsba{word-spacing:1.188000px;}
.ws72{word-spacing:1.200000px;}
.ws29{word-spacing:1.228500px;}
.wsa2{word-spacing:1.296000px;}
.ws25{word-spacing:1.350000px;}
.ws118{word-spacing:1.392000px;}
.ws100{word-spacing:1.404000px;}
.wse{word-spacing:1.428000px;}
.wsd8{word-spacing:1.440000px;}
.ws9c{word-spacing:1.458000px;}
.ws84{word-spacing:1.512000px;}
.ws127{word-spacing:1.584000px;}
.wsc8{word-spacing:1.620000px;}
.ws112{word-spacing:1.632000px;}
.wsca{word-spacing:1.674000px;}
.ws102{word-spacing:1.725000px;}
.ws6e{word-spacing:1.776000px;}
.ws92{word-spacing:1.782000px;}
.ws42{word-spacing:1.890000px;}
.wsd7{word-spacing:1.968000px;}
.ws73{word-spacing:1.976400px;}
.ws108{word-spacing:2.064000px;}
.wsd{word-spacing:2.100000px;}
.ws115{word-spacing:2.112000px;}
.wsf7{word-spacing:2.160000px;}
.ws116{word-spacing:2.208000px;}
.wse2{word-spacing:2.268000px;}
.ws150{word-spacing:2.304000px;}
.wsf9{word-spacing:2.322000px;}
.ws163{word-spacing:2.352000px;}
.ws122{word-spacing:2.400000px;}
.ws6c{word-spacing:2.448000px;}
.wsb9{word-spacing:2.484000px;}
.wsc5{word-spacing:2.538000px;}
.ws6d{word-spacing:2.688000px;}
.ws14b{word-spacing:2.736000px;}
.ws17c{word-spacing:2.784000px;}
.ws182{word-spacing:2.832000px;}
.ws97{word-spacing:2.916000px;}
.ws6f{word-spacing:2.928000px;}
.ws96{word-spacing:2.970000px;}
.wsc{word-spacing:3.000000px;}
.wsc3{word-spacing:3.024000px;}
.ws83{word-spacing:3.078000px;}
.wsa1{word-spacing:3.132000px;}
.ws17{word-spacing:3.186000px;}
.ws172{word-spacing:3.216000px;}
.ws151{word-spacing:3.264000px;}
.ws11a{word-spacing:3.312000px;}
.ws101{word-spacing:3.348000px;}
.wsae{word-spacing:3.352500px;}
.ws177{word-spacing:3.360000px;}
.wsf8{word-spacing:3.402000px;}
.ws52{word-spacing:3.456000px;}
.ws15d{word-spacing:3.504000px;}
.ws47{word-spacing:3.510000px;}
.wsd6{word-spacing:3.600000px;}
.ws14c{word-spacing:3.648000px;}
.ws12a{word-spacing:3.696000px;}
.wseb{word-spacing:3.726000px;}
.ws155{word-spacing:3.744000px;}
.ws40{word-spacing:3.780000px;}
.ws152{word-spacing:3.984000px;}
.ws26{word-spacing:3.996000px;}
.ws171{word-spacing:4.032000px;}
.wsf{word-spacing:4.050000px;}
.wsce{word-spacing:4.104000px;}
.ws168{word-spacing:4.128000px;}
.ws90{word-spacing:4.158000px;}
.ws4d{word-spacing:4.266000px;}
.ws111{word-spacing:4.368000px;}
.ws3f{word-spacing:4.374000px;}
.wse9{word-spacing:4.482000px;}
.ws10{word-spacing:4.536000px;}
.ws153{word-spacing:4.608000px;}
.ws9b{word-spacing:4.644000px;}
.ws124{word-spacing:4.656000px;}
.ws109{word-spacing:4.704000px;}
.ws146{word-spacing:4.800000px;}
.ws71{word-spacing:4.848000px;}
.ws91{word-spacing:4.860000px;}
.wse1{word-spacing:5.022000px;}
.wsb1{word-spacing:5.076000px;}
.ws126{word-spacing:5.088000px;}
.ws4c{word-spacing:5.130000px;}
.ws15a{word-spacing:5.136000px;}
.wsbb{word-spacing:5.184000px;}
.ws128{word-spacing:5.328000px;}
.wsf0{word-spacing:5.346000px;}
.ws6b{word-spacing:5.376000px;}
.ws19{word-spacing:5.400000px;}
.wsa8{word-spacing:5.454000px;}
.wsd5{word-spacing:5.472000px;}
.ws28{word-spacing:5.508000px;}
.ws129{word-spacing:5.520000px;}
.ws8c{word-spacing:5.616000px;}
.ws10b{word-spacing:5.664000px;}
.wse4{word-spacing:5.670000px;}
.ws13d{word-spacing:5.712000px;}
.wsc9{word-spacing:5.724000px;}
.ws14a{word-spacing:5.760000px;}
.ws58{word-spacing:5.778000px;}
.ws137{word-spacing:5.808000px;}
.ws66{word-spacing:5.832000px;}
.wsed{word-spacing:5.940000px;}
.ws8a{word-spacing:5.994000px;}
.ws64{word-spacing:6.210000px;}
.wsb2{word-spacing:6.264000px;}
.ws80{word-spacing:6.372000px;}
.ws16c{word-spacing:6.384000px;}
.ws142{word-spacing:6.432000px;}
.wse7{word-spacing:6.480000px;}
.ws65{word-spacing:6.534000px;}
.ws76{word-spacing:6.575562px;}
.wse6{word-spacing:6.588000px;}
.ws89{word-spacing:6.642000px;}
.ws5d{word-spacing:6.696000px;}
.ws86{word-spacing:6.750000px;}
.ws98{word-spacing:6.804000px;}
.ws11c{word-spacing:6.816000px;}
.ws3b{word-spacing:6.912000px;}
.ws16e{word-spacing:6.960000px;}
.ws157{word-spacing:7.008000px;}
.ws9d{word-spacing:7.020000px;}
.ws133{word-spacing:7.056000px;}
.wse3{word-spacing:7.074000px;}
.ws3a{word-spacing:7.128000px;}
.wsad{word-spacing:7.139182px;}
.ws178{word-spacing:7.152000px;}
.ws10d{word-spacing:7.200000px;}
.ws5e{word-spacing:7.236000px;}
.ws156{word-spacing:7.248000px;}
.ws50{word-spacing:7.290000px;}
.ws10a{word-spacing:7.296000px;}
.wsd2{word-spacing:7.344000px;}
.ws159{word-spacing:7.392000px;}
.ws135{word-spacing:7.440000px;}
.wse5{word-spacing:7.452000px;}
.ws173{word-spacing:7.488000px;}
.wsec{word-spacing:7.560000px;}
.wsf4{word-spacing:7.668000px;}
.ws110{word-spacing:7.680000px;}
.ws106{word-spacing:7.728000px;}
.ws69{word-spacing:7.776000px;}
.ws132{word-spacing:7.824000px;}
.wsff{word-spacing:7.884000px;}
.wsb0{word-spacing:7.890674px;}
.ws183{word-spacing:7.968000px;}
.ws7f{word-spacing:7.992000px;}
.ws51{word-spacing:8.046000px;}
.wsef{word-spacing:8.100000px;}
.wsa9{word-spacing:8.112000px;}
.ws12b{word-spacing:8.160000px;}
.ws62{word-spacing:8.208000px;}
.ws141{word-spacing:8.256000px;}
.ws2a{word-spacing:8.262000px;}
.wsb7{word-spacing:8.316000px;}
.ws187{word-spacing:8.400000px;}
.wsfb{word-spacing:8.424000px;}
.ws161{word-spacing:8.688000px;}
.ws4a{word-spacing:8.694000px;}
.ws4e{word-spacing:8.748000px;}
.ws55{word-spacing:8.802000px;}
.ws14d{word-spacing:8.832000px;}
.ws36{word-spacing:8.910000px;}
.ws131{word-spacing:8.928000px;}
.ws99{word-spacing:8.964000px;}
.ws4b{word-spacing:9.072000px;}
.ws54{word-spacing:9.126000px;}
.wsd1{word-spacing:9.180000px;}
.wse8{word-spacing:9.234000px;}
.ws5f{word-spacing:9.288000px;}
.ws12c{word-spacing:9.312000px;}
.wsea{word-spacing:9.396000px;}
.ws8b{word-spacing:9.450000px;}
.ws107{word-spacing:9.456000px;}
.ws8e{word-spacing:9.504000px;}
.ws154{word-spacing:9.552000px;}
.ws147{word-spacing:9.600000px;}
.wsbf{word-spacing:9.612000px;}
.ws13c{word-spacing:9.648000px;}
.ws67{word-spacing:9.666000px;}
.ws61{word-spacing:9.720000px;}
.ws85{word-spacing:9.774000px;}
.ws16f{word-spacing:9.792000px;}
.ws60{word-spacing:9.828000px;}
.ws113{word-spacing:9.840000px;}
.ws95{word-spacing:9.882000px;}
.ws14f{word-spacing:9.984000px;}
.ws43{word-spacing:10.044000px;}
.ws15e{word-spacing:10.128000px;}
.ws8f{word-spacing:10.152000px;}
.ws125{word-spacing:10.176000px;}
.wsc2{word-spacing:10.206000px;}
.ws88{word-spacing:10.260000px;}
.ws117{word-spacing:10.272000px;}
.wsc4{word-spacing:10.314000px;}
.ws13a{word-spacing:10.368000px;}
.wsaf{word-spacing:10.422000px;}
.wscc{word-spacing:10.476000px;}
.ws44{word-spacing:10.530000px;}
.ws105{word-spacing:10.560000px;}
.ws120{word-spacing:10.656000px;}
.wsbd{word-spacing:10.692000px;}
.ws13f{word-spacing:10.704000px;}
.ws59{word-spacing:10.746000px;}
.ws119{word-spacing:10.752000px;}
.ws164{word-spacing:10.944000px;}
.wsa6{word-spacing:10.962000px;}
.ws185{word-spacing:11.088000px;}
.ws16d{word-spacing:11.136000px;}
.ws5b{word-spacing:11.232000px;}
.ws3c{word-spacing:11.286000px;}
.ws24{word-spacing:11.340000px;}
.ws181{word-spacing:11.376000px;}
.ws12d{word-spacing:11.424000px;}
.ws82{word-spacing:11.556000px;}
.ws138{word-spacing:11.616000px;}
.ws7d{word-spacing:11.718000px;}
.wsf5{word-spacing:11.826000px;}
.ws1e{word-spacing:11.934000px;}
.ws53{word-spacing:12.042000px;}
.ws3d{word-spacing:12.096000px;}
.wsfe{word-spacing:12.150000px;}
.ws45{word-spacing:12.258000px;}
.ws5a{word-spacing:12.312000px;}
.ws49{word-spacing:12.474000px;}
.ws5c{word-spacing:12.528000px;}
.wsfa{word-spacing:12.636000px;}
.ws11f{word-spacing:12.768000px;}
.ws15c{word-spacing:12.816000px;}
.ws21{word-spacing:12.852000px;}
.ws165{word-spacing:12.864000px;}
.ws15b{word-spacing:12.912000px;}
.ws87{word-spacing:12.960000px;}
.ws16b{word-spacing:13.104000px;}
.wsc0{word-spacing:13.122000px;}
.ws9a{word-spacing:13.176000px;}
.ws11b{word-spacing:13.200000px;}
.ws27{word-spacing:13.230000px;}
.wsb8{word-spacing:13.284000px;}
.ws179{word-spacing:13.296000px;}
.wscd{word-spacing:13.392000px;}
.ws68{word-spacing:13.446000px;}
.ws4f{word-spacing:13.500000px;}
.ws12f{word-spacing:13.728000px;}
.ws57{word-spacing:13.986000px;}
.ws158{word-spacing:14.064000px;}
.ws1f{word-spacing:14.094000px;}
.ws10c{word-spacing:14.112000px;}
.ws9f{word-spacing:14.310000px;}
.wsc6{word-spacing:14.364000px;}
.wsb4{word-spacing:14.526000px;}
.ws63{word-spacing:14.580000px;}
.wsb3{word-spacing:14.742000px;}
.ws176{word-spacing:14.832000px;}
.ws79{word-spacing:14.904000px;}
.ws13{word-spacing:14.958000px;}
.ws7e{word-spacing:15.066000px;}
.ws94{word-spacing:15.120000px;}
.ws81{word-spacing:15.228000px;}
.ws23{word-spacing:15.390000px;}
.wsbe{word-spacing:15.444000px;}
.ws37{word-spacing:15.498000px;}
.ws130{word-spacing:15.504000px;}
.ws10e{word-spacing:15.744000px;}
.ws7a{word-spacing:15.876000px;}
.ws121{word-spacing:16.224000px;}
.wsf2{word-spacing:16.254000px;}
.wsa0{word-spacing:16.362000px;}
.wsa3{word-spacing:16.524000px;}
.ws140{word-spacing:16.608000px;}
.ws149{word-spacing:17.040000px;}
.ws1a{word-spacing:17.280000px;}
.ws8d{word-spacing:17.334000px;}
.ws166{word-spacing:17.376000px;}
.ws186{word-spacing:17.520000px;}
.ws1d{word-spacing:17.658000px;}
.wsf6{word-spacing:17.766000px;}
.ws11e{word-spacing:17.808000px;}
.ws170{word-spacing:17.952000px;}
.ws114{word-spacing:18.000000px;}
.ws7c{word-spacing:18.630000px;}
.wsfc{word-spacing:18.684000px;}
.ws11d{word-spacing:18.912000px;}
.ws13b{word-spacing:19.536000px;}
.ws15{word-spacing:20.088000px;}
.wsb5{word-spacing:20.142000px;}
.ws93{word-spacing:20.250000px;}
.ws7b{word-spacing:20.520000px;}
.ws20{word-spacing:20.574000px;}
.ws35{word-spacing:20.898000px;}
.ws16a{word-spacing:21.408000px;}
.ws17f{word-spacing:21.600000px;}
.ws56{word-spacing:21.654000px;}
.ws12{word-spacing:21.762000px;}
.ws12e{word-spacing:21.984000px;}
.ws175{word-spacing:22.176000px;}
.wsd4{word-spacing:22.626000px;}
.ws18{word-spacing:22.680000px;}
.ws13e{word-spacing:23.328000px;}
.ws167{word-spacing:23.616000px;}
.ws148{word-spacing:23.664000px;}
.ws103{word-spacing:23.808000px;}
.wsee{word-spacing:24.246000px;}
.ws17a{word-spacing:24.288000px;}
.ws169{word-spacing:24.528000px;}
.ws144{word-spacing:24.816000px;}
.ws46{word-spacing:26.244000px;}
.ws180{word-spacing:27.168000px;}
.ws38{word-spacing:27.216000px;}
.ws15f{word-spacing:27.840000px;}
.wscb{word-spacing:29.484000px;}
.ws14{word-spacing:29.592000px;}
.ws143{word-spacing:30.480000px;}
.wsd3{word-spacing:31.158000px;}
.ws145{word-spacing:33.888000px;}
.wsac{word-spacing:38.556000px;}
.ws74{word-spacing:42.336000px;}
._8{margin-left:-2977.008000px;}
._19{margin-left:-21.159000px;}
._1c{margin-left:-18.100200px;}
._15{margin-left:-13.500000px;}
._1f{margin-left:-12.319200px;}
._3{margin-left:-11.172000px;}
._1b{margin-left:-9.550800px;}
._4{margin-left:-8.400000px;}
._26{margin-left:-7.099200px;}
._2{margin-left:-5.752800px;}
._0{margin-left:-3.840000px;}
._6{margin-left:-1.924800px;}
._7{width:1.042200px;}
._5{width:2.325600px;}
._16{width:3.339600px;}
._f{width:4.678800px;}
._24{width:5.688000px;}
._d{width:6.744000px;}
._1d{width:7.891800px;}
._b{width:9.025800px;}
._c{width:10.780800px;}
._a{width:12.366000px;}
._1e{width:14.040000px;}
._10{width:15.414000px;}
._11{width:16.656000px;}
._1a{width:18.065400px;}
._23{width:21.408000px;}
._25{width:22.480800px;}
._21{width:23.625600px;}
._22{width:25.468800px;}
._e{width:27.162000px;}
._20{width:28.303200px;}
._18{width:42.390000px;}
._14{width:43.524000px;}
._12{width:45.360000px;}
._17{width:268.888200px;}
._13{width:282.888600px;}
._9{width:451.188000px;}
._1{width:453.725400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:22.500000px;}
.fsb{font-size:31.312200px;}
.fse{font-size:32.060984px;}
.fsa{font-size:33.600000px;}
.fs2{font-size:36.000000px;}
.fs7{font-size:37.800000px;}
.fs9{font-size:40.950000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsd{font-size:55.291359px;}
.fs8{font-size:58.500000px;}
.fsf{font-size:69.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:8.999400px;}
.yb3{bottom:9.000900px;}
.yc7{bottom:15.046200px;}
.yb4{bottom:15.047850px;}
.ybb{bottom:51.912750px;}
.y55{bottom:52.233900px;}
.y2{bottom:52.822800px;}
.y182{bottom:99.096000px;}
.y1c3{bottom:99.168000px;}
.y24{bottom:99.921300px;}
.ya4{bottom:100.178400px;}
.y88{bottom:100.181400px;}
.y72{bottom:100.193400px;}
.y150{bottom:102.107400px;}
.y181{bottom:114.096000px;}
.y1c2{bottom:114.168000px;}
.y14f{bottom:116.351400px;}
.y87{bottom:116.678400px;}
.y10d{bottom:116.684400px;}
.y71{bottom:116.690400px;}
.ya3{bottom:116.693400px;}
.y54{bottom:121.077750px;}
.y180{bottom:129.096000px;}
.y1c1{bottom:129.168000px;}
.y14e{bottom:130.595400px;}
.yb6{bottom:133.178400px;}
.yd0{bottom:133.181400px;}
.y86{bottom:133.184400px;}
.y70{bottom:133.187400px;}
.ya2{bottom:133.190400px;}
.y53{bottom:134.577750px;}
.yb2{bottom:140.824500px;}
.y17f{bottom:144.096000px;}
.y1c0{bottom:144.168000px;}
.y14d{bottom:144.839400px;}
.yb1{bottom:145.653600px;}
.yaf{bottom:146.778600px;}
.y52{bottom:148.077750px;}
.yb5{bottom:149.675400px;}
.ycf{bottom:149.678400px;}
.y85{bottom:149.681400px;}
.y6f{bottom:149.684400px;}
.ya1{bottom:149.687400px;}
.yae{bottom:149.825400px;}
.y23{bottom:150.311550px;}
.yb0{bottom:155.874794px;}
.y14c{bottom:159.083400px;}
.y17e{bottom:159.096000px;}
.y1bf{bottom:159.168000px;}
.y51{bottom:161.577750px;}
.y22{bottom:163.811550px;}
.y84{bottom:166.178400px;}
.y6e{bottom:166.181400px;}
.ya0{bottom:166.184400px;}
.yad{bottom:166.196400px;}
.y14b{bottom:173.327400px;}
.y17d{bottom:174.096000px;}
.y1be{bottom:174.168000px;}
.y50{bottom:175.077750px;}
.y21{bottom:177.311550px;}
.y6d{bottom:182.678400px;}
.y83{bottom:182.681400px;}
.yac{bottom:182.693400px;}
.y14a{bottom:187.607400px;}
.y17c{bottom:189.096000px;}
.y1bd{bottom:189.168000px;}
.y20{bottom:190.811550px;}
.y4e{bottom:192.999600px;}
.y82{bottom:199.178400px;}
.yab{bottom:199.190400px;}
.y6c{bottom:199.193400px;}
.y149{bottom:201.851400px;}
.y17b{bottom:204.096000px;}
.y1bc{bottom:204.168000px;}
.y4d{bottom:206.499600px;}
.ye2{bottom:206.676000px;}
.y1f{bottom:207.311550px;}
.ye0{bottom:211.503450px;}
.yde{bottom:212.628450px;}
.ye1{bottom:215.675400px;}
.y81{bottom:215.687400px;}
.y6b{bottom:215.690400px;}
.yce{bottom:215.696400px;}
.y148{bottom:216.095400px;}
.y1bb{bottom:219.168000px;}
.y1e{bottom:220.811550px;}
.ydf{bottom:221.724644px;}
.y1a{bottom:223.811550px;}
.y147{bottom:230.339400px;}
.y80{bottom:232.184400px;}
.y6a{bottom:232.187400px;}
.ycd{bottom:232.193400px;}
.y1ba{bottom:234.168000px;}
.y1d{bottom:234.311550px;}
.y19{bottom:237.311550px;}
.y146{bottom:244.583400px;}
.y7f{bottom:248.681400px;}
.y69{bottom:248.684400px;}
.ycc{bottom:248.690400px;}
.y1b9{bottom:249.168000px;}
.y18{bottom:250.811550px;}
.y145{bottom:258.827400px;}
.y1b8{bottom:264.168000px;}
.y17{bottom:264.311550px;}
.y7e{bottom:265.178400px;}
.y68{bottom:265.181400px;}
.ycb{bottom:265.187400px;}
.y17a{bottom:268.296000px;}
.y144{bottom:273.071400px;}
.y16{bottom:277.811550px;}
.y1b7{bottom:279.168000px;}
.y67{bottom:281.678400px;}
.y7d{bottom:281.684400px;}
.y10c{bottom:281.693400px;}
.y179{bottom:283.296000px;}
.y143{bottom:287.327400px;}
.y1b6{bottom:294.168000px;}
.y15{bottom:294.311550px;}
.y9f{bottom:298.178400px;}
.y66{bottom:298.181400px;}
.y10b{bottom:298.190400px;}
.y178{bottom:298.296000px;}
.y142{bottom:301.637400px;}
.y14{bottom:307.811550px;}
.y1b5{bottom:309.168000px;}
.y65{bottom:314.678400px;}
.y9e{bottom:314.684400px;}
.y10a{bottom:314.687400px;}
.y141{bottom:315.881400px;}
.y13{bottom:321.311550px;}
.y1b4{bottom:324.168000px;}
.y177{bottom:328.176000px;}
.y140{bottom:330.125400px;}
.y64{bottom:331.175400px;}
.yca{bottom:331.178400px;}
.y7c{bottom:331.181400px;}
.y109{bottom:331.184400px;}
.yaa{bottom:331.202400px;}
.ydd{bottom:331.205400px;}
.y12{bottom:334.811550px;}
.y1b3{bottom:339.168000px;}
.y176{bottom:342.420000px;}
.y13f{bottom:344.369400px;}
.y63{bottom:347.678400px;}
.y108{bottom:347.681400px;}
.yc9{bottom:347.687400px;}
.ya9{bottom:347.699400px;}
.ydc{bottom:347.702400px;}
.y11{bottom:351.311550px;}
.y1b2{bottom:354.168000px;}
.y13e{bottom:358.613400px;}
.y107{bottom:364.178400px;}
.y7b{bottom:364.181400px;}
.y9d{bottom:364.184400px;}
.y62{bottom:364.193400px;}
.ya8{bottom:364.196400px;}
.ydb{bottom:364.199400px;}
.y10{bottom:364.811550px;}
.y175{bottom:365.670000px;}
.y1b1{bottom:369.168000px;}
.y13d{bottom:372.857400px;}
.yf{bottom:378.311550px;}
.y7a{bottom:380.678400px;}
.y9c{bottom:380.681400px;}
.y61{bottom:380.690400px;}
.ya7{bottom:380.693400px;}
.yda{bottom:380.696400px;}
.y1b0{bottom:384.168000px;}
.y13c{bottom:387.101400px;}
.y1c{bottom:391.811550px;}
.ye{bottom:394.811550px;}
.y9b{bottom:397.178400px;}
.y79{bottom:397.184400px;}
.y60{bottom:397.187400px;}
.ya6{bottom:397.190400px;}
.yd9{bottom:397.193400px;}
.y1af{bottom:399.168000px;}
.y13b{bottom:401.345400px;}
.y1b{bottom:405.311550px;}
.yd{bottom:408.311550px;}
.y106{bottom:413.678400px;}
.y78{bottom:413.681400px;}
.y5f{bottom:413.684400px;}
.y9a{bottom:413.687400px;}
.yd8{bottom:413.690400px;}
.y1ae{bottom:414.168000px;}
.y13a{bottom:415.589400px;}
.y174{bottom:418.170000px;}
.yc{bottom:421.811550px;}
.y1ad{bottom:429.168000px;}
.y139{bottom:429.833400px;}
.y77{bottom:430.178400px;}
.y5e{bottom:430.181400px;}
.y99{bottom:430.184400px;}
.yd7{bottom:430.187400px;}
.yb{bottom:435.311550px;}
.y173{bottom:441.420000px;}
.y138{bottom:444.077400px;}
.y1ac{bottom:444.168000px;}
.y5d{bottom:446.678400px;}
.y98{bottom:446.681400px;}
.yd6{bottom:446.684400px;}
.y76{bottom:446.696400px;}
.ya{bottom:448.811550px;}
.y137{bottom:458.345400px;}
.y1ab{bottom:459.168000px;}
.y9{bottom:462.311550px;}
.y97{bottom:463.178400px;}
.y5c{bottom:463.181400px;}
.y75{bottom:463.193400px;}
.y136{bottom:472.589400px;}
.y1aa{bottom:474.168000px;}
.y5b{bottom:479.678400px;}
.yc8{bottom:479.681400px;}
.ya5{bottom:479.684400px;}
.y96{bottom:479.687400px;}
.y74{bottom:479.690400px;}
.y135{bottom:486.833400px;}
.y1a9{bottom:489.168000px;}
.y172{bottom:494.016000px;}
.y4f{bottom:496.178400px;}
.y3c{bottom:496.181400px;}
.y95{bottom:496.184400px;}
.y5a{bottom:496.187400px;}
.y134{bottom:501.077400px;}
.yc5{bottom:503.676000px;}
.y1a8{bottom:504.168000px;}
.y171{bottom:508.260000px;}
.yc3{bottom:508.503600px;}
.yc1{bottom:509.628600px;}
.yc4{bottom:512.675400px;}
.y3b{bottom:512.678400px;}
.y94{bottom:512.681400px;}
.y59{bottom:512.684400px;}
.yc0{bottom:512.690400px;}
.y133{bottom:515.321400px;}
.yc2{bottom:518.724794px;}
.y1a7{bottom:519.168000px;}
.y170{bottom:522.504000px;}
.y3a{bottom:529.175400px;}
.y93{bottom:529.178400px;}
.y58{bottom:529.181400px;}
.ybf{bottom:529.187400px;}
.yd5{bottom:529.194900px;}
.y132{bottom:529.583400px;}
.y1a6{bottom:534.168000px;}
.y16f{bottom:536.748000px;}
.y131{bottom:543.827400px;}
.y92{bottom:545.675400px;}
.y57{bottom:545.678400px;}
.y39{bottom:545.681400px;}
.ybe{bottom:545.684400px;}
.yd4{bottom:545.691900px;}
.y1a5{bottom:549.168000px;}
.y16e{bottom:550.992000px;}
.y130{bottom:558.083400px;}
.y56{bottom:562.175400px;}
.y38{bottom:562.178400px;}
.ybd{bottom:562.181400px;}
.yd3{bottom:562.188900px;}
.y73{bottom:562.190400px;}
.y1a4{bottom:564.168000px;}
.y16d{bottom:565.236000px;}
.y4c{bottom:569.085600px;}
.y12f{bottom:572.327400px;}
.y37{bottom:578.678400px;}
.yd2{bottom:578.685900px;}
.y1a3{bottom:579.168000px;}
.y16c{bottom:579.480000px;}
.y12e{bottom:586.589400px;}
.yba{bottom:586.777800px;}
.y4b{bottom:588.580725px;}
.y16b{bottom:593.724000px;}
.y1a2{bottom:594.168000px;}
.ybc{bottom:595.175400px;}
.y105{bottom:595.178400px;}
.y36{bottom:595.181400px;}
.yd1{bottom:595.182900px;}
.y12d{bottom:600.833400px;}
.yb9{bottom:601.033800px;}
.y16a{bottom:607.968000px;}
.y4a{bottom:608.139225px;}
.y91{bottom:608.542500px;}
.y1a1{bottom:609.168000px;}
.y35{bottom:611.678400px;}
.y104{bottom:611.690400px;}
.y12c{bottom:615.077400px;}
.yb8{bottom:615.277800px;}
.y169{bottom:622.212000px;}
.y90{bottom:622.804500px;}
.y1a0{bottom:624.168000px;}
.y49{bottom:627.634350px;}
.y34{bottom:628.184400px;}
.y103{bottom:628.187400px;}
.y12b{bottom:629.333400px;}
.yb7{bottom:629.521800px;}
.ye9{bottom:635.152650px;}
.y168{bottom:636.456000px;}
.y8f{bottom:637.048500px;}
.y19f{bottom:639.168000px;}
.y12a{bottom:643.577400px;}
.y33{bottom:644.681400px;}
.y102{bottom:644.684400px;}
.y48{bottom:647.129475px;}
.ye8{bottom:649.402650px;}
.y167{bottom:650.700000px;}
.y8e{bottom:651.292500px;}
.y19e{bottom:654.168000px;}
.y129{bottom:657.863400px;}
.y32{bottom:661.178400px;}
.y101{bottom:661.181400px;}
.ye7{bottom:663.658650px;}
.y166{bottom:664.944000px;}
.y8d{bottom:665.542500px;}
.y47{bottom:666.624600px;}
.y19d{bottom:669.168000px;}
.y128{bottom:672.107400px;}
.y100{bottom:677.678400px;}
.y31{bottom:677.708400px;}
.ye6{bottom:677.902650px;}
.y165{bottom:679.188000px;}
.y8c{bottom:679.792500px;}
.y19c{bottom:684.168000px;}
.y46{bottom:686.119725px;}
.y127{bottom:686.351400px;}
.ye5{bottom:692.152650px;}
.y164{bottom:693.432000px;}
.y8b{bottom:694.048500px;}
.yff{bottom:694.199400px;}
.y30{bottom:694.205400px;}
.y1dc{bottom:698.430750px;}
.y19b{bottom:699.168000px;}
.y126{bottom:700.595400px;}
.y45{bottom:705.614850px;}
.ye4{bottom:706.402650px;}
.y163{bottom:707.676000px;}
.y8a{bottom:708.292500px;}
.yfe{bottom:710.696400px;}
.y2f{bottom:710.702400px;}
.y1db{bottom:713.430750px;}
.y19a{bottom:714.168000px;}
.y125{bottom:714.839400px;}
.ye3{bottom:720.646650px;}
.y162{bottom:721.944000px;}
.y89{bottom:722.536500px;}
.y44{bottom:725.109975px;}
.yfd{bottom:727.193400px;}
.y2e{bottom:727.199400px;}
.y1da{bottom:728.430750px;}
.y124{bottom:729.083400px;}
.y199{bottom:729.168000px;}
.y161{bottom:736.188000px;}
.y123{bottom:743.327400px;}
.y1d9{bottom:743.430750px;}
.yfc{bottom:743.690400px;}
.y2d{bottom:743.696400px;}
.y198{bottom:744.168000px;}
.y43{bottom:744.605100px;}
.y160{bottom:750.432000px;}
.y122{bottom:757.583400px;}
.y1d8{bottom:758.430750px;}
.y197{bottom:759.168000px;}
.yfb{bottom:760.187400px;}
.y2c{bottom:760.193400px;}
.y42{bottom:764.100225px;}
.y15f{bottom:764.676000px;}
.y121{bottom:771.827400px;}
.y1d7{bottom:773.430750px;}
.y196{bottom:774.168000px;}
.yfa{bottom:776.684400px;}
.y2b{bottom:776.690400px;}
.y15e{bottom:778.956000px;}
.y41{bottom:783.595350px;}
.y120{bottom:786.077400px;}
.y1d6{bottom:788.430750px;}
.y195{bottom:789.168000px;}
.yf9{bottom:793.181400px;}
.y2a{bottom:793.187400px;}
.y15d{bottom:793.200000px;}
.y11f{bottom:800.333400px;}
.y40{bottom:803.090475px;}
.y1d5{bottom:803.430750px;}
.y194{bottom:804.168000px;}
.y15c{bottom:807.444000px;}
.yf8{bottom:809.678400px;}
.y29{bottom:809.684400px;}
.y11e{bottom:814.577400px;}
.y1d4{bottom:818.430750px;}
.y193{bottom:819.168000px;}
.y15b{bottom:821.688000px;}
.y3f{bottom:822.585600px;}
.y28{bottom:826.181400px;}
.yf7{bottom:826.184400px;}
.y11d{bottom:828.827400px;}
.y1d3{bottom:833.430750px;}
.y192{bottom:834.168000px;}
.y15a{bottom:835.932000px;}
.y3e{bottom:842.080725px;}
.y27{bottom:842.678400px;}
.yf6{bottom:842.681400px;}
.y11c{bottom:843.149400px;}
.y1d2{bottom:848.430750px;}
.y191{bottom:849.168000px;}
.y159{bottom:850.176000px;}
.y11b{bottom:857.393400px;}
.y26{bottom:859.178400px;}
.y3d{bottom:861.575850px;}
.y1d1{bottom:863.430750px;}
.y190{bottom:864.168000px;}
.y158{bottom:864.420000px;}
.y11a{bottom:871.637400px;}
.y25{bottom:875.671800px;}
.yf5{bottom:875.678400px;}
.y1d0{bottom:878.430750px;}
.y18f{bottom:879.168000px;}
.y119{bottom:885.881400px;}
.y157{bottom:887.670000px;}
.yf4{bottom:892.193400px;}
.y1cf{bottom:893.430750px;}
.y18e{bottom:894.168000px;}
.y118{bottom:900.125400px;}
.y1ce{bottom:908.430750px;}
.yf3{bottom:908.690400px;}
.y18d{bottom:909.168000px;}
.y117{bottom:914.369400px;}
.y8{bottom:915.048450px;}
.y1cd{bottom:923.430750px;}
.y18c{bottom:924.168000px;}
.yf2{bottom:925.187400px;}
.y116{bottom:928.613400px;}
.y1cc{bottom:938.430750px;}
.y18b{bottom:939.168000px;}
.y156{bottom:940.176000px;}
.yf1{bottom:941.684400px;}
.y7{bottom:942.054450px;}
.y115{bottom:942.857400px;}
.y1cb{bottom:953.430750px;}
.y18a{bottom:954.168000px;}
.y155{bottom:954.420000px;}
.y114{bottom:957.101400px;}
.yf0{bottom:958.181400px;}
.y1ca{bottom:968.430750px;}
.y6{bottom:969.060450px;}
.y189{bottom:969.168000px;}
.y113{bottom:971.345400px;}
.yef{bottom:974.678400px;}
.y154{bottom:977.670000px;}
.y1c9{bottom:983.430750px;}
.y188{bottom:984.168000px;}
.y112{bottom:985.589400px;}
.yee{bottom:991.178400px;}
.y1c8{bottom:998.430750px;}
.y187{bottom:999.168000px;}
.y111{bottom:999.833400px;}
.yed{bottom:1007.684400px;}
.y5{bottom:1010.724300px;}
.y1c7{bottom:1013.430750px;}
.y110{bottom:1014.077400px;}
.y186{bottom:1014.168000px;}
.yec{bottom:1024.181400px;}
.y10f{bottom:1028.321400px;}
.y1c6{bottom:1028.430750px;}
.y185{bottom:1029.168000px;}
.y153{bottom:1030.182000px;}
.yeb{bottom:1040.678400px;}
.y1c5{bottom:1043.430750px;}
.y184{bottom:1044.168000px;}
.y152{bottom:1044.426000px;}
.y4{bottom:1045.224300px;}
.y10e{bottom:1055.327400px;}
.yea{bottom:1057.175400px;}
.y1c4{bottom:1058.430750px;}
.y151{bottom:1058.670000px;}
.y183{bottom:1059.168000px;}
.y1{bottom:1098.358800px;}
.y3{bottom:1124.511000px;}
.h1b{height:16.582500px;}
.h1a{height:23.077091px;}
.h1f{height:23.369836px;}
.h1e{height:23.928690px;}
.h1c{height:24.000000px;}
.h13{height:34.986000px;}
.h2{height:35.616000px;}
.h2d{height:39.744000px;}
.h19{height:39.798000px;}
.ha{height:39.906000px;}
.h7{height:39.984000px;}
.hb{height:40.014000px;}
.h3{height:40.068000px;}
.h21{height:40.218857px;}
.h17{height:40.266857px;}
.h20{height:40.278857px;}
.h18{height:40.290857px;}
.h16{height:40.302857px;}
.h1d{height:41.266662px;}
.h10{height:43.407000px;}
.h28{height:44.476800px;}
.h2c{height:44.524800px;}
.h11{height:44.547198px;}
.h2a{height:44.620800px;}
.h2f{height:44.692800px;}
.h2b{height:44.716800px;}
.h29{height:44.740800px;}
.h2e{height:44.788800px;}
.hc{height:46.702200px;}
.h25{height:46.738200px;}
.h15{height:46.762200px;}
.h24{height:46.762800px;}
.h26{height:46.774200px;}
.h14{height:46.786200px;}
.hd{height:46.798200px;}
.he{height:46.810200px;}
.hf{height:46.822200px;}
.h9{height:46.822800px;}
.h12{height:46.834200px;}
.h8{height:46.849200px;}
.h22{height:47.088000px;}
.h23{height:47.100600px;}
.h27{height:51.198000px;}
.h4{height:55.152000px;}
.h6{height:69.552000px;}
.h5{height:89.040000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w4{width:138.001500px;}
.w3{width:139.969500px;}
.w2{width:146.787000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:9.149250px;}
.x1a{left:11.062350px;}
.x14{left:15.524250px;}
.x1b{left:17.437350px;}
.x19{left:61.077900px;}
.xa{left:72.283500px;}
.x3{left:76.535400px;}
.x26{left:78.283500px;}
.x25{left:79.663500px;}
.xb{left:87.283350px;}
.xe{left:91.535400px;}
.x27{left:96.283500px;}
.x2c{left:100.535400px;}
.x7{left:103.056450px;}
.x24{left:254.599500px;}
.x9{left:291.153750px;}
.x18{left:293.055600px;}
.x2{left:295.875000px;}
.x16{left:300.368100px;}
.x22{left:303.355500px;}
.x23{left:305.023500px;}
.x17{left:313.307867px;}
.x1c{left:430.305750px;}
.xd{left:454.983000px;}
.x2a{left:456.367500px;}
.x2b{left:457.747500px;}
.x4{left:459.020250px;}
.x28{left:460.975500px;}
.x10{left:467.350500px;}
.xc{left:469.982100px;}
.x6{left:474.216900px;}
.x29{left:478.975500px;}
.x11{left:480.478140px;}
.x2d{left:483.239400px;}
.x12{left:514.553700px;}
.xf{left:524.491200px;}
.x5{left:578.517750px;}
.x20{left:595.785000px;}
.x1e{left:598.503900px;}
.x15{left:606.019500px;}
.x1d{left:618.944040px;}
.x1f{left:653.347650px;}
.x21{left:733.785150px;}
.x8{left:738.878100px;}
.x1{left:742.892100px;}
@media print{
.v4{vertical-align:-16.800533pt;}
.vb{vertical-align:-14.933333pt;}
.v5{vertical-align:-10.625867pt;}
.v7{vertical-align:-9.621333pt;}
.v8{vertical-align:-8.533333pt;}
.v2{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.097067pt;}
.va{vertical-align:8.533333pt;}
.v6{vertical-align:10.400533pt;}
.v9{vertical-align:14.656000pt;}
.v3{vertical-align:16.813333pt;}
.ls4{letter-spacing:-1.866667pt;}
.ls4d{letter-spacing:-1.200000pt;}
.ls5a{letter-spacing:-1.152000pt;}
.ls15{letter-spacing:-1.104000pt;}
.ls8{letter-spacing:-1.092000pt;}
.ls3a{letter-spacing:-0.912000pt;}
.ls5{letter-spacing:-0.864000pt;}
.ls50{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.604800pt;}
.ls24{letter-spacing:-0.528828pt;}
.ls7{letter-spacing:-0.528000pt;}
.ls59{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls4e{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.369600pt;}
.ls4f{letter-spacing:-0.268800pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.083499pt;}
.ls4c{letter-spacing:-0.067200pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls41{letter-spacing:0.001067pt;}
.ls22{letter-spacing:0.003200pt;}
.ls51{letter-spacing:0.003733pt;}
.ls35{letter-spacing:0.018133pt;}
.ls33{letter-spacing:0.018667pt;}
.lsb{letter-spacing:0.019200pt;}
.ls2f{letter-spacing:0.026133pt;}
.ls2c{letter-spacing:0.029867pt;}
.ls2a{letter-spacing:0.045333pt;}
.ls1e{letter-spacing:0.051733pt;}
.ls3e{letter-spacing:0.057600pt;}
.lsd{letter-spacing:0.074133pt;}
.ls37{letter-spacing:0.170667pt;}
.ls38{letter-spacing:0.174933pt;}
.lsa{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls5b{letter-spacing:0.426667pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls5c{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.682667pt;}
.ls12{letter-spacing:0.810667pt;}
.ls44{letter-spacing:0.816000pt;}
.ls1{letter-spacing:0.933333pt;}
.ls42{letter-spacing:1.008000pt;}
.ls52{letter-spacing:1.066667pt;}
.ls55{letter-spacing:1.070933pt;}
.ls56{letter-spacing:1.075200pt;}
.ls36{letter-spacing:1.194667pt;}
.ls2d{letter-spacing:1.296000pt;}
.ls2e{letter-spacing:1.344000pt;}
.ls3c{letter-spacing:1.584000pt;}
.ls34{letter-spacing:1.749333pt;}
.ls46{letter-spacing:1.776000pt;}
.ls47{letter-spacing:1.824000pt;}
.ls58{letter-spacing:2.069333pt;}
.ls48{letter-spacing:2.218667pt;}
.ls30{letter-spacing:2.640000pt;}
.ls16{letter-spacing:2.736000pt;}
.ls29{letter-spacing:2.832000pt;}
.ls57{letter-spacing:2.897067pt;}
.ls53{letter-spacing:3.025067pt;}
.ls43{letter-spacing:3.960000pt;}
.ls40{letter-spacing:4.128000pt;}
.ls3d{letter-spacing:4.464000pt;}
.ls49{letter-spacing:4.650667pt;}
.ls20{letter-spacing:4.800000pt;}
.ls32{letter-spacing:4.864000pt;}
.ls5d{letter-spacing:5.051733pt;}
.ls18{letter-spacing:6.000000pt;}
.ls4a{letter-spacing:6.016000pt;}
.ls1d{letter-spacing:6.240000pt;}
.ls3f{letter-spacing:6.288000pt;}
.ls1b{letter-spacing:6.364800pt;}
.ls4b{letter-spacing:6.442667pt;}
.ls45{letter-spacing:6.720000pt;}
.ls21{letter-spacing:7.168000pt;}
.ls28{letter-spacing:7.392000pt;}
.ls31{letter-spacing:8.160000pt;}
.ls11{letter-spacing:8.256000pt;}
.ls17{letter-spacing:8.640000pt;}
.ls1f{letter-spacing:9.744000pt;}
.lsf{letter-spacing:9.984000pt;}
.lse{letter-spacing:10.032000pt;}
.ls9{letter-spacing:10.992000pt;}
.ls10{letter-spacing:11.088000pt;}
.ls1a{letter-spacing:11.520000pt;}
.ls2b{letter-spacing:11.664000pt;}
.ls54{letter-spacing:12.480000pt;}
.ls5e{letter-spacing:15.475200pt;}
.ls19{letter-spacing:18.048000pt;}
.ls39{letter-spacing:73.824000pt;}
.ls3b{letter-spacing:85.824000pt;}
.ls27{letter-spacing:97.824000pt;}
.ls26{letter-spacing:428.815208pt;}
.wsa4{word-spacing:-428.815208pt;}
.wsa5{word-spacing:-97.824000pt;}
.wsd0{word-spacing:-85.824000pt;}
.wsb6{word-spacing:-73.824000pt;}
.ws8{word-spacing:-13.000000pt;}
.ws30{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.908000pt;}
.ws2e{word-spacing:-11.904000pt;}
.ws2d{word-spacing:-11.472000pt;}
.ws31{word-spacing:-10.896000pt;}
.wsdc{word-spacing:-10.800000pt;}
.ws33{word-spacing:-10.666667pt;}
.wsde{word-spacing:-10.282667pt;}
.wse0{word-spacing:-10.026667pt;}
.ws9{word-spacing:-9.333333pt;}
.ws7{word-spacing:-9.100000pt;}
.ws3{word-spacing:-8.400000pt;}
.wsdb{word-spacing:-8.332800pt;}
.ws1{word-spacing:-8.000000pt;}
.ws34{word-spacing:-7.466667pt;}
.wsdf{word-spacing:-7.197867pt;}
.wsbc{word-spacing:-1.488000pt;}
.wsf1{word-spacing:-0.912000pt;}
.ws16{word-spacing:-0.816000pt;}
.ws104{word-spacing:-0.554667pt;}
.ws3e{word-spacing:-0.528000pt;}
.ws184{word-spacing:-0.512000pt;}
.ws2{word-spacing:-0.448000pt;}
.ws2c{word-spacing:-0.336000pt;}
.wsd9{word-spacing:-0.256000pt;}
.wsfd{word-spacing:-0.240000pt;}
.wsaa{word-spacing:-0.213333pt;}
.ws5{word-spacing:-0.052000pt;}
.ws4{word-spacing:-0.048000pt;}
.wsdd{word-spacing:-0.042667pt;}
.ws32{word-spacing:-0.033600pt;}
.ws78{word-spacing:-0.029867pt;}
.ws77{word-spacing:-0.020000pt;}
.wsa{word-spacing:0.000000pt;}
.ws17b{word-spacing:0.042667pt;}
.ws2f{word-spacing:0.048000pt;}
.wsf3{word-spacing:0.067200pt;}
.ws48{word-spacing:0.096000pt;}
.ws123{word-spacing:0.128000pt;}
.wsda{word-spacing:0.170667pt;}
.ws17e{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.240000pt;}
.ws10f{word-spacing:0.268800pt;}
.ws14e{word-spacing:0.298667pt;}
.ws2b{word-spacing:0.336000pt;}
.ws39{word-spacing:0.369600pt;}
.ws0{word-spacing:0.384000pt;}
.ws17d{word-spacing:0.426667pt;}
.ws139{word-spacing:0.448000pt;}
.ws162{word-spacing:0.469333pt;}
.ws1b{word-spacing:0.480000pt;}
.ws75{word-spacing:0.500995pt;}
.ws134{word-spacing:0.512000pt;}
.ws9e{word-spacing:0.576000pt;}
.ws11{word-spacing:0.604800pt;}
.wsc1{word-spacing:0.624000pt;}
.ws136{word-spacing:0.640000pt;}
.wsa7{word-spacing:0.672000pt;}
.wsab{word-spacing:0.682667pt;}
.wsc7{word-spacing:0.768000pt;}
.ws6a{word-spacing:0.810667pt;}
.ws174{word-spacing:0.853333pt;}
.ws22{word-spacing:0.864000pt;}
.wscf{word-spacing:0.912000pt;}
.wsb{word-spacing:0.933333pt;}
.ws70{word-spacing:0.938667pt;}
.ws41{word-spacing:1.008000pt;}
.ws160{word-spacing:1.024000pt;}
.wsba{word-spacing:1.056000pt;}
.ws72{word-spacing:1.066667pt;}
.ws29{word-spacing:1.092000pt;}
.wsa2{word-spacing:1.152000pt;}
.ws25{word-spacing:1.200000pt;}
.ws118{word-spacing:1.237333pt;}
.ws100{word-spacing:1.248000pt;}
.wse{word-spacing:1.269333pt;}
.wsd8{word-spacing:1.280000pt;}
.ws9c{word-spacing:1.296000pt;}
.ws84{word-spacing:1.344000pt;}
.ws127{word-spacing:1.408000pt;}
.wsc8{word-spacing:1.440000pt;}
.ws112{word-spacing:1.450667pt;}
.wsca{word-spacing:1.488000pt;}
.ws102{word-spacing:1.533333pt;}
.ws6e{word-spacing:1.578667pt;}
.ws92{word-spacing:1.584000pt;}
.ws42{word-spacing:1.680000pt;}
.wsd7{word-spacing:1.749333pt;}
.ws73{word-spacing:1.756800pt;}
.ws108{word-spacing:1.834667pt;}
.wsd{word-spacing:1.866667pt;}
.ws115{word-spacing:1.877333pt;}
.wsf7{word-spacing:1.920000pt;}
.ws116{word-spacing:1.962667pt;}
.wse2{word-spacing:2.016000pt;}
.ws150{word-spacing:2.048000pt;}
.wsf9{word-spacing:2.064000pt;}
.ws163{word-spacing:2.090667pt;}
.ws122{word-spacing:2.133333pt;}
.ws6c{word-spacing:2.176000pt;}
.wsb9{word-spacing:2.208000pt;}
.wsc5{word-spacing:2.256000pt;}
.ws6d{word-spacing:2.389333pt;}
.ws14b{word-spacing:2.432000pt;}
.ws17c{word-spacing:2.474667pt;}
.ws182{word-spacing:2.517333pt;}
.ws97{word-spacing:2.592000pt;}
.ws6f{word-spacing:2.602667pt;}
.ws96{word-spacing:2.640000pt;}
.wsc{word-spacing:2.666667pt;}
.wsc3{word-spacing:2.688000pt;}
.ws83{word-spacing:2.736000pt;}
.wsa1{word-spacing:2.784000pt;}
.ws17{word-spacing:2.832000pt;}
.ws172{word-spacing:2.858667pt;}
.ws151{word-spacing:2.901333pt;}
.ws11a{word-spacing:2.944000pt;}
.ws101{word-spacing:2.976000pt;}
.wsae{word-spacing:2.980000pt;}
.ws177{word-spacing:2.986667pt;}
.wsf8{word-spacing:3.024000pt;}
.ws52{word-spacing:3.072000pt;}
.ws15d{word-spacing:3.114667pt;}
.ws47{word-spacing:3.120000pt;}
.wsd6{word-spacing:3.200000pt;}
.ws14c{word-spacing:3.242667pt;}
.ws12a{word-spacing:3.285333pt;}
.wseb{word-spacing:3.312000pt;}
.ws155{word-spacing:3.328000pt;}
.ws40{word-spacing:3.360000pt;}
.ws152{word-spacing:3.541333pt;}
.ws26{word-spacing:3.552000pt;}
.ws171{word-spacing:3.584000pt;}
.wsf{word-spacing:3.600000pt;}
.wsce{word-spacing:3.648000pt;}
.ws168{word-spacing:3.669333pt;}
.ws90{word-spacing:3.696000pt;}
.ws4d{word-spacing:3.792000pt;}
.ws111{word-spacing:3.882667pt;}
.ws3f{word-spacing:3.888000pt;}
.wse9{word-spacing:3.984000pt;}
.ws10{word-spacing:4.032000pt;}
.ws153{word-spacing:4.096000pt;}
.ws9b{word-spacing:4.128000pt;}
.ws124{word-spacing:4.138667pt;}
.ws109{word-spacing:4.181333pt;}
.ws146{word-spacing:4.266667pt;}
.ws71{word-spacing:4.309333pt;}
.ws91{word-spacing:4.320000pt;}
.wse1{word-spacing:4.464000pt;}
.wsb1{word-spacing:4.512000pt;}
.ws126{word-spacing:4.522667pt;}
.ws4c{word-spacing:4.560000pt;}
.ws15a{word-spacing:4.565333pt;}
.wsbb{word-spacing:4.608000pt;}
.ws128{word-spacing:4.736000pt;}
.wsf0{word-spacing:4.752000pt;}
.ws6b{word-spacing:4.778667pt;}
.ws19{word-spacing:4.800000pt;}
.wsa8{word-spacing:4.848000pt;}
.wsd5{word-spacing:4.864000pt;}
.ws28{word-spacing:4.896000pt;}
.ws129{word-spacing:4.906667pt;}
.ws8c{word-spacing:4.992000pt;}
.ws10b{word-spacing:5.034667pt;}
.wse4{word-spacing:5.040000pt;}
.ws13d{word-spacing:5.077333pt;}
.wsc9{word-spacing:5.088000pt;}
.ws14a{word-spacing:5.120000pt;}
.ws58{word-spacing:5.136000pt;}
.ws137{word-spacing:5.162667pt;}
.ws66{word-spacing:5.184000pt;}
.wsed{word-spacing:5.280000pt;}
.ws8a{word-spacing:5.328000pt;}
.ws64{word-spacing:5.520000pt;}
.wsb2{word-spacing:5.568000pt;}
.ws80{word-spacing:5.664000pt;}
.ws16c{word-spacing:5.674667pt;}
.ws142{word-spacing:5.717333pt;}
.wse7{word-spacing:5.760000pt;}
.ws65{word-spacing:5.808000pt;}
.ws76{word-spacing:5.844944pt;}
.wse6{word-spacing:5.856000pt;}
.ws89{word-spacing:5.904000pt;}
.ws5d{word-spacing:5.952000pt;}
.ws86{word-spacing:6.000000pt;}
.ws98{word-spacing:6.048000pt;}
.ws11c{word-spacing:6.058667pt;}
.ws3b{word-spacing:6.144000pt;}
.ws16e{word-spacing:6.186667pt;}
.ws157{word-spacing:6.229333pt;}
.ws9d{word-spacing:6.240000pt;}
.ws133{word-spacing:6.272000pt;}
.wse3{word-spacing:6.288000pt;}
.ws3a{word-spacing:6.336000pt;}
.wsad{word-spacing:6.345939pt;}
.ws178{word-spacing:6.357333pt;}
.ws10d{word-spacing:6.400000pt;}
.ws5e{word-spacing:6.432000pt;}
.ws156{word-spacing:6.442667pt;}
.ws50{word-spacing:6.480000pt;}
.ws10a{word-spacing:6.485333pt;}
.wsd2{word-spacing:6.528000pt;}
.ws159{word-spacing:6.570667pt;}
.ws135{word-spacing:6.613333pt;}
.wse5{word-spacing:6.624000pt;}
.ws173{word-spacing:6.656000pt;}
.wsec{word-spacing:6.720000pt;}
.wsf4{word-spacing:6.816000pt;}
.ws110{word-spacing:6.826667pt;}
.ws106{word-spacing:6.869333pt;}
.ws69{word-spacing:6.912000pt;}
.ws132{word-spacing:6.954667pt;}
.wsff{word-spacing:7.008000pt;}
.wsb0{word-spacing:7.013933pt;}
.ws183{word-spacing:7.082667pt;}
.ws7f{word-spacing:7.104000pt;}
.ws51{word-spacing:7.152000pt;}
.wsef{word-spacing:7.200000pt;}
.wsa9{word-spacing:7.210667pt;}
.ws12b{word-spacing:7.253333pt;}
.ws62{word-spacing:7.296000pt;}
.ws141{word-spacing:7.338667pt;}
.ws2a{word-spacing:7.344000pt;}
.wsb7{word-spacing:7.392000pt;}
.ws187{word-spacing:7.466667pt;}
.wsfb{word-spacing:7.488000pt;}
.ws161{word-spacing:7.722667pt;}
.ws4a{word-spacing:7.728000pt;}
.ws4e{word-spacing:7.776000pt;}
.ws55{word-spacing:7.824000pt;}
.ws14d{word-spacing:7.850667pt;}
.ws36{word-spacing:7.920000pt;}
.ws131{word-spacing:7.936000pt;}
.ws99{word-spacing:7.968000pt;}
.ws4b{word-spacing:8.064000pt;}
.ws54{word-spacing:8.112000pt;}
.wsd1{word-spacing:8.160000pt;}
.wse8{word-spacing:8.208000pt;}
.ws5f{word-spacing:8.256000pt;}
.ws12c{word-spacing:8.277333pt;}
.wsea{word-spacing:8.352000pt;}
.ws8b{word-spacing:8.400000pt;}
.ws107{word-spacing:8.405333pt;}
.ws8e{word-spacing:8.448000pt;}
.ws154{word-spacing:8.490667pt;}
.ws147{word-spacing:8.533333pt;}
.wsbf{word-spacing:8.544000pt;}
.ws13c{word-spacing:8.576000pt;}
.ws67{word-spacing:8.592000pt;}
.ws61{word-spacing:8.640000pt;}
.ws85{word-spacing:8.688000pt;}
.ws16f{word-spacing:8.704000pt;}
.ws60{word-spacing:8.736000pt;}
.ws113{word-spacing:8.746667pt;}
.ws95{word-spacing:8.784000pt;}
.ws14f{word-spacing:8.874667pt;}
.ws43{word-spacing:8.928000pt;}
.ws15e{word-spacing:9.002667pt;}
.ws8f{word-spacing:9.024000pt;}
.ws125{word-spacing:9.045333pt;}
.wsc2{word-spacing:9.072000pt;}
.ws88{word-spacing:9.120000pt;}
.ws117{word-spacing:9.130667pt;}
.wsc4{word-spacing:9.168000pt;}
.ws13a{word-spacing:9.216000pt;}
.wsaf{word-spacing:9.264000pt;}
.wscc{word-spacing:9.312000pt;}
.ws44{word-spacing:9.360000pt;}
.ws105{word-spacing:9.386667pt;}
.ws120{word-spacing:9.472000pt;}
.wsbd{word-spacing:9.504000pt;}
.ws13f{word-spacing:9.514667pt;}
.ws59{word-spacing:9.552000pt;}
.ws119{word-spacing:9.557333pt;}
.ws164{word-spacing:9.728000pt;}
.wsa6{word-spacing:9.744000pt;}
.ws185{word-spacing:9.856000pt;}
.ws16d{word-spacing:9.898667pt;}
.ws5b{word-spacing:9.984000pt;}
.ws3c{word-spacing:10.032000pt;}
.ws24{word-spacing:10.080000pt;}
.ws181{word-spacing:10.112000pt;}
.ws12d{word-spacing:10.154667pt;}
.ws82{word-spacing:10.272000pt;}
.ws138{word-spacing:10.325333pt;}
.ws7d{word-spacing:10.416000pt;}
.wsf5{word-spacing:10.512000pt;}
.ws1e{word-spacing:10.608000pt;}
.ws53{word-spacing:10.704000pt;}
.ws3d{word-spacing:10.752000pt;}
.wsfe{word-spacing:10.800000pt;}
.ws45{word-spacing:10.896000pt;}
.ws5a{word-spacing:10.944000pt;}
.ws49{word-spacing:11.088000pt;}
.ws5c{word-spacing:11.136000pt;}
.wsfa{word-spacing:11.232000pt;}
.ws11f{word-spacing:11.349333pt;}
.ws15c{word-spacing:11.392000pt;}
.ws21{word-spacing:11.424000pt;}
.ws165{word-spacing:11.434667pt;}
.ws15b{word-spacing:11.477333pt;}
.ws87{word-spacing:11.520000pt;}
.ws16b{word-spacing:11.648000pt;}
.wsc0{word-spacing:11.664000pt;}
.ws9a{word-spacing:11.712000pt;}
.ws11b{word-spacing:11.733333pt;}
.ws27{word-spacing:11.760000pt;}
.wsb8{word-spacing:11.808000pt;}
.ws179{word-spacing:11.818667pt;}
.wscd{word-spacing:11.904000pt;}
.ws68{word-spacing:11.952000pt;}
.ws4f{word-spacing:12.000000pt;}
.ws12f{word-spacing:12.202667pt;}
.ws57{word-spacing:12.432000pt;}
.ws158{word-spacing:12.501333pt;}
.ws1f{word-spacing:12.528000pt;}
.ws10c{word-spacing:12.544000pt;}
.ws9f{word-spacing:12.720000pt;}
.wsc6{word-spacing:12.768000pt;}
.wsb4{word-spacing:12.912000pt;}
.ws63{word-spacing:12.960000pt;}
.wsb3{word-spacing:13.104000pt;}
.ws176{word-spacing:13.184000pt;}
.ws79{word-spacing:13.248000pt;}
.ws13{word-spacing:13.296000pt;}
.ws7e{word-spacing:13.392000pt;}
.ws94{word-spacing:13.440000pt;}
.ws81{word-spacing:13.536000pt;}
.ws23{word-spacing:13.680000pt;}
.wsbe{word-spacing:13.728000pt;}
.ws37{word-spacing:13.776000pt;}
.ws130{word-spacing:13.781333pt;}
.ws10e{word-spacing:13.994667pt;}
.ws7a{word-spacing:14.112000pt;}
.ws121{word-spacing:14.421333pt;}
.wsf2{word-spacing:14.448000pt;}
.wsa0{word-spacing:14.544000pt;}
.wsa3{word-spacing:14.688000pt;}
.ws140{word-spacing:14.762667pt;}
.ws149{word-spacing:15.146667pt;}
.ws1a{word-spacing:15.360000pt;}
.ws8d{word-spacing:15.408000pt;}
.ws166{word-spacing:15.445333pt;}
.ws186{word-spacing:15.573333pt;}
.ws1d{word-spacing:15.696000pt;}
.wsf6{word-spacing:15.792000pt;}
.ws11e{word-spacing:15.829333pt;}
.ws170{word-spacing:15.957333pt;}
.ws114{word-spacing:16.000000pt;}
.ws7c{word-spacing:16.560000pt;}
.wsfc{word-spacing:16.608000pt;}
.ws11d{word-spacing:16.810667pt;}
.ws13b{word-spacing:17.365333pt;}
.ws15{word-spacing:17.856000pt;}
.wsb5{word-spacing:17.904000pt;}
.ws93{word-spacing:18.000000pt;}
.ws7b{word-spacing:18.240000pt;}
.ws20{word-spacing:18.288000pt;}
.ws35{word-spacing:18.576000pt;}
.ws16a{word-spacing:19.029333pt;}
.ws17f{word-spacing:19.200000pt;}
.ws56{word-spacing:19.248000pt;}
.ws12{word-spacing:19.344000pt;}
.ws12e{word-spacing:19.541333pt;}
.ws175{word-spacing:19.712000pt;}
.wsd4{word-spacing:20.112000pt;}
.ws18{word-spacing:20.160000pt;}
.ws13e{word-spacing:20.736000pt;}
.ws167{word-spacing:20.992000pt;}
.ws148{word-spacing:21.034667pt;}
.ws103{word-spacing:21.162667pt;}
.wsee{word-spacing:21.552000pt;}
.ws17a{word-spacing:21.589333pt;}
.ws169{word-spacing:21.802667pt;}
.ws144{word-spacing:22.058667pt;}
.ws46{word-spacing:23.328000pt;}
.ws180{word-spacing:24.149333pt;}
.ws38{word-spacing:24.192000pt;}
.ws15f{word-spacing:24.746667pt;}
.wscb{word-spacing:26.208000pt;}
.ws14{word-spacing:26.304000pt;}
.ws143{word-spacing:27.093333pt;}
.wsd3{word-spacing:27.696000pt;}
.ws145{word-spacing:30.122667pt;}
.wsac{word-spacing:34.272000pt;}
.ws74{word-spacing:37.632000pt;}
._8{margin-left:-2646.229333pt;}
._19{margin-left:-18.808000pt;}
._1c{margin-left:-16.089067pt;}
._15{margin-left:-12.000000pt;}
._1f{margin-left:-10.950400pt;}
._3{margin-left:-9.930667pt;}
._1b{margin-left:-8.489600pt;}
._4{margin-left:-7.466667pt;}
._26{margin-left:-6.310400pt;}
._2{margin-left:-5.113600pt;}
._0{margin-left:-3.413333pt;}
._6{margin-left:-1.710933pt;}
._7{width:0.926400pt;}
._5{width:2.067200pt;}
._16{width:2.968533pt;}
._f{width:4.158933pt;}
._24{width:5.056000pt;}
._d{width:5.994667pt;}
._1d{width:7.014933pt;}
._b{width:8.022933pt;}
._c{width:9.582933pt;}
._a{width:10.992000pt;}
._1e{width:12.480000pt;}
._10{width:13.701333pt;}
._11{width:14.805333pt;}
._1a{width:16.058133pt;}
._23{width:19.029333pt;}
._25{width:19.982933pt;}
._21{width:21.000533pt;}
._22{width:22.638933pt;}
._e{width:24.144000pt;}
._20{width:25.158400pt;}
._18{width:37.680000pt;}
._14{width:38.688000pt;}
._12{width:40.320000pt;}
._17{width:239.011733pt;}
._13{width:251.456533pt;}
._9{width:401.056000pt;}
._1{width:403.311467pt;}
.fsc{font-size:20.000000pt;}
.fsb{font-size:27.833067pt;}
.fse{font-size:28.498652pt;}
.fsa{font-size:29.866667pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:33.600000pt;}
.fs9{font-size:36.400000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsd{font-size:49.147875pt;}
.fs8{font-size:52.000000pt;}
.fsf{font-size:61.333333pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:7.999467pt;}
.yb3{bottom:8.000800pt;}
.yc7{bottom:13.374400pt;}
.yb4{bottom:13.375867pt;}
.ybb{bottom:46.144667pt;}
.y55{bottom:46.430133pt;}
.y2{bottom:46.953600pt;}
.y182{bottom:88.085333pt;}
.y1c3{bottom:88.149333pt;}
.y24{bottom:88.818933pt;}
.ya4{bottom:89.047467pt;}
.y88{bottom:89.050133pt;}
.y72{bottom:89.060800pt;}
.y150{bottom:90.762133pt;}
.y181{bottom:101.418667pt;}
.y1c2{bottom:101.482667pt;}
.y14f{bottom:103.423467pt;}
.y87{bottom:103.714133pt;}
.y10d{bottom:103.719467pt;}
.y71{bottom:103.724800pt;}
.ya3{bottom:103.727467pt;}
.y54{bottom:107.624667pt;}
.y180{bottom:114.752000pt;}
.y1c1{bottom:114.816000pt;}
.y14e{bottom:116.084800pt;}
.yb6{bottom:118.380800pt;}
.yd0{bottom:118.383467pt;}
.y86{bottom:118.386133pt;}
.y70{bottom:118.388800pt;}
.ya2{bottom:118.391467pt;}
.y53{bottom:119.624667pt;}
.yb2{bottom:125.177333pt;}
.y17f{bottom:128.085333pt;}
.y1c0{bottom:128.149333pt;}
.y14d{bottom:128.746133pt;}
.yb1{bottom:129.469867pt;}
.yaf{bottom:130.469867pt;}
.y52{bottom:131.624667pt;}
.yb5{bottom:133.044800pt;}
.ycf{bottom:133.047467pt;}
.y85{bottom:133.050133pt;}
.y6f{bottom:133.052800pt;}
.ya1{bottom:133.055467pt;}
.yae{bottom:133.178133pt;}
.y23{bottom:133.610267pt;}
.yb0{bottom:138.555373pt;}
.y14c{bottom:141.407467pt;}
.y17e{bottom:141.418667pt;}
.y1bf{bottom:141.482667pt;}
.y51{bottom:143.624667pt;}
.y22{bottom:145.610267pt;}
.y84{bottom:147.714133pt;}
.y6e{bottom:147.716800pt;}
.ya0{bottom:147.719467pt;}
.yad{bottom:147.730133pt;}
.y14b{bottom:154.068800pt;}
.y17d{bottom:154.752000pt;}
.y1be{bottom:154.816000pt;}
.y50{bottom:155.624667pt;}
.y21{bottom:157.610267pt;}
.y6d{bottom:162.380800pt;}
.y83{bottom:162.383467pt;}
.yac{bottom:162.394133pt;}
.y14a{bottom:166.762133pt;}
.y17c{bottom:168.085333pt;}
.y1bd{bottom:168.149333pt;}
.y20{bottom:169.610267pt;}
.y4e{bottom:171.555200pt;}
.y82{bottom:177.047467pt;}
.yab{bottom:177.058133pt;}
.y6c{bottom:177.060800pt;}
.y149{bottom:179.423467pt;}
.y17b{bottom:181.418667pt;}
.y1bc{bottom:181.482667pt;}
.y4d{bottom:183.555200pt;}
.ye2{bottom:183.712000pt;}
.y1f{bottom:184.276933pt;}
.ye0{bottom:188.003067pt;}
.yde{bottom:189.003067pt;}
.ye1{bottom:191.711467pt;}
.y81{bottom:191.722133pt;}
.y6b{bottom:191.724800pt;}
.yce{bottom:191.730133pt;}
.y148{bottom:192.084800pt;}
.y1bb{bottom:194.816000pt;}
.y1e{bottom:196.276933pt;}
.ydf{bottom:197.088573pt;}
.y1a{bottom:198.943600pt;}
.y147{bottom:204.746133pt;}
.y80{bottom:206.386133pt;}
.y6a{bottom:206.388800pt;}
.ycd{bottom:206.394133pt;}
.y1ba{bottom:208.149333pt;}
.y1d{bottom:208.276933pt;}
.y19{bottom:210.943600pt;}
.y146{bottom:217.407467pt;}
.y7f{bottom:221.050133pt;}
.y69{bottom:221.052800pt;}
.ycc{bottom:221.058133pt;}
.y1b9{bottom:221.482667pt;}
.y18{bottom:222.943600pt;}
.y145{bottom:230.068800pt;}
.y1b8{bottom:234.816000pt;}
.y17{bottom:234.943600pt;}
.y7e{bottom:235.714133pt;}
.y68{bottom:235.716800pt;}
.ycb{bottom:235.722133pt;}
.y17a{bottom:238.485333pt;}
.y144{bottom:242.730133pt;}
.y16{bottom:246.943600pt;}
.y1b7{bottom:248.149333pt;}
.y67{bottom:250.380800pt;}
.y7d{bottom:250.386133pt;}
.y10c{bottom:250.394133pt;}
.y179{bottom:251.818667pt;}
.y143{bottom:255.402133pt;}
.y1b6{bottom:261.482667pt;}
.y15{bottom:261.610267pt;}
.y9f{bottom:265.047467pt;}
.y66{bottom:265.050133pt;}
.y10b{bottom:265.058133pt;}
.y178{bottom:265.152000pt;}
.y142{bottom:268.122133pt;}
.y14{bottom:273.610267pt;}
.y1b5{bottom:274.816000pt;}
.y65{bottom:279.714133pt;}
.y9e{bottom:279.719467pt;}
.y10a{bottom:279.722133pt;}
.y141{bottom:280.783467pt;}
.y13{bottom:285.610267pt;}
.y1b4{bottom:288.149333pt;}
.y177{bottom:291.712000pt;}
.y140{bottom:293.444800pt;}
.y64{bottom:294.378133pt;}
.yca{bottom:294.380800pt;}
.y7c{bottom:294.383467pt;}
.y109{bottom:294.386133pt;}
.yaa{bottom:294.402133pt;}
.ydd{bottom:294.404800pt;}
.y12{bottom:297.610267pt;}
.y1b3{bottom:301.482667pt;}
.y176{bottom:304.373333pt;}
.y13f{bottom:306.106133pt;}
.y63{bottom:309.047467pt;}
.y108{bottom:309.050133pt;}
.yc9{bottom:309.055467pt;}
.ya9{bottom:309.066133pt;}
.ydc{bottom:309.068800pt;}
.y11{bottom:312.276933pt;}
.y1b2{bottom:314.816000pt;}
.y13e{bottom:318.767467pt;}
.y107{bottom:323.714133pt;}
.y7b{bottom:323.716800pt;}
.y9d{bottom:323.719467pt;}
.y62{bottom:323.727467pt;}
.ya8{bottom:323.730133pt;}
.ydb{bottom:323.732800pt;}
.y10{bottom:324.276933pt;}
.y175{bottom:325.040000pt;}
.y1b1{bottom:328.149333pt;}
.y13d{bottom:331.428800pt;}
.yf{bottom:336.276933pt;}
.y7a{bottom:338.380800pt;}
.y9c{bottom:338.383467pt;}
.y61{bottom:338.391467pt;}
.ya7{bottom:338.394133pt;}
.yda{bottom:338.396800pt;}
.y1b0{bottom:341.482667pt;}
.y13c{bottom:344.090133pt;}
.y1c{bottom:348.276933pt;}
.ye{bottom:350.943600pt;}
.y9b{bottom:353.047467pt;}
.y79{bottom:353.052800pt;}
.y60{bottom:353.055467pt;}
.ya6{bottom:353.058133pt;}
.yd9{bottom:353.060800pt;}
.y1af{bottom:354.816000pt;}
.y13b{bottom:356.751467pt;}
.y1b{bottom:360.276933pt;}
.yd{bottom:362.943600pt;}
.y106{bottom:367.714133pt;}
.y78{bottom:367.716800pt;}
.y5f{bottom:367.719467pt;}
.y9a{bottom:367.722133pt;}
.yd8{bottom:367.724800pt;}
.y1ae{bottom:368.149333pt;}
.y13a{bottom:369.412800pt;}
.y174{bottom:371.706667pt;}
.yc{bottom:374.943600pt;}
.y1ad{bottom:381.482667pt;}
.y139{bottom:382.074133pt;}
.y77{bottom:382.380800pt;}
.y5e{bottom:382.383467pt;}
.y99{bottom:382.386133pt;}
.yd7{bottom:382.388800pt;}
.yb{bottom:386.943600pt;}
.y173{bottom:392.373333pt;}
.y138{bottom:394.735467pt;}
.y1ac{bottom:394.816000pt;}
.y5d{bottom:397.047467pt;}
.y98{bottom:397.050133pt;}
.yd6{bottom:397.052800pt;}
.y76{bottom:397.063467pt;}
.ya{bottom:398.943600pt;}
.y137{bottom:407.418133pt;}
.y1ab{bottom:408.149333pt;}
.y9{bottom:410.943600pt;}
.y97{bottom:411.714133pt;}
.y5c{bottom:411.716800pt;}
.y75{bottom:411.727467pt;}
.y136{bottom:420.079467pt;}
.y1aa{bottom:421.482667pt;}
.y5b{bottom:426.380800pt;}
.yc8{bottom:426.383467pt;}
.ya5{bottom:426.386133pt;}
.y96{bottom:426.388800pt;}
.y74{bottom:426.391467pt;}
.y135{bottom:432.740800pt;}
.y1a9{bottom:434.816000pt;}
.y172{bottom:439.125333pt;}
.y4f{bottom:441.047467pt;}
.y3c{bottom:441.050133pt;}
.y95{bottom:441.052800pt;}
.y5a{bottom:441.055467pt;}
.y134{bottom:445.402133pt;}
.yc5{bottom:447.712000pt;}
.y1a8{bottom:448.149333pt;}
.y171{bottom:451.786667pt;}
.yc3{bottom:452.003200pt;}
.yc1{bottom:453.003200pt;}
.yc4{bottom:455.711467pt;}
.y3b{bottom:455.714133pt;}
.y94{bottom:455.716800pt;}
.y59{bottom:455.719467pt;}
.yc0{bottom:455.724800pt;}
.y133{bottom:458.063467pt;}
.yc2{bottom:461.088706pt;}
.y1a7{bottom:461.482667pt;}
.y170{bottom:464.448000pt;}
.y3a{bottom:470.378133pt;}
.y93{bottom:470.380800pt;}
.y58{bottom:470.383467pt;}
.ybf{bottom:470.388800pt;}
.yd5{bottom:470.395467pt;}
.y132{bottom:470.740800pt;}
.y1a6{bottom:474.816000pt;}
.y16f{bottom:477.109333pt;}
.y131{bottom:483.402133pt;}
.y92{bottom:485.044800pt;}
.y57{bottom:485.047467pt;}
.y39{bottom:485.050133pt;}
.ybe{bottom:485.052800pt;}
.yd4{bottom:485.059467pt;}
.y1a5{bottom:488.149333pt;}
.y16e{bottom:489.770667pt;}
.y130{bottom:496.074133pt;}
.y56{bottom:499.711467pt;}
.y38{bottom:499.714133pt;}
.ybd{bottom:499.716800pt;}
.yd3{bottom:499.723467pt;}
.y73{bottom:499.724800pt;}
.y1a4{bottom:501.482667pt;}
.y16d{bottom:502.432000pt;}
.y4c{bottom:505.853867pt;}
.y12f{bottom:508.735467pt;}
.y37{bottom:514.380800pt;}
.yd2{bottom:514.387467pt;}
.y1a3{bottom:514.816000pt;}
.y16c{bottom:515.093333pt;}
.y12e{bottom:521.412800pt;}
.yba{bottom:521.580267pt;}
.y4b{bottom:523.182867pt;}
.y16b{bottom:527.754667pt;}
.y1a2{bottom:528.149333pt;}
.ybc{bottom:529.044800pt;}
.y105{bottom:529.047467pt;}
.y36{bottom:529.050133pt;}
.yd1{bottom:529.051467pt;}
.y12d{bottom:534.074133pt;}
.yb9{bottom:534.252267pt;}
.y16a{bottom:540.416000pt;}
.y4a{bottom:540.568200pt;}
.y91{bottom:540.926667pt;}
.y1a1{bottom:541.482667pt;}
.y35{bottom:543.714133pt;}
.y104{bottom:543.724800pt;}
.y12c{bottom:546.735467pt;}
.yb8{bottom:546.913600pt;}
.y169{bottom:553.077333pt;}
.y90{bottom:553.604000pt;}
.y1a0{bottom:554.816000pt;}
.y49{bottom:557.897200pt;}
.y34{bottom:558.386133pt;}
.y103{bottom:558.388800pt;}
.y12b{bottom:559.407467pt;}
.yb7{bottom:559.574933pt;}
.ye9{bottom:564.580133pt;}
.y168{bottom:565.738667pt;}
.y8f{bottom:566.265333pt;}
.y19f{bottom:568.149333pt;}
.y12a{bottom:572.068800pt;}
.y33{bottom:573.050133pt;}
.y102{bottom:573.052800pt;}
.y48{bottom:575.226200pt;}
.ye8{bottom:577.246800pt;}
.y167{bottom:578.400000pt;}
.y8e{bottom:578.926667pt;}
.y19e{bottom:581.482667pt;}
.y129{bottom:584.767467pt;}
.y32{bottom:587.714133pt;}
.y101{bottom:587.716800pt;}
.ye7{bottom:589.918800pt;}
.y166{bottom:591.061333pt;}
.y8d{bottom:591.593333pt;}
.y47{bottom:592.555200pt;}
.y19d{bottom:594.816000pt;}
.y128{bottom:597.428800pt;}
.y100{bottom:602.380800pt;}
.y31{bottom:602.407467pt;}
.ye6{bottom:602.580133pt;}
.y165{bottom:603.722667pt;}
.y8c{bottom:604.260000pt;}
.y19c{bottom:608.149333pt;}
.y46{bottom:609.884200pt;}
.y127{bottom:610.090133pt;}
.ye5{bottom:615.246800pt;}
.y164{bottom:616.384000pt;}
.y8b{bottom:616.932000pt;}
.yff{bottom:617.066133pt;}
.y30{bottom:617.071467pt;}
.y1dc{bottom:620.827333pt;}
.y19b{bottom:621.482667pt;}
.y126{bottom:622.751467pt;}
.y45{bottom:627.213200pt;}
.ye4{bottom:627.913467pt;}
.y163{bottom:629.045333pt;}
.y8a{bottom:629.593333pt;}
.yfe{bottom:631.730133pt;}
.y2f{bottom:631.735467pt;}
.y1db{bottom:634.160667pt;}
.y19a{bottom:634.816000pt;}
.y125{bottom:635.412800pt;}
.ye3{bottom:640.574800pt;}
.y162{bottom:641.728000pt;}
.y89{bottom:642.254667pt;}
.y44{bottom:644.542200pt;}
.yfd{bottom:646.394133pt;}
.y2e{bottom:646.399467pt;}
.y1da{bottom:647.494000pt;}
.y124{bottom:648.074133pt;}
.y199{bottom:648.149333pt;}
.y161{bottom:654.389333pt;}
.y123{bottom:660.735467pt;}
.y1d9{bottom:660.827333pt;}
.yfc{bottom:661.058133pt;}
.y2d{bottom:661.063467pt;}
.y198{bottom:661.482667pt;}
.y43{bottom:661.871200pt;}
.y160{bottom:667.050667pt;}
.y122{bottom:673.407467pt;}
.y1d8{bottom:674.160667pt;}
.y197{bottom:674.816000pt;}
.yfb{bottom:675.722133pt;}
.y2c{bottom:675.727467pt;}
.y42{bottom:679.200200pt;}
.y15f{bottom:679.712000pt;}
.y121{bottom:686.068800pt;}
.y1d7{bottom:687.494000pt;}
.y196{bottom:688.149333pt;}
.yfa{bottom:690.386133pt;}
.y2b{bottom:690.391467pt;}
.y15e{bottom:692.405333pt;}
.y41{bottom:696.529200pt;}
.y120{bottom:698.735467pt;}
.y1d6{bottom:700.827333pt;}
.y195{bottom:701.482667pt;}
.yf9{bottom:705.050133pt;}
.y2a{bottom:705.055467pt;}
.y15d{bottom:705.066667pt;}
.y11f{bottom:711.407467pt;}
.y40{bottom:713.858200pt;}
.y1d5{bottom:714.160667pt;}
.y194{bottom:714.816000pt;}
.y15c{bottom:717.728000pt;}
.yf8{bottom:719.714133pt;}
.y29{bottom:719.719467pt;}
.y11e{bottom:724.068800pt;}
.y1d4{bottom:727.494000pt;}
.y193{bottom:728.149333pt;}
.y15b{bottom:730.389333pt;}
.y3f{bottom:731.187200pt;}
.y28{bottom:734.383467pt;}
.yf7{bottom:734.386133pt;}
.y11d{bottom:736.735467pt;}
.y1d3{bottom:740.827333pt;}
.y192{bottom:741.482667pt;}
.y15a{bottom:743.050667pt;}
.y3e{bottom:748.516200pt;}
.y27{bottom:749.047467pt;}
.yf6{bottom:749.050133pt;}
.y11c{bottom:749.466133pt;}
.y1d2{bottom:754.160667pt;}
.y191{bottom:754.816000pt;}
.y159{bottom:755.712000pt;}
.y11b{bottom:762.127467pt;}
.y26{bottom:763.714133pt;}
.y3d{bottom:765.845200pt;}
.y1d1{bottom:767.494000pt;}
.y190{bottom:768.149333pt;}
.y158{bottom:768.373333pt;}
.y11a{bottom:774.788800pt;}
.y25{bottom:778.374933pt;}
.yf5{bottom:778.380800pt;}
.y1d0{bottom:780.827333pt;}
.y18f{bottom:781.482667pt;}
.y119{bottom:787.450133pt;}
.y157{bottom:789.040000pt;}
.yf4{bottom:793.060800pt;}
.y1cf{bottom:794.160667pt;}
.y18e{bottom:794.816000pt;}
.y118{bottom:800.111467pt;}
.y1ce{bottom:807.494000pt;}
.yf3{bottom:807.724800pt;}
.y18d{bottom:808.149333pt;}
.y117{bottom:812.772800pt;}
.y8{bottom:813.376400pt;}
.y1cd{bottom:820.827333pt;}
.y18c{bottom:821.482667pt;}
.yf2{bottom:822.388800pt;}
.y116{bottom:825.434133pt;}
.y1cc{bottom:834.160667pt;}
.y18b{bottom:834.816000pt;}
.y156{bottom:835.712000pt;}
.yf1{bottom:837.052800pt;}
.y7{bottom:837.381733pt;}
.y115{bottom:838.095467pt;}
.y1cb{bottom:847.494000pt;}
.y18a{bottom:848.149333pt;}
.y155{bottom:848.373333pt;}
.y114{bottom:850.756800pt;}
.yf0{bottom:851.716800pt;}
.y1ca{bottom:860.827333pt;}
.y6{bottom:861.387067pt;}
.y189{bottom:861.482667pt;}
.y113{bottom:863.418133pt;}
.yef{bottom:866.380800pt;}
.y154{bottom:869.040000pt;}
.y1c9{bottom:874.160667pt;}
.y188{bottom:874.816000pt;}
.y112{bottom:876.079467pt;}
.yee{bottom:881.047467pt;}
.y1c8{bottom:887.494000pt;}
.y187{bottom:888.149333pt;}
.y111{bottom:888.740800pt;}
.yed{bottom:895.719467pt;}
.y5{bottom:898.421600pt;}
.y1c7{bottom:900.827333pt;}
.y110{bottom:901.402133pt;}
.y186{bottom:901.482667pt;}
.yec{bottom:910.383467pt;}
.y10f{bottom:914.063467pt;}
.y1c6{bottom:914.160667pt;}
.y185{bottom:914.816000pt;}
.y153{bottom:915.717333pt;}
.yeb{bottom:925.047467pt;}
.y1c5{bottom:927.494000pt;}
.y184{bottom:928.149333pt;}
.y152{bottom:928.378667pt;}
.y4{bottom:929.088267pt;}
.y10e{bottom:938.068800pt;}
.yea{bottom:939.711467pt;}
.y1c4{bottom:940.827333pt;}
.y151{bottom:941.040000pt;}
.y183{bottom:941.482667pt;}
.y1{bottom:976.318933pt;}
.y3{bottom:999.565333pt;}
.h1b{height:14.740000pt;}
.h1a{height:20.512970pt;}
.h1f{height:20.773187pt;}
.h1e{height:21.269946pt;}
.h1c{height:21.333333pt;}
.h13{height:31.098667pt;}
.h2{height:31.658667pt;}
.h2d{height:35.328000pt;}
.h19{height:35.376000pt;}
.ha{height:35.472000pt;}
.h7{height:35.541333pt;}
.hb{height:35.568000pt;}
.h3{height:35.616000pt;}
.h21{height:35.750095pt;}
.h17{height:35.792762pt;}
.h20{height:35.803429pt;}
.h18{height:35.814095pt;}
.h16{height:35.824762pt;}
.h1d{height:36.681477pt;}
.h10{height:38.584000pt;}
.h28{height:39.534933pt;}
.h2c{height:39.577600pt;}
.h11{height:39.597509pt;}
.h2a{height:39.662933pt;}
.h2f{height:39.726933pt;}
.h2b{height:39.748267pt;}
.h29{height:39.769600pt;}
.h2e{height:39.812267pt;}
.hc{height:41.513067pt;}
.h25{height:41.545067pt;}
.h15{height:41.566400pt;}
.h24{height:41.566933pt;}
.h26{height:41.577067pt;}
.h14{height:41.587733pt;}
.hd{height:41.598400pt;}
.he{height:41.609067pt;}
.hf{height:41.619733pt;}
.h9{height:41.620267pt;}
.h12{height:41.630400pt;}
.h8{height:41.643733pt;}
.h22{height:41.856000pt;}
.h23{height:41.867200pt;}
.h27{height:45.509333pt;}
.h4{height:49.024000pt;}
.h6{height:61.824000pt;}
.h5{height:79.146667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w4{width:122.668000pt;}
.w3{width:124.417333pt;}
.w2{width:130.477333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:8.132667pt;}
.x1a{left:9.833200pt;}
.x14{left:13.799333pt;}
.x1b{left:15.499867pt;}
.x19{left:54.291467pt;}
.xa{left:64.252000pt;}
.x3{left:68.031467pt;}
.x26{left:69.585333pt;}
.x25{left:70.812000pt;}
.xb{left:77.585200pt;}
.xe{left:81.364800pt;}
.x27{left:85.585333pt;}
.x2c{left:89.364800pt;}
.x7{left:91.605733pt;}
.x24{left:226.310667pt;}
.x9{left:258.803333pt;}
.x18{left:260.493867pt;}
.x2{left:263.000000pt;}
.x16{left:266.993867pt;}
.x22{left:269.649333pt;}
.x23{left:271.132000pt;}
.x17{left:278.495881pt;}
.x1c{left:382.494000pt;}
.xd{left:404.429333pt;}
.x2a{left:405.660000pt;}
.x2b{left:406.886667pt;}
.x4{left:408.018000pt;}
.x28{left:409.756000pt;}
.x10{left:415.422667pt;}
.xc{left:417.761867pt;}
.x6{left:421.526133pt;}
.x29{left:425.756000pt;}
.x11{left:427.091680pt;}
.x2d{left:429.546133pt;}
.x12{left:457.381067pt;}
.xf{left:466.214400pt;}
.x5{left:514.238000pt;}
.x20{left:529.586667pt;}
.x1e{left:532.003467pt;}
.x15{left:538.684000pt;}
.x1d{left:550.172480pt;}
.x1f{left:580.753467pt;}
.x21{left:652.253467pt;}
.x8{left:656.780533pt;}
.x1{left:660.348533pt;}
}




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