
    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_5ab63f2aa54bcf72858713f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_00e54a316020922d3bc6c089.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_e01243361353a0629265982f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_8ac96f16a5296b87607d9593.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_ef316f29bf1eb692a7baa8f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_654cc41737f726ec5fa7e6d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_b7a6058f753c42aa5a2d4c33.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_54709ef98fa16113cc30f6a6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3aba706fcf1aebe2fcc93d7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_c7c47d2c0c30fe223a797e29.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925293;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_b710c06ad9f605b7f64acda9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_025dc9312b88602bc2db9a56.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.681152;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_f238849b6d5372372a001ec9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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_1f7027480f3214d3e45e88eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893066;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_32f0fea16cc363d048f1435c.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-11.697000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.620000px;}
.v6{vertical-align:22.610400px;}
.v4{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.v5{vertical-align:32.976000px;}
.ls68{letter-spacing:-7.740000px;}
.ls96{letter-spacing:-2.640000px;}
.ls6e{letter-spacing:-2.280000px;}
.ls78{letter-spacing:-1.560000px;}
.ls67{letter-spacing:-0.960000px;}
.ls15{letter-spacing:-0.780000px;}
.ls9e{letter-spacing:-0.480000px;}
.ls9c{letter-spacing:-0.384000px;}
.ls69{letter-spacing:-0.360000px;}
.ls79{letter-spacing:-0.300000px;}
.ls4d{letter-spacing:-0.240000px;}
.ls9d{letter-spacing:-0.192000px;}
.ls16{letter-spacing:-0.180000px;}
.ls6a{letter-spacing:-0.144000px;}
.ls38{letter-spacing:-0.120000px;}
.ls3a{letter-spacing:-0.104940px;}
.ls58{letter-spacing:-0.096000px;}
.ls39{letter-spacing:-0.060000px;}
.ls71{letter-spacing:-0.048000px;}
.ls14{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls5c{letter-spacing:0.048000px;}
.ls1c{letter-spacing:0.060000px;}
.ls82{letter-spacing:0.096000px;}
.ls2d{letter-spacing:0.120000px;}
.ls5a{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.192000px;}
.ls24{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.241800px;}
.ls93{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.300000px;}
.ls5f{letter-spacing:0.336000px;}
.ls27{letter-spacing:0.360000px;}
.ls56{letter-spacing:0.384000px;}
.ls29{letter-spacing:0.420000px;}
.ls7c{letter-spacing:0.432000px;}
.ls37{letter-spacing:0.480000px;}
.ls64{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.540000px;}
.ls7a{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.600000px;}
.ls5b{letter-spacing:0.624000px;}
.ls3c{letter-spacing:0.660000px;}
.ls5e{letter-spacing:0.672000px;}
.ls30{letter-spacing:0.720000px;}
.ls87{letter-spacing:0.768000px;}
.ls8{letter-spacing:0.780000px;}
.ls7d{letter-spacing:0.816000px;}
.ls23{letter-spacing:0.840000px;}
.ls7e{letter-spacing:0.864000px;}
.ls35{letter-spacing:0.900000px;}
.ls8a{letter-spacing:0.912000px;}
.ls1a{letter-spacing:0.960000px;}
.ls4{letter-spacing:1.020000px;}
.ls57{letter-spacing:1.056000px;}
.ls36{letter-spacing:1.080000px;}
.ls7b{letter-spacing:1.104000px;}
.ls53{letter-spacing:1.140000px;}
.ls89{letter-spacing:1.152000px;}
.ls1f{letter-spacing:1.200000px;}
.ls83{letter-spacing:1.248000px;}
.lse{letter-spacing:1.260000px;}
.ls8e{letter-spacing:1.296000px;}
.lsb{letter-spacing:1.320000px;}
.ls20{letter-spacing:1.380000px;}
.ls80{letter-spacing:1.392000px;}
.ls7{letter-spacing:1.440000px;}
.ls8f{letter-spacing:1.488000px;}
.ls5{letter-spacing:1.500000px;}
.ls7f{letter-spacing:1.536000px;}
.ls3{letter-spacing:1.560000px;}
.ls22{letter-spacing:1.620000px;}
.ls8b{letter-spacing:1.632000px;}
.ls2{letter-spacing:1.680000px;}
.ls98{letter-spacing:1.728000px;}
.ls28{letter-spacing:1.740000px;}
.ls85{letter-spacing:1.776000px;}
.ls13{letter-spacing:1.800000px;}
.ls90{letter-spacing:1.824000px;}
.ls11{letter-spacing:1.860000px;}
.ls8d{letter-spacing:1.872000px;}
.ls2e{letter-spacing:1.920000px;}
.ls9{letter-spacing:1.980000px;}
.lsd{letter-spacing:2.040000px;}
.ls99{letter-spacing:2.064000px;}
.ls55{letter-spacing:2.100000px;}
.ls3b{letter-spacing:2.160000px;}
.ls1b{letter-spacing:2.220000px;}
.ls8c{letter-spacing:2.256000px;}
.ls42{letter-spacing:2.280000px;}
.ls92{letter-spacing:2.304000px;}
.ls2b{letter-spacing:2.340000px;}
.ls84{letter-spacing:2.352000px;}
.lsa{letter-spacing:2.400000px;}
.ls18{letter-spacing:2.460000px;}
.ls88{letter-spacing:2.496000px;}
.ls5d{letter-spacing:2.520000px;}
.ls81{letter-spacing:2.544000px;}
.ls26{letter-spacing:2.580000px;}
.ls91{letter-spacing:2.592000px;}
.ls25{letter-spacing:2.640000px;}
.ls31{letter-spacing:2.700000px;}
.ls9a{letter-spacing:2.736000px;}
.ls50{letter-spacing:2.760000px;}
.ls95{letter-spacing:2.784000px;}
.ls32{letter-spacing:2.820000px;}
.ls43{letter-spacing:2.880000px;}
.ls86{letter-spacing:2.928000px;}
.ls10{letter-spacing:2.940000px;}
.ls9b{letter-spacing:2.976000px;}
.ls4f{letter-spacing:3.000000px;}
.ls59{letter-spacing:3.060000px;}
.ls54{letter-spacing:3.120000px;}
.ls19{letter-spacing:3.180000px;}
.ls2c{letter-spacing:3.240000px;}
.ls1e{letter-spacing:3.300000px;}
.ls6{letter-spacing:3.360000px;}
.ls6b{letter-spacing:3.540000px;}
.ls51{letter-spacing:3.600000px;}
.ls44{letter-spacing:3.660000px;}
.ls17{letter-spacing:3.780000px;}
.ls6c{letter-spacing:3.840000px;}
.lsf{letter-spacing:3.900000px;}
.ls2f{letter-spacing:3.960000px;}
.ls52{letter-spacing:4.080000px;}
.ls72{letter-spacing:4.260000px;}
.ls97{letter-spacing:4.320000px;}
.ls1d{letter-spacing:4.380000px;}
.ls94{letter-spacing:4.512000px;}
.ls61{letter-spacing:4.560000px;}
.ls6d{letter-spacing:4.680000px;}
.ls6f{letter-spacing:4.740000px;}
.ls70{letter-spacing:4.800000px;}
.ls33{letter-spacing:4.860000px;}
.ls3f{letter-spacing:4.980000px;}
.ls4e{letter-spacing:5.100000px;}
.ls76{letter-spacing:5.160000px;}
.ls62{letter-spacing:5.280000px;}
.ls3d{letter-spacing:5.340000px;}
.ls65{letter-spacing:5.700000px;}
.ls63{letter-spacing:5.880000px;}
.ls3e{letter-spacing:6.720000px;}
.ls66{letter-spacing:6.780000px;}
.ls73{letter-spacing:7.035000px;}
.ls77{letter-spacing:7.620000px;}
.ls74{letter-spacing:8.520000px;}
.ls60{letter-spacing:8.760000px;}
.ls75{letter-spacing:13.500000px;}
.ls0{letter-spacing:59.532876px;}
.ls4a{letter-spacing:107.110800px;}
.ls48{letter-spacing:147.095400px;}
.ls46{letter-spacing:149.001504px;}
.ls49{letter-spacing:184.443000px;}
.ls4c{letter-spacing:196.443000px;}
.ls47{letter-spacing:203.217000px;}
.ls4b{letter-spacing:205.970400px;}
.ls40{letter-spacing:279.216000px;}
.ls41{letter-spacing:289.536000px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws80{word-spacing:-21.780000px;}
.ws7f{word-spacing:-20.700000px;}
.ws62{word-spacing:-20.100000px;}
.ws9a{word-spacing:-19.680000px;}
.ws14{word-spacing:-19.380000px;}
.wsa7{word-spacing:-19.260000px;}
.ws5{word-spacing:-18.900000px;}
.ws79{word-spacing:-18.780000px;}
.wsae{word-spacing:-18.660000px;}
.ws16{word-spacing:-18.300000px;}
.ws99{word-spacing:-17.940000px;}
.wsa0{word-spacing:-17.880000px;}
.wsac{word-spacing:-17.580000px;}
.wsa9{word-spacing:-17.520000px;}
.ws15{word-spacing:-17.400000px;}
.ws9b{word-spacing:-17.340000px;}
.wsad{word-spacing:-17.280000px;}
.ws12{word-spacing:-17.220000px;}
.wsa2{word-spacing:-17.160000px;}
.wsa8{word-spacing:-16.920000px;}
.ws98{word-spacing:-16.800000px;}
.ws35{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.680000px;}
.ws97{word-spacing:-16.620000px;}
.ws90{word-spacing:-16.440000px;}
.ws17{word-spacing:-16.380000px;}
.ws4{word-spacing:-16.260000px;}
.ws34{word-spacing:-16.200000px;}
.ws78{word-spacing:-16.140000px;}
.ws37{word-spacing:-16.020000px;}
.ws7a{word-spacing:-15.960000px;}
.ws84{word-spacing:-15.900000px;}
.ws96{word-spacing:-15.840000px;}
.wsa1{word-spacing:-15.780000px;}
.ws91{word-spacing:-15.660000px;}
.ws9f{word-spacing:-15.540000px;}
.ws81{word-spacing:-15.480000px;}
.ws1a{word-spacing:-15.420000px;}
.ws82{word-spacing:-15.360000px;}
.ws36{word-spacing:-15.240000px;}
.ws13{word-spacing:-15.060000px;}
.ws6{word-spacing:-15.000000px;}
.ws18{word-spacing:-14.940000px;}
.wsbb{word-spacing:-14.928000px;}
.wsab{word-spacing:-14.880000px;}
.wsaa{word-spacing:-14.820000px;}
.wsbd{word-spacing:-14.400000px;}
.ws83{word-spacing:-14.040000px;}
.wscd{word-spacing:-13.680000px;}
.ws55{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.344000px;}
.wsbc{word-spacing:-13.296000px;}
.wsd0{word-spacing:-12.864000px;}
.wscf{word-spacing:-12.720000px;}
.ws7{word-spacing:-12.510000px;}
.wsba{word-spacing:-12.432000px;}
.wsbf{word-spacing:-12.288000px;}
.wsce{word-spacing:-12.144000px;}
.ws38{word-spacing:-12.000000px;}
.ws56{word-spacing:-11.760000px;}
.ws1{word-spacing:-10.210662px;}
.wsbe{word-spacing:-9.360000px;}
.ws19{word-spacing:-8.640060px;}
.ws2{word-spacing:-7.293330px;}
.ws57{word-spacing:-6.996000px;}
.ws85{word-spacing:-6.780000px;}
.ws7b{word-spacing:-5.280000px;}
.wsaf{word-spacing:-4.260000px;}
.ws9e{word-spacing:-2.940000px;}
.wsa{word-spacing:-2.886000px;}
.ws7c{word-spacing:-2.700000px;}
.ws22{word-spacing:-2.640000px;}
.wsb2{word-spacing:-2.580000px;}
.wsc7{word-spacing:-2.496000px;}
.ws1d{word-spacing:-2.400000px;}
.ws21{word-spacing:-2.220000px;}
.wsd4{word-spacing:-2.064000px;}
.ws5e{word-spacing:-1.980000px;}
.wsb4{word-spacing:-1.920000px;}
.wsa6{word-spacing:-1.860000px;}
.wsd2{word-spacing:-1.776000px;}
.ws41{word-spacing:-1.740000px;}
.wsd7{word-spacing:-1.680000px;}
.ws20{word-spacing:-1.620000px;}
.ws24{word-spacing:-1.380000px;}
.ws2f{word-spacing:-1.320000px;}
.wsda{word-spacing:-1.152000px;}
.ws8c{word-spacing:-1.080000px;}
.ws43{word-spacing:-1.020000px;}
.ws42{word-spacing:-0.960000px;}
.ws30{word-spacing:-0.900000px;}
.ws4e{word-spacing:-0.864000px;}
.wsa5{word-spacing:-0.780000px;}
.ws5c{word-spacing:-0.720000px;}
.ws95{word-spacing:-0.660000px;}
.ws40{word-spacing:-0.600000px;}
.wsb3{word-spacing:-0.540000px;}
.wsc6{word-spacing:-0.480000px;}
.wsc0{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.420000px;}
.ws9d{word-spacing:-0.360000px;}
.ws28{word-spacing:-0.300000px;}
.wscb{word-spacing:-0.288000px;}
.ws92{word-spacing:-0.240000px;}
.ws2e{word-spacing:-0.180000px;}
.ws67{word-spacing:-0.120000px;}
.wsc5{word-spacing:-0.096000px;}
.ws29{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:0.060000px;}
.wsd6{word-spacing:0.096000px;}
.ws61{word-spacing:0.120000px;}
.ws5f{word-spacing:0.144000px;}
.wsb{word-spacing:0.180000px;}
.ws59{word-spacing:0.240000px;}
.wsd3{word-spacing:0.336000px;}
.ws1e{word-spacing:0.360000px;}
.wscc{word-spacing:0.384000px;}
.ws89{word-spacing:0.480000px;}
.ws77{word-spacing:0.528000px;}
.ws33{word-spacing:0.660000px;}
.ws6e{word-spacing:0.672000px;}
.ws94{word-spacing:0.720000px;}
.ws70{word-spacing:0.768000px;}
.ws58{word-spacing:0.840000px;}
.ws71{word-spacing:0.912000px;}
.ws6f{word-spacing:0.960000px;}
.ws7d{word-spacing:1.020000px;}
.ws73{word-spacing:1.104000px;}
.ws44{word-spacing:1.140000px;}
.ws8a{word-spacing:1.200000px;}
.wsd5{word-spacing:1.248000px;}
.ws11{word-spacing:1.260000px;}
.wsc3{word-spacing:1.296000px;}
.ws64{word-spacing:1.320000px;}
.ws6a{word-spacing:1.380000px;}
.wsd9{word-spacing:1.392000px;}
.wsf{word-spacing:1.440000px;}
.ws3e{word-spacing:1.500000px;}
.ws5d{word-spacing:1.560000px;}
.wsc9{word-spacing:1.584000px;}
.wsb8{word-spacing:1.680000px;}
.wsde{word-spacing:1.728000px;}
.wsc1{word-spacing:1.776000px;}
.ws10{word-spacing:1.800000px;}
.wsb7{word-spacing:1.860000px;}
.ws8d{word-spacing:1.920000px;}
.ws23{word-spacing:1.980000px;}
.wsc4{word-spacing:2.016000px;}
.ws1c{word-spacing:2.040000px;}
.ws54{word-spacing:2.112000px;}
.ws5b{word-spacing:2.160000px;}
.wsca{word-spacing:2.208000px;}
.ws69{word-spacing:2.220000px;}
.ws9c{word-spacing:2.280000px;}
.wsb0{word-spacing:2.340000px;}
.ws74{word-spacing:2.460000px;}
.ws87{word-spacing:2.520000px;}
.ws6b{word-spacing:2.580000px;}
.ws65{word-spacing:2.640000px;}
.wsc2{word-spacing:2.736000px;}
.ws3c{word-spacing:2.760000px;}
.ws2b{word-spacing:2.820000px;}
.ws76{word-spacing:2.832000px;}
.wsd1{word-spacing:2.928000px;}
.ws3f{word-spacing:2.940000px;}
.ws8f{word-spacing:2.976000px;}
.ws3d{word-spacing:3.060000px;}
.wsdb{word-spacing:3.120000px;}
.ws1b{word-spacing:3.240000px;}
.wsd8{word-spacing:3.264000px;}
.wsb6{word-spacing:3.300000px;}
.ws2d{word-spacing:3.360000px;}
.wsdc{word-spacing:3.408000px;}
.ws63{word-spacing:3.420000px;}
.wsc8{word-spacing:3.456000px;}
.ws86{word-spacing:3.480000px;}
.ws2a{word-spacing:3.600000px;}
.wsdd{word-spacing:3.648000px;}
.ws1f{word-spacing:3.660000px;}
.ws66{word-spacing:3.720000px;}
.ws72{word-spacing:3.744000px;}
.ws88{word-spacing:3.780000px;}
.wsa3{word-spacing:3.840000px;}
.ws60{word-spacing:3.936000px;}
.ws25{word-spacing:3.960000px;}
.ws6d{word-spacing:3.984000px;}
.ws5a{word-spacing:4.020000px;}
.ws32{word-spacing:4.080000px;}
.ws27{word-spacing:4.260000px;}
.ws6c{word-spacing:4.368000px;}
.ws8b{word-spacing:4.380000px;}
.ws2c{word-spacing:4.440000px;}
.ws68{word-spacing:4.500000px;}
.ws7e{word-spacing:4.512000px;}
.wsa4{word-spacing:4.620000px;}
.ws75{word-spacing:4.656000px;}
.ws93{word-spacing:4.680000px;}
.ws26{word-spacing:4.860000px;}
.wse{word-spacing:4.920000px;}
.wsd{word-spacing:4.980000px;}
.wsb5{word-spacing:5.460000px;}
.wsb9{word-spacing:5.520000px;}
.ws8e{word-spacing:7.740000px;}
.wsb1{word-spacing:7.860000px;}
.ws53{word-spacing:151.872000px;}
.ws47{word-spacing:157.872000px;}
.ws4b{word-spacing:163.200000px;}
.ws4d{word-spacing:173.856000px;}
.ws51{word-spacing:182.880000px;}
.ws4c{word-spacing:189.840000px;}
.ws3a{word-spacing:261.888000px;}
.ws46{word-spacing:307.200000px;}
.ws50{word-spacing:318.864000px;}
.ws49{word-spacing:363.216000px;}
.ws39{word-spacing:364.560000px;}
.ws3b{word-spacing:388.560000px;}
.ws45{word-spacing:518.304000px;}
.ws52{word-spacing:558.672000px;}
.ws48{word-spacing:571.632000px;}
.ws4f{word-spacing:834.336000px;}
.ws4a{word-spacing:846.624000px;}
._e{margin-left:-2898.096000px;}
._14{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._a{margin-left:-7.770000px;}
._8{margin-left:-6.390000px;}
._1{margin-left:-5.376000px;}
._7{margin-left:-4.350000px;}
._4{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.177860px;}
._6{width:1.056000px;}
._f{width:2.076000px;}
._b{width:3.096000px;}
._d{width:4.260000px;}
._c{width:5.280000px;}
._a8{width:6.300000px;}
._9{width:7.320000px;}
._a6{width:10.200000px;}
._a7{width:11.640000px;}
._3{width:59.153814px;}
._51{width:97.584000px;}
._9e{width:111.502200px;}
._a5{width:121.536000px;}
._9c{width:138.240000px;}
._7a{width:151.008000px;}
._9d{width:158.256000px;}
._a3{width:161.520000px;}
._a1{width:166.752000px;}
._26{width:169.872000px;}
._39{width:172.182000px;}
._30{width:177.216000px;}
._7d{width:178.854000px;}
._a2{width:180.432000px;}
._79{width:182.832000px;}
._81{width:184.410000px;}
._1b{width:185.856000px;}
._70{width:187.854000px;}
._9b{width:190.197600px;}
._85{width:194.064000px;}
._7c{width:195.696000px;}
._89{width:198.486000px;}
._95{width:200.208000px;}
._18{width:201.840000px;}
._6d{width:202.848000px;}
._8e{width:204.798000px;}
._6a{width:206.832000px;}
._8d{width:210.162000px;}
._11{width:212.592000px;}
._a0{width:219.408000px;}
._a4{width:220.992000px;}
._10{width:224.958000px;}
._55{width:228.624000px;}
._9f{width:233.856000px;}
._36{width:245.856000px;}
._1e{width:272.544000px;}
._13{width:273.888000px;}
._2e{width:279.216000px;}
._99{width:280.338000px;}
._65{width:281.616000px;}
._4c{width:284.976000px;}
._2b{width:289.452000px;}
._82{width:290.982000px;}
._69{width:293.520000px;}
._74{width:296.208000px;}
._6e{width:297.552000px;}
._53{width:306.576000px;}
._8a{width:310.320000px;}
._41{width:312.960000px;}
._91{width:316.368000px;}
._96{width:320.352000px;}
._28{width:323.616000px;}
._6b{width:328.320000px;}
._57{width:336.108000px;}
._66{width:337.536000px;}
._25{width:339.600000px;}
._23{width:342.162000px;}
._3f{width:343.728000px;}
._80{width:345.558000px;}
._59{width:348.558000px;}
._97{width:351.726000px;}
._43{width:358.719000px;}
._93{width:360.126000px;}
._49{width:362.196000px;}
._17{width:374.304000px;}
._47{width:376.320000px;}
._98{width:380.976000px;}
._83{width:382.902000px;}
._1a{width:386.256000px;}
._7f{width:391.926000px;}
._75{width:406.080000px;}
._4e{width:408.960000px;}
._38{width:410.784000px;}
._76{width:412.710000px;}
._2a{width:425.856000px;}
._32{width:432.960000px;}
._2d{width:435.168000px;}
._34{width:439.680000px;}
._20{width:440.976000px;}
._3e{width:442.416000px;}
._6f{width:445.632000px;}
._71{width:452.100000px;}
._5f{width:454.866000px;}
._45{width:458.304000px;}
._8c{width:460.290000px;}
._61{width:462.288000px;}
._1d{width:471.600000px;}
._67{width:476.352000px;}
._9a{width:483.600000px;}
._72{width:486.240000px;}
._5d{width:488.928000px;}
._63{width:494.256000px;}
._7e{width:496.614000px;}
._90{width:497.634000px;}
._92{width:500.358000px;}
._7b{width:508.614000px;}
._3b{width:512.544000px;}
._8b{width:513.618000px;}
._5b{width:519.648000px;}
._86{width:521.586000px;}
._77{width:524.928000px;}
._87{width:529.878000px;}
._6c{width:538.320000px;}
._84{width:540.294000px;}
._94{width:584.226000px;}
._78{width:619.584000px;}
._88{width:657.570000px;}
._54{width:668.334000px;}
._50{width:674.070000px;}
._8f{width:675.222000px;}
._68{width:678.240000px;}
._73{width:718.272000px;}
._64{width:796.032000px;}
._29{width:810.000000px;}
._4a{width:813.828000px;}
._22{width:822.630000px;}
._35{width:842.310000px;}
._52{width:846.366000px;}
._2c{width:850.086000px;}
._2f{width:881.574000px;}
._33{width:893.952000px;}
._37{width:912.918000px;}
._3a{width:934.230000px;}
._24{width:940.656000px;}
._3c{width:971.574000px;}
._56{width:975.090000px;}
._5a{width:979.440000px;}
._46{width:995.394000px;}
._62{width:1011.408000px;}
._5e{width:1014.240000px;}
._27{width:1019.328000px;}
._40{width:1021.542000px;}
._1c{width:1024.062000px;}
._12{width:1034.544000px;}
._48{width:1044.738000px;}
._3d{width:1054.806000px;}
._1f{width:1071.828000px;}
._4f{width:1082.754000px;}
._19{width:1087.392000px;}
._42{width:1090.050000px;}
._58{width:1097.538000px;}
._31{width:1100.406000px;}
._60{width:1104.720000px;}
._5c{width:1107.408000px;}
._16{width:1112.736000px;}
._44{width:1130.706000px;}
._4b{width:1139.586000px;}
._4d{width:1160.358000px;}
._21{width:1275.408000px;}
._15{width:1406.160000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsc{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y13c{bottom:82.905450px;}
.y172{bottom:82.940850px;}
.y168{bottom:83.354250px;}
.y174{bottom:83.460300px;}
.y5f{bottom:83.770350px;}
.y77{bottom:83.912100px;}
.y157{bottom:83.991750px;}
.y14c{bottom:84.263850px;}
.y146{bottom:84.535950px;}
.y2a{bottom:88.026750px;}
.y1bf{bottom:89.263500px;}
.y137{bottom:89.706600px;}
.y9a{bottom:92.367000px;}
.y9c{bottom:92.907000px;}
.y1ff{bottom:95.263500px;}
.y13b{bottom:98.649450px;}
.y171{bottom:98.684850px;}
.y167{bottom:99.098250px;}
.y173{bottom:99.204300px;}
.y156{bottom:99.735750px;}
.y14b{bottom:100.007850px;}
.y145{bottom:100.279950px;}
.y99{bottom:100.623000px;}
.y17b{bottom:101.635350px;}
.y5e{bottom:101.770350px;}
.y76{bottom:101.912100px;}
.y29{bottom:103.023000px;}
.y1be{bottom:104.263500px;}
.y9d{bottom:108.867000px;}
.y9b{bottom:109.287000px;}
.y136{bottom:109.564350px;}
.y1fe{bottom:110.263500px;}
.y13a{bottom:114.393450px;}
.y170{bottom:114.428850px;}
.y166{bottom:114.842250px;}
.y14a{bottom:115.751850px;}
.y144{bottom:116.023950px;}
.y1bd{bottom:119.263500px;}
.y180{bottom:119.365350px;}
.y17a{bottom:119.635350px;}
.y5d{bottom:119.770350px;}
.y75{bottom:119.912100px;}
.y90{bottom:125.127000px;}
.y1fd{bottom:125.263500px;}
.y98{bottom:125.667000px;}
.y135{bottom:125.816250px;}
.y139{bottom:130.137450px;}
.y16f{bottom:130.172850px;}
.y165{bottom:130.586250px;}
.y149{bottom:131.495850px;}
.y143{bottom:131.767950px;}
.y1bc{bottom:134.263500px;}
.y179{bottom:137.635350px;}
.y5c{bottom:137.770350px;}
.y74{bottom:137.912100px;}
.y1fc{bottom:140.263500px;}
.y8f{bottom:141.627000px;}
.y97{bottom:142.047000px;}
.y134{bottom:142.068300px;}
.y164{bottom:146.330250px;}
.y148{bottom:147.239850px;}
.y142{bottom:147.511950px;}
.y105{bottom:149.127150px;}
.y1bb{bottom:149.263500px;}
.y1fb{bottom:155.263500px;}
.y17f{bottom:155.365350px;}
.y178{bottom:155.635350px;}
.y5b{bottom:155.770350px;}
.y73{bottom:155.912100px;}
.y8e{bottom:158.127000px;}
.y133{bottom:158.320200px;}
.y96{bottom:158.667000px;}
.y147{bottom:162.983850px;}
.y141{bottom:163.255950px;}
.y1ba{bottom:164.263500px;}
.y104{bottom:165.627150px;}
.y1fa{bottom:170.263500px;}
.y26{bottom:171.077550px;}
.y177{bottom:173.635350px;}
.y5a{bottom:173.770350px;}
.y72{bottom:173.912100px;}
.y132{bottom:174.576150px;}
.y8d{bottom:174.627000px;}
.y95{bottom:175.047000px;}
.y140{bottom:178.999950px;}
.y1b9{bottom:179.263500px;}
.y88{bottom:182.871000px;}
.y1f9{bottom:185.263500px;}
.yd0{bottom:188.471700px;}
.y25{bottom:189.077550px;}
.y131{bottom:190.824150px;}
.y8c{bottom:191.127000px;}
.y103{bottom:191.238300px;}
.y94{bottom:191.667000px;}
.y59{bottom:191.770350px;}
.y71{bottom:191.912100px;}
.y1b8{bottom:194.263500px;}
.y13f{bottom:194.743950px;}
.y1f8{bottom:200.263500px;}
.ycf{bottom:204.719700px;}
.y130{bottom:207.072150px;}
.y24{bottom:207.077550px;}
.y102{bottom:207.486300px;}
.y8b{bottom:207.627000px;}
.y93{bottom:208.047000px;}
.y176{bottom:209.230350px;}
.y1b7{bottom:209.263500px;}
.y58{bottom:209.770350px;}
.y70{bottom:209.912100px;}
.y13e{bottom:210.487950px;}
.y1f7{bottom:215.263500px;}
.yce{bottom:220.967700px;}
.y101{bottom:223.734300px;}
.y8a{bottom:224.127000px;}
.y1b6{bottom:224.263500px;}
.y92{bottom:224.667000px;}
.y23{bottom:225.077550px;}
.y13d{bottom:226.231950px;}
.y57{bottom:227.770350px;}
.y6f{bottom:227.912100px;}
.y1f6{bottom:230.263500px;}
.ycd{bottom:237.215700px;}
.y12f{bottom:238.584000px;}
.y1b5{bottom:239.263500px;}
.y100{bottom:239.982300px;}
.y89{bottom:240.627000px;}
.y91{bottom:241.047000px;}
.y22{bottom:243.077550px;}
.y1f5{bottom:245.263500px;}
.y17e{bottom:245.365350px;}
.y56{bottom:245.770350px;}
.y6e{bottom:245.912100px;}
.ycc{bottom:253.463700px;}
.y1b4{bottom:254.263500px;}
.yff{bottom:256.230300px;}
.y85{bottom:256.875000px;}
.y87{bottom:257.415000px;}
.y1f4{bottom:260.263500px;}
.y21{bottom:261.077550px;}
.y55{bottom:263.770350px;}
.y6d{bottom:263.912100px;}
.y1b3{bottom:269.263500px;}
.ycb{bottom:269.711700px;}
.yfe{bottom:272.478300px;}
.y84{bottom:273.375000px;}
.y12e{bottom:273.482100px;}
.y86{bottom:273.795000px;}
.y1f3{bottom:275.263500px;}
.y20{bottom:279.077550px;}
.y54{bottom:281.770350px;}
.y6c{bottom:281.912100px;}
.y1b2{bottom:284.263500px;}
.yca{bottom:285.959700px;}
.yfd{bottom:288.726300px;}
.y80{bottom:289.623000px;}
.y82{bottom:290.163000px;}
.y1f2{bottom:290.263500px;}
.y1f{bottom:297.077550px;}
.y7f{bottom:297.879000px;}
.y1b1{bottom:299.263500px;}
.y17d{bottom:299.365350px;}
.y53{bottom:299.770350px;}
.y6b{bottom:299.912100px;}
.yc9{bottom:302.207700px;}
.yfc{bottom:304.974300px;}
.y1f1{bottom:305.263500px;}
.y83{bottom:306.123000px;}
.y81{bottom:306.543000px;}
.y1b0{bottom:314.263500px;}
.y1e{bottom:315.077550px;}
.y52{bottom:317.770350px;}
.y6a{bottom:317.912100px;}
.yc8{bottom:318.455700px;}
.y1f0{bottom:320.263500px;}
.yfb{bottom:321.222300px;}
.y7c{bottom:322.383000px;}
.y7e{bottom:322.923000px;}
.y1af{bottom:329.263500px;}
.y1d{bottom:333.077550px;}
.y12d{bottom:334.112100px;}
.yc7{bottom:334.703700px;}
.y1ef{bottom:335.263500px;}
.y51{bottom:335.770350px;}
.y119{bottom:335.905350px;}
.y69{bottom:335.912100px;}
.yfa{bottom:337.470300px;}
.y7b{bottom:338.883000px;}
.y7d{bottom:339.303000px;}
.y1ae{bottom:344.263500px;}
.y1ee{bottom:350.263500px;}
.yc6{bottom:350.951700px;}
.y1c{bottom:351.077550px;}
.y12c{bottom:352.112100px;}
.yf9{bottom:353.718300px;}
.y50{bottom:353.770350px;}
.y118{bottom:353.905350px;}
.y68{bottom:353.920350px;}
.y1ad{bottom:359.263500px;}
.y1ed{bottom:365.263500px;}
.yc5{bottom:367.199700px;}
.y1b{bottom:369.077550px;}
.yf8{bottom:369.966300px;}
.y12b{bottom:370.112100px;}
.y7a{bottom:370.395000px;}
.y4f{bottom:371.770350px;}
.y117{bottom:371.905350px;}
.y67{bottom:371.920350px;}
.y1ac{bottom:374.263500px;}
.y1ec{bottom:380.263500px;}
.yc4{bottom:383.447700px;}
.yf7{bottom:386.214300px;}
.y28{bottom:387.077550px;}
.y12a{bottom:388.112100px;}
.y1ab{bottom:389.263500px;}
.y4e{bottom:389.770350px;}
.y116{bottom:389.905350px;}
.y1eb{bottom:395.263500px;}
.yc3{bottom:399.695700px;}
.yf6{bottom:402.462300px;}
.y1aa{bottom:404.263500px;}
.y1a{bottom:404.674650px;}
.y27{bottom:405.077550px;}
.y79{bottom:405.290100px;}
.y129{bottom:406.112100px;}
.y66{bottom:407.515350px;}
.y4d{bottom:407.770350px;}
.y115{bottom:407.905350px;}
.y1ea{bottom:410.263500px;}
.yc2{bottom:415.943700px;}
.yf5{bottom:418.710300px;}
.y1a9{bottom:419.263500px;}
.y128{bottom:424.112100px;}
.y1e9{bottom:425.263500px;}
.y65{bottom:425.515350px;}
.y155{bottom:425.770350px;}
.y114{bottom:425.905350px;}
.yc1{bottom:432.191700px;}
.y1a8{bottom:434.263500px;}
.yf4{bottom:434.958300px;}
.y1e8{bottom:440.263500px;}
.y127{bottom:442.112100px;}
.y4c{bottom:443.365350px;}
.y154{bottom:443.770350px;}
.y113{bottom:443.905350px;}
.yc0{bottom:448.439700px;}
.y1a7{bottom:449.263500px;}
.yf3{bottom:451.206300px;}
.y1e7{bottom:455.263500px;}
.y126{bottom:460.112100px;}
.y4b{bottom:461.365350px;}
.y64{bottom:461.770350px;}
.y112{bottom:461.905350px;}
.y1a6{bottom:464.263500px;}
.ybf{bottom:464.687700px;}
.yf2{bottom:467.454300px;}
.y1e6{bottom:470.263500px;}
.y125{bottom:478.112100px;}
.y1a5{bottom:479.263500px;}
.y63{bottom:479.770350px;}
.y111{bottom:479.905350px;}
.y19{bottom:480.064200px;}
.ybe{bottom:480.935700px;}
.yf1{bottom:483.702300px;}
.y1e5{bottom:485.263500px;}
.y1a4{bottom:494.263500px;}
.y124{bottom:496.112100px;}
.y4a{bottom:497.230350px;}
.ybd{bottom:497.294700px;}
.y62{bottom:497.770350px;}
.y110{bottom:497.905350px;}
.yf0{bottom:499.950300px;}
.y1e4{bottom:500.263500px;}
.y18{bottom:507.409200px;}
.y1a3{bottom:509.263500px;}
.ybc{bottom:513.542700px;}
.y123{bottom:514.112100px;}
.y1e3{bottom:515.263500px;}
.y61{bottom:515.770350px;}
.y10f{bottom:515.905350px;}
.yef{bottom:516.198300px;}
.y1a2{bottom:524.263500px;}
.y17{bottom:525.409200px;}
.ybb{bottom:529.790700px;}
.y1e2{bottom:530.263500px;}
.y122{bottom:532.112100px;}
.yee{bottom:532.446300px;}
.y60{bottom:533.770350px;}
.y10e{bottom:533.905350px;}
.y1a1{bottom:539.263500px;}
.y16{bottom:543.409200px;}
.y1e1{bottom:545.263500px;}
.yba{bottom:546.038700px;}
.yed{bottom:548.694300px;}
.y121{bottom:550.112100px;}
.y49{bottom:551.770350px;}
.y10d{bottom:551.905350px;}
.y1a0{bottom:554.263500px;}
.y1e0{bottom:560.263500px;}
.y15{bottom:561.409200px;}
.yb9{bottom:562.286700px;}
.yec{bottom:564.942300px;}
.y19f{bottom:569.263500px;}
.y48{bottom:569.770350px;}
.y10c{bottom:569.905350px;}
.y1df{bottom:575.263500px;}
.yb8{bottom:578.534700px;}
.y14{bottom:579.409200px;}
.yeb{bottom:581.190300px;}
.y19e{bottom:584.263500px;}
.y120{bottom:585.605250px;}
.y47{bottom:587.770350px;}
.y1de{bottom:590.263500px;}
.yb7{bottom:594.782700px;}
.y13{bottom:597.409200px;}
.yea{bottom:597.525450px;}
.y19d{bottom:599.263500px;}
.y11f{bottom:600.605250px;}
.y1dd{bottom:605.263500px;}
.y10b{bottom:605.500350px;}
.y46{bottom:605.770350px;}
.yb6{bottom:611.030700px;}
.ye9{bottom:613.773450px;}
.y19c{bottom:614.263500px;}
.y12{bottom:615.409200px;}
.y11e{bottom:615.605250px;}
.y1dc{bottom:620.263500px;}
.y10a{bottom:623.500350px;}
.y45{bottom:623.770350px;}
.yb5{bottom:627.278700px;}
.y19b{bottom:629.263500px;}
.ye8{bottom:630.021450px;}
.y11{bottom:633.409200px;}
.y1db{bottom:635.263500px;}
.y109{bottom:641.500350px;}
.y44{bottom:641.770350px;}
.yb4{bottom:643.526700px;}
.y19a{bottom:644.263500px;}
.ye7{bottom:646.269450px;}
.y11d{bottom:647.952750px;}
.y1da{bottom:650.263500px;}
.y10{bottom:651.409200px;}
.y199{bottom:659.263500px;}
.y108{bottom:659.500350px;}
.y16e{bottom:659.635350px;}
.y43{bottom:659.770350px;}
.yb3{bottom:659.774700px;}
.ye6{bottom:662.517450px;}
.y11c{bottom:663.558750px;}
.y1d9{bottom:665.263500px;}
.yf{bottom:669.409200px;}
.y198{bottom:674.263500px;}
.yb2{bottom:676.022700px;}
.y16d{bottom:677.635350px;}
.y42{bottom:677.770350px;}
.y11b{bottom:677.920350px;}
.ye5{bottom:678.765450px;}
.y1d8{bottom:680.263500px;}
.ye{bottom:687.409200px;}
.y197{bottom:689.263500px;}
.yb1{bottom:692.270700px;}
.ye4{bottom:695.013450px;}
.y1d7{bottom:695.263500px;}
.y107{bottom:695.365350px;}
.y11a{bottom:695.515350px;}
.y16c{bottom:695.635350px;}
.y41{bottom:695.770350px;}
.y196{bottom:704.263500px;}
.yb0{bottom:708.518700px;}
.y1d6{bottom:710.263500px;}
.ye3{bottom:711.261450px;}
.y16b{bottom:713.635350px;}
.y40{bottom:713.770350px;}
.y195{bottom:719.263500px;}
.yaf{bottom:724.766700px;}
.y1d5{bottom:725.263500px;}
.ye2{bottom:727.509450px;}
.y106{bottom:731.230350px;}
.y16a{bottom:731.635350px;}
.y3f{bottom:731.770350px;}
.yd{bottom:732.567300px;}
.y194{bottom:734.263500px;}
.y1d4{bottom:740.263500px;}
.yae{bottom:741.014700px;}
.ye1{bottom:743.757450px;}
.yc{bottom:745.018050px;}
.y193{bottom:749.263500px;}
.y3e{bottom:749.770350px;}
.y1d3{bottom:755.263500px;}
.yad{bottom:757.262700px;}
.ye0{bottom:760.005450px;}
.y192{bottom:764.263500px;}
.y169{bottom:767.230350px;}
.y3d{bottom:767.770350px;}
.y1d2{bottom:770.263500px;}
.yac{bottom:773.510700px;}
.ydf{bottom:776.505450px;}
.y191{bottom:779.263500px;}
.yb{bottom:782.158950px;}
.y1d1{bottom:785.263500px;}
.y17c{bottom:785.365350px;}
.y3c{bottom:785.770350px;}
.yab{bottom:789.758700px;}
.ya{bottom:790.233600px;}
.yde{bottom:792.753450px;}
.y190{bottom:794.263500px;}
.y1d0{bottom:800.263500px;}
.y9{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.yaa{bottom:806.006700px;}
.ydd{bottom:809.001450px;}
.y18f{bottom:809.263500px;}
.y1cf{bottom:815.263500px;}
.y3a{bottom:821.770350px;}
.ya9{bottom:822.254700px;}
.y8{bottom:822.658950px;}
.y18e{bottom:824.263500px;}
.ydc{bottom:825.249450px;}
.y1ce{bottom:830.263500px;}
.ya8{bottom:838.502700px;}
.y18d{bottom:839.263500px;}
.y39{bottom:839.770350px;}
.ydb{bottom:841.497450px;}
.y1cd{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y18c{bottom:854.263500px;}
.ya7{bottom:854.750700px;}
.yda{bottom:857.745450px;}
.y38{bottom:857.770350px;}
.y1cc{bottom:860.263500px;}
.y153{bottom:865.112100px;}
.y18b{bottom:869.263500px;}
.ya6{bottom:870.998700px;}
.yd9{bottom:873.993450px;}
.y1cb{bottom:875.263500px;}
.y37{bottom:875.770350px;}
.y152{bottom:883.112100px;}
.y18a{bottom:884.263500px;}
.ya5{bottom:887.246700px;}
.yd8{bottom:890.241450px;}
.y1ca{bottom:890.263500px;}
.y36{bottom:893.770350px;}
.y163{bottom:893.785350px;}
.y15a{bottom:893.920350px;}
.y6{bottom:897.575250px;}
.y189{bottom:899.263500px;}
.ya4{bottom:903.494700px;}
.y1c9{bottom:905.263500px;}
.yd7{bottom:906.489450px;}
.y35{bottom:911.770350px;}
.y162{bottom:911.785350px;}
.y159{bottom:911.920350px;}
.y188{bottom:914.263500px;}
.y151{bottom:917.952600px;}
.ya3{bottom:919.742700px;}
.y1c8{bottom:920.263500px;}
.yd6{bottom:922.737450px;}
.y187{bottom:929.263500px;}
.y34{bottom:929.770350px;}
.y161{bottom:929.785350px;}
.y150{bottom:933.558600px;}
.y5{bottom:934.036050px;}
.y1c7{bottom:935.263500px;}
.ya2{bottom:935.990700px;}
.yd5{bottom:938.985450px;}
.y186{bottom:944.263500px;}
.y158{bottom:947.515350px;}
.y33{bottom:947.770350px;}
.y160{bottom:947.785350px;}
.y14f{bottom:947.920350px;}
.y1c6{bottom:950.263500px;}
.ya1{bottom:952.238700px;}
.yd4{bottom:955.233450px;}
.y185{bottom:959.263500px;}
.y1c5{bottom:965.263500px;}
.y14e{bottom:965.515350px;}
.y32{bottom:965.770350px;}
.y15f{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.yd3{bottom:971.481450px;}
.y184{bottom:974.263500px;}
.y1c4{bottom:980.263500px;}
.ya0{bottom:983.750700px;}
.y31{bottom:983.770350px;}
.y15e{bottom:983.785350px;}
.y183{bottom:989.263500px;}
.y1c3{bottom:995.263500px;}
.y30{bottom:1001.770350px;}
.y15d{bottom:1001.785350px;}
.yd2{bottom:1002.993450px;}
.y182{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y1c2{bottom:1010.263500px;}
.y9f{bottom:1018.270350px;}
.y2f{bottom:1019.770350px;}
.y15c{bottom:1019.785350px;}
.y1c1{bottom:1025.263500px;}
.y181{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.y15b{bottom:1037.785350px;}
.y1c0{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y9e{bottom:1132.407000px;}
.y78{bottom:1132.418700px;}
.y14d{bottom:1132.421700px;}
.y138{bottom:1132.422000px;}
.y200{bottom:1132.423500px;}
.y175{bottom:1132.428300px;}
.yd1{bottom:1132.499700px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.099797px;}
.h1b{height:24.554320px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.h13{height:31.992188px;}
.h15{height:32.531250px;}
.hd{height:32.761230px;}
.h7{height:32.805176px;}
.h1c{height:33.351562px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h10{height:41.689453px;}
.h12{height:42.117188px;}
.ha{height:43.681641px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.h18{height:47.132920px;}
.h1a{height:47.148520px;}
.h19{height:47.149120px;}
.h17{height:47.164720px;}
.h16{height:47.381836px;}
.hc{height:52.646484px;}
.h1d{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h11{height:58.955900px;}
.h14{height:65.507250px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x1d{left:78.661350px;}
.x24{left:83.030400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x13{left:99.921300px;}
.x31{left:102.047400px;}
.x4{left:106.299150px;}
.x1e{left:108.309300px;}
.xc{left:110.555400px;}
.x32{left:123.307350px;}
.x3{left:125.427900px;}
.x23{left:128.990400px;}
.x6{left:131.811000px;}
.xb{left:144.725400px;}
.x22{left:192.770400px;}
.x2b{left:195.233250px;}
.x21{left:211.100400px;}
.x5{left:212.876400px;}
.x14{left:214.725300px;}
.x30{left:220.150350px;}
.x25{left:228.875400px;}
.x15{left:329.529300px;}
.x1f{left:331.377300px;}
.x9{left:455.041500px;}
.xd{left:457.080750px;}
.x28{left:466.303950px;}
.x2c{left:472.055400px;}
.x11{left:478.360350px;}
.x7{left:480.471000px;}
.x2a{left:482.586600px;}
.xe{left:491.111550px;}
.x33{left:503.851350px;}
.x12{left:512.380350px;}
.x26{left:526.190400px;}
.x29{left:579.231450px;}
.x2d{left:580.730400px;}
.x27{left:593.165400px;}
.x19{left:657.885300px;}
.x10{left:663.492300px;}
.x1b{left:666.237300px;}
.x16{left:674.049300px;}
.x20{left:675.381300px;}
.x17{left:676.713300px;}
.x1a{left:679.713300px;}
.x18{left:680.877300px;}
.x2{left:693.365400px;}
.x2e{left:721.717650px;}
.xf{left:728.391600px;}
.x2f{left:743.868150px;}
.x1c{left:749.649300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.397333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.440000pt;}
.v6{vertical-align:20.098133pt;}
.v4{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.v5{vertical-align:29.312000pt;}
.ls68{letter-spacing:-6.880000pt;}
.ls96{letter-spacing:-2.346667pt;}
.ls6e{letter-spacing:-2.026667pt;}
.ls78{letter-spacing:-1.386667pt;}
.ls67{letter-spacing:-0.853333pt;}
.ls15{letter-spacing:-0.693333pt;}
.ls9e{letter-spacing:-0.426667pt;}
.ls9c{letter-spacing:-0.341333pt;}
.ls69{letter-spacing:-0.320000pt;}
.ls79{letter-spacing:-0.266667pt;}
.ls4d{letter-spacing:-0.213333pt;}
.ls9d{letter-spacing:-0.170667pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls6a{letter-spacing:-0.128000pt;}
.ls38{letter-spacing:-0.106667pt;}
.ls3a{letter-spacing:-0.093280pt;}
.ls58{letter-spacing:-0.085333pt;}
.ls39{letter-spacing:-0.053333pt;}
.ls71{letter-spacing:-0.042667pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls5c{letter-spacing:0.042667pt;}
.ls1c{letter-spacing:0.053333pt;}
.ls82{letter-spacing:0.085333pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls5a{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.170667pt;}
.ls24{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.214933pt;}
.ls93{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls5f{letter-spacing:0.298667pt;}
.ls27{letter-spacing:0.320000pt;}
.ls56{letter-spacing:0.341333pt;}
.ls29{letter-spacing:0.373333pt;}
.ls7c{letter-spacing:0.384000pt;}
.ls37{letter-spacing:0.426667pt;}
.ls64{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls7a{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.533333pt;}
.ls5b{letter-spacing:0.554667pt;}
.ls3c{letter-spacing:0.586667pt;}
.ls5e{letter-spacing:0.597333pt;}
.ls30{letter-spacing:0.640000pt;}
.ls87{letter-spacing:0.682667pt;}
.ls8{letter-spacing:0.693333pt;}
.ls7d{letter-spacing:0.725333pt;}
.ls23{letter-spacing:0.746667pt;}
.ls7e{letter-spacing:0.768000pt;}
.ls35{letter-spacing:0.800000pt;}
.ls8a{letter-spacing:0.810667pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls4{letter-spacing:0.906667pt;}
.ls57{letter-spacing:0.938667pt;}
.ls36{letter-spacing:0.960000pt;}
.ls7b{letter-spacing:0.981333pt;}
.ls53{letter-spacing:1.013333pt;}
.ls89{letter-spacing:1.024000pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls83{letter-spacing:1.109333pt;}
.lse{letter-spacing:1.120000pt;}
.ls8e{letter-spacing:1.152000pt;}
.lsb{letter-spacing:1.173333pt;}
.ls20{letter-spacing:1.226667pt;}
.ls80{letter-spacing:1.237333pt;}
.ls7{letter-spacing:1.280000pt;}
.ls8f{letter-spacing:1.322667pt;}
.ls5{letter-spacing:1.333333pt;}
.ls7f{letter-spacing:1.365333pt;}
.ls3{letter-spacing:1.386667pt;}
.ls22{letter-spacing:1.440000pt;}
.ls8b{letter-spacing:1.450667pt;}
.ls2{letter-spacing:1.493333pt;}
.ls98{letter-spacing:1.536000pt;}
.ls28{letter-spacing:1.546667pt;}
.ls85{letter-spacing:1.578667pt;}
.ls13{letter-spacing:1.600000pt;}
.ls90{letter-spacing:1.621333pt;}
.ls11{letter-spacing:1.653333pt;}
.ls8d{letter-spacing:1.664000pt;}
.ls2e{letter-spacing:1.706667pt;}
.ls9{letter-spacing:1.760000pt;}
.lsd{letter-spacing:1.813333pt;}
.ls99{letter-spacing:1.834667pt;}
.ls55{letter-spacing:1.866667pt;}
.ls3b{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:1.973333pt;}
.ls8c{letter-spacing:2.005333pt;}
.ls42{letter-spacing:2.026667pt;}
.ls92{letter-spacing:2.048000pt;}
.ls2b{letter-spacing:2.080000pt;}
.ls84{letter-spacing:2.090667pt;}
.lsa{letter-spacing:2.133333pt;}
.ls18{letter-spacing:2.186667pt;}
.ls88{letter-spacing:2.218667pt;}
.ls5d{letter-spacing:2.240000pt;}
.ls81{letter-spacing:2.261333pt;}
.ls26{letter-spacing:2.293333pt;}
.ls91{letter-spacing:2.304000pt;}
.ls25{letter-spacing:2.346667pt;}
.ls31{letter-spacing:2.400000pt;}
.ls9a{letter-spacing:2.432000pt;}
.ls50{letter-spacing:2.453333pt;}
.ls95{letter-spacing:2.474667pt;}
.ls32{letter-spacing:2.506667pt;}
.ls43{letter-spacing:2.560000pt;}
.ls86{letter-spacing:2.602667pt;}
.ls10{letter-spacing:2.613333pt;}
.ls9b{letter-spacing:2.645333pt;}
.ls4f{letter-spacing:2.666667pt;}
.ls59{letter-spacing:2.720000pt;}
.ls54{letter-spacing:2.773333pt;}
.ls19{letter-spacing:2.826667pt;}
.ls2c{letter-spacing:2.880000pt;}
.ls1e{letter-spacing:2.933333pt;}
.ls6{letter-spacing:2.986667pt;}
.ls6b{letter-spacing:3.146667pt;}
.ls51{letter-spacing:3.200000pt;}
.ls44{letter-spacing:3.253333pt;}
.ls17{letter-spacing:3.360000pt;}
.ls6c{letter-spacing:3.413333pt;}
.lsf{letter-spacing:3.466667pt;}
.ls2f{letter-spacing:3.520000pt;}
.ls52{letter-spacing:3.626667pt;}
.ls72{letter-spacing:3.786667pt;}
.ls97{letter-spacing:3.840000pt;}
.ls1d{letter-spacing:3.893333pt;}
.ls94{letter-spacing:4.010667pt;}
.ls61{letter-spacing:4.053333pt;}
.ls6d{letter-spacing:4.160000pt;}
.ls6f{letter-spacing:4.213333pt;}
.ls70{letter-spacing:4.266667pt;}
.ls33{letter-spacing:4.320000pt;}
.ls3f{letter-spacing:4.426667pt;}
.ls4e{letter-spacing:4.533333pt;}
.ls76{letter-spacing:4.586667pt;}
.ls62{letter-spacing:4.693333pt;}
.ls3d{letter-spacing:4.746667pt;}
.ls65{letter-spacing:5.066667pt;}
.ls63{letter-spacing:5.226667pt;}
.ls3e{letter-spacing:5.973333pt;}
.ls66{letter-spacing:6.026667pt;}
.ls73{letter-spacing:6.253333pt;}
.ls77{letter-spacing:6.773333pt;}
.ls74{letter-spacing:7.573333pt;}
.ls60{letter-spacing:7.786667pt;}
.ls75{letter-spacing:12.000000pt;}
.ls0{letter-spacing:52.918112pt;}
.ls4a{letter-spacing:95.209600pt;}
.ls48{letter-spacing:130.751467pt;}
.ls46{letter-spacing:132.445781pt;}
.ls49{letter-spacing:163.949333pt;}
.ls4c{letter-spacing:174.616000pt;}
.ls47{letter-spacing:180.637333pt;}
.ls4b{letter-spacing:183.084800pt;}
.ls40{letter-spacing:248.192000pt;}
.ls41{letter-spacing:257.365333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws80{word-spacing:-19.360000pt;}
.ws7f{word-spacing:-18.400000pt;}
.ws62{word-spacing:-17.866667pt;}
.ws9a{word-spacing:-17.493333pt;}
.ws14{word-spacing:-17.226667pt;}
.wsa7{word-spacing:-17.120000pt;}
.ws5{word-spacing:-16.800000pt;}
.ws79{word-spacing:-16.693333pt;}
.wsae{word-spacing:-16.586667pt;}
.ws16{word-spacing:-16.266667pt;}
.ws99{word-spacing:-15.946667pt;}
.wsa0{word-spacing:-15.893333pt;}
.wsac{word-spacing:-15.626667pt;}
.wsa9{word-spacing:-15.573333pt;}
.ws15{word-spacing:-15.466667pt;}
.ws9b{word-spacing:-15.413333pt;}
.wsad{word-spacing:-15.360000pt;}
.ws12{word-spacing:-15.306667pt;}
.wsa2{word-spacing:-15.253333pt;}
.wsa8{word-spacing:-15.040000pt;}
.ws98{word-spacing:-14.933333pt;}
.ws35{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws97{word-spacing:-14.773333pt;}
.ws90{word-spacing:-14.613333pt;}
.ws17{word-spacing:-14.560000pt;}
.ws4{word-spacing:-14.453333pt;}
.ws34{word-spacing:-14.400000pt;}
.ws78{word-spacing:-14.346667pt;}
.ws37{word-spacing:-14.240000pt;}
.ws7a{word-spacing:-14.186667pt;}
.ws84{word-spacing:-14.133333pt;}
.ws96{word-spacing:-14.080000pt;}
.wsa1{word-spacing:-14.026667pt;}
.ws91{word-spacing:-13.920000pt;}
.ws9f{word-spacing:-13.813333pt;}
.ws81{word-spacing:-13.760000pt;}
.ws1a{word-spacing:-13.706667pt;}
.ws82{word-spacing:-13.653333pt;}
.ws36{word-spacing:-13.546667pt;}
.ws13{word-spacing:-13.386667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws18{word-spacing:-13.280000pt;}
.wsbb{word-spacing:-13.269333pt;}
.wsab{word-spacing:-13.226667pt;}
.wsaa{word-spacing:-13.173333pt;}
.wsbd{word-spacing:-12.800000pt;}
.ws83{word-spacing:-12.480000pt;}
.wscd{word-spacing:-12.160000pt;}
.ws55{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.861333pt;}
.wsbc{word-spacing:-11.818667pt;}
.wsd0{word-spacing:-11.434667pt;}
.wscf{word-spacing:-11.306667pt;}
.ws7{word-spacing:-11.120000pt;}
.wsba{word-spacing:-11.050667pt;}
.wsbf{word-spacing:-10.922667pt;}
.wsce{word-spacing:-10.794667pt;}
.ws38{word-spacing:-10.666667pt;}
.ws56{word-spacing:-10.453333pt;}
.ws1{word-spacing:-9.076144pt;}
.wsbe{word-spacing:-8.320000pt;}
.ws19{word-spacing:-7.680053pt;}
.ws2{word-spacing:-6.482960pt;}
.ws57{word-spacing:-6.218667pt;}
.ws85{word-spacing:-6.026667pt;}
.ws7b{word-spacing:-4.693333pt;}
.wsaf{word-spacing:-3.786667pt;}
.ws9e{word-spacing:-2.613333pt;}
.wsa{word-spacing:-2.565333pt;}
.ws7c{word-spacing:-2.400000pt;}
.ws22{word-spacing:-2.346667pt;}
.wsb2{word-spacing:-2.293333pt;}
.wsc7{word-spacing:-2.218667pt;}
.ws1d{word-spacing:-2.133333pt;}
.ws21{word-spacing:-1.973333pt;}
.wsd4{word-spacing:-1.834667pt;}
.ws5e{word-spacing:-1.760000pt;}
.wsb4{word-spacing:-1.706667pt;}
.wsa6{word-spacing:-1.653333pt;}
.wsd2{word-spacing:-1.578667pt;}
.ws41{word-spacing:-1.546667pt;}
.wsd7{word-spacing:-1.493333pt;}
.ws20{word-spacing:-1.440000pt;}
.ws24{word-spacing:-1.226667pt;}
.ws2f{word-spacing:-1.173333pt;}
.wsda{word-spacing:-1.024000pt;}
.ws8c{word-spacing:-0.960000pt;}
.ws43{word-spacing:-0.906667pt;}
.ws42{word-spacing:-0.853333pt;}
.ws30{word-spacing:-0.800000pt;}
.ws4e{word-spacing:-0.768000pt;}
.wsa5{word-spacing:-0.693333pt;}
.ws5c{word-spacing:-0.640000pt;}
.ws95{word-spacing:-0.586667pt;}
.ws40{word-spacing:-0.533333pt;}
.wsb3{word-spacing:-0.480000pt;}
.wsc6{word-spacing:-0.426667pt;}
.wsc0{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.373333pt;}
.ws9d{word-spacing:-0.320000pt;}
.ws28{word-spacing:-0.266667pt;}
.wscb{word-spacing:-0.256000pt;}
.ws92{word-spacing:-0.213333pt;}
.ws2e{word-spacing:-0.160000pt;}
.ws67{word-spacing:-0.106667pt;}
.wsc5{word-spacing:-0.085333pt;}
.ws29{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053333pt;}
.wsd6{word-spacing:0.085333pt;}
.ws61{word-spacing:0.106667pt;}
.ws5f{word-spacing:0.128000pt;}
.wsb{word-spacing:0.160000pt;}
.ws59{word-spacing:0.213333pt;}
.wsd3{word-spacing:0.298667pt;}
.ws1e{word-spacing:0.320000pt;}
.wscc{word-spacing:0.341333pt;}
.ws89{word-spacing:0.426667pt;}
.ws77{word-spacing:0.469333pt;}
.ws33{word-spacing:0.586667pt;}
.ws6e{word-spacing:0.597333pt;}
.ws94{word-spacing:0.640000pt;}
.ws70{word-spacing:0.682667pt;}
.ws58{word-spacing:0.746667pt;}
.ws71{word-spacing:0.810667pt;}
.ws6f{word-spacing:0.853333pt;}
.ws7d{word-spacing:0.906667pt;}
.ws73{word-spacing:0.981333pt;}
.ws44{word-spacing:1.013333pt;}
.ws8a{word-spacing:1.066667pt;}
.wsd5{word-spacing:1.109333pt;}
.ws11{word-spacing:1.120000pt;}
.wsc3{word-spacing:1.152000pt;}
.ws64{word-spacing:1.173333pt;}
.ws6a{word-spacing:1.226667pt;}
.wsd9{word-spacing:1.237333pt;}
.wsf{word-spacing:1.280000pt;}
.ws3e{word-spacing:1.333333pt;}
.ws5d{word-spacing:1.386667pt;}
.wsc9{word-spacing:1.408000pt;}
.wsb8{word-spacing:1.493333pt;}
.wsde{word-spacing:1.536000pt;}
.wsc1{word-spacing:1.578667pt;}
.ws10{word-spacing:1.600000pt;}
.wsb7{word-spacing:1.653333pt;}
.ws8d{word-spacing:1.706667pt;}
.ws23{word-spacing:1.760000pt;}
.wsc4{word-spacing:1.792000pt;}
.ws1c{word-spacing:1.813333pt;}
.ws54{word-spacing:1.877333pt;}
.ws5b{word-spacing:1.920000pt;}
.wsca{word-spacing:1.962667pt;}
.ws69{word-spacing:1.973333pt;}
.ws9c{word-spacing:2.026667pt;}
.wsb0{word-spacing:2.080000pt;}
.ws74{word-spacing:2.186667pt;}
.ws87{word-spacing:2.240000pt;}
.ws6b{word-spacing:2.293333pt;}
.ws65{word-spacing:2.346667pt;}
.wsc2{word-spacing:2.432000pt;}
.ws3c{word-spacing:2.453333pt;}
.ws2b{word-spacing:2.506667pt;}
.ws76{word-spacing:2.517333pt;}
.wsd1{word-spacing:2.602667pt;}
.ws3f{word-spacing:2.613333pt;}
.ws8f{word-spacing:2.645333pt;}
.ws3d{word-spacing:2.720000pt;}
.wsdb{word-spacing:2.773333pt;}
.ws1b{word-spacing:2.880000pt;}
.wsd8{word-spacing:2.901333pt;}
.wsb6{word-spacing:2.933333pt;}
.ws2d{word-spacing:2.986667pt;}
.wsdc{word-spacing:3.029333pt;}
.ws63{word-spacing:3.040000pt;}
.wsc8{word-spacing:3.072000pt;}
.ws86{word-spacing:3.093333pt;}
.ws2a{word-spacing:3.200000pt;}
.wsdd{word-spacing:3.242667pt;}
.ws1f{word-spacing:3.253333pt;}
.ws66{word-spacing:3.306667pt;}
.ws72{word-spacing:3.328000pt;}
.ws88{word-spacing:3.360000pt;}
.wsa3{word-spacing:3.413333pt;}
.ws60{word-spacing:3.498667pt;}
.ws25{word-spacing:3.520000pt;}
.ws6d{word-spacing:3.541333pt;}
.ws5a{word-spacing:3.573333pt;}
.ws32{word-spacing:3.626667pt;}
.ws27{word-spacing:3.786667pt;}
.ws6c{word-spacing:3.882667pt;}
.ws8b{word-spacing:3.893333pt;}
.ws2c{word-spacing:3.946667pt;}
.ws68{word-spacing:4.000000pt;}
.ws7e{word-spacing:4.010667pt;}
.wsa4{word-spacing:4.106667pt;}
.ws75{word-spacing:4.138667pt;}
.ws93{word-spacing:4.160000pt;}
.ws26{word-spacing:4.320000pt;}
.wse{word-spacing:4.373333pt;}
.wsd{word-spacing:4.426667pt;}
.wsb5{word-spacing:4.853333pt;}
.wsb9{word-spacing:4.906667pt;}
.ws8e{word-spacing:6.880000pt;}
.wsb1{word-spacing:6.986667pt;}
.ws53{word-spacing:134.997333pt;}
.ws47{word-spacing:140.330667pt;}
.ws4b{word-spacing:145.066667pt;}
.ws4d{word-spacing:154.538667pt;}
.ws51{word-spacing:162.560000pt;}
.ws4c{word-spacing:168.746667pt;}
.ws3a{word-spacing:232.789333pt;}
.ws46{word-spacing:273.066667pt;}
.ws50{word-spacing:283.434667pt;}
.ws49{word-spacing:322.858667pt;}
.ws39{word-spacing:324.053333pt;}
.ws3b{word-spacing:345.386667pt;}
.ws45{word-spacing:460.714667pt;}
.ws52{word-spacing:496.597333pt;}
.ws48{word-spacing:508.117333pt;}
.ws4f{word-spacing:741.632000pt;}
.ws4a{word-spacing:752.554667pt;}
._e{margin-left:-2576.085333pt;}
._14{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._a{margin-left:-6.906667pt;}
._8{margin-left:-5.680000pt;}
._1{margin-left:-4.778667pt;}
._7{margin-left:-3.866667pt;}
._4{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.046987pt;}
._6{width:0.938667pt;}
._f{width:1.845333pt;}
._b{width:2.752000pt;}
._d{width:3.786667pt;}
._c{width:4.693333pt;}
._a8{width:5.600000pt;}
._9{width:6.506667pt;}
._a6{width:9.066667pt;}
._a7{width:10.346667pt;}
._3{width:52.581168pt;}
._51{width:86.741333pt;}
._9e{width:99.113067pt;}
._a5{width:108.032000pt;}
._9c{width:122.880000pt;}
._7a{width:134.229333pt;}
._9d{width:140.672000pt;}
._a3{width:143.573333pt;}
._a1{width:148.224000pt;}
._26{width:150.997333pt;}
._39{width:153.050667pt;}
._30{width:157.525333pt;}
._7d{width:158.981333pt;}
._a2{width:160.384000pt;}
._79{width:162.517333pt;}
._81{width:163.920000pt;}
._1b{width:165.205333pt;}
._70{width:166.981333pt;}
._9b{width:169.064533pt;}
._85{width:172.501333pt;}
._7c{width:173.952000pt;}
._89{width:176.432000pt;}
._95{width:177.962667pt;}
._18{width:179.413333pt;}
._6d{width:180.309333pt;}
._8e{width:182.042667pt;}
._6a{width:183.850667pt;}
._8d{width:186.810667pt;}
._11{width:188.970667pt;}
._a0{width:195.029333pt;}
._a4{width:196.437333pt;}
._10{width:199.962667pt;}
._55{width:203.221333pt;}
._9f{width:207.872000pt;}
._36{width:218.538667pt;}
._1e{width:242.261333pt;}
._13{width:243.456000pt;}
._2e{width:248.192000pt;}
._99{width:249.189333pt;}
._65{width:250.325333pt;}
._4c{width:253.312000pt;}
._2b{width:257.290667pt;}
._82{width:258.650667pt;}
._69{width:260.906667pt;}
._74{width:263.296000pt;}
._6e{width:264.490667pt;}
._53{width:272.512000pt;}
._8a{width:275.840000pt;}
._41{width:278.186667pt;}
._91{width:281.216000pt;}
._96{width:284.757333pt;}
._28{width:287.658667pt;}
._6b{width:291.840000pt;}
._57{width:298.762667pt;}
._66{width:300.032000pt;}
._25{width:301.866667pt;}
._23{width:304.144000pt;}
._3f{width:305.536000pt;}
._80{width:307.162667pt;}
._59{width:309.829333pt;}
._97{width:312.645333pt;}
._43{width:318.861333pt;}
._93{width:320.112000pt;}
._49{width:321.952000pt;}
._17{width:332.714667pt;}
._47{width:334.506667pt;}
._98{width:338.645333pt;}
._83{width:340.357333pt;}
._1a{width:343.338667pt;}
._7f{width:348.378667pt;}
._75{width:360.960000pt;}
._4e{width:363.520000pt;}
._38{width:365.141333pt;}
._76{width:366.853333pt;}
._2a{width:378.538667pt;}
._32{width:384.853333pt;}
._2d{width:386.816000pt;}
._34{width:390.826667pt;}
._20{width:391.978667pt;}
._3e{width:393.258667pt;}
._6f{width:396.117333pt;}
._71{width:401.866667pt;}
._5f{width:404.325333pt;}
._45{width:407.381333pt;}
._8c{width:409.146667pt;}
._61{width:410.922667pt;}
._1d{width:419.200000pt;}
._67{width:423.424000pt;}
._9a{width:429.866667pt;}
._72{width:432.213333pt;}
._5d{width:434.602667pt;}
._63{width:439.338667pt;}
._7e{width:441.434667pt;}
._90{width:442.341333pt;}
._92{width:444.762667pt;}
._7b{width:452.101333pt;}
._3b{width:455.594667pt;}
._8b{width:456.549333pt;}
._5b{width:461.909333pt;}
._86{width:463.632000pt;}
._77{width:466.602667pt;}
._87{width:471.002667pt;}
._6c{width:478.506667pt;}
._84{width:480.261333pt;}
._94{width:519.312000pt;}
._78{width:550.741333pt;}
._88{width:584.506667pt;}
._54{width:594.074667pt;}
._50{width:599.173333pt;}
._8f{width:600.197333pt;}
._68{width:602.880000pt;}
._73{width:638.464000pt;}
._64{width:707.584000pt;}
._29{width:720.000000pt;}
._4a{width:723.402667pt;}
._22{width:731.226667pt;}
._35{width:748.720000pt;}
._52{width:752.325333pt;}
._2c{width:755.632000pt;}
._2f{width:783.621333pt;}
._33{width:794.624000pt;}
._37{width:811.482667pt;}
._3a{width:830.426667pt;}
._24{width:836.138667pt;}
._3c{width:863.621333pt;}
._56{width:866.746667pt;}
._5a{width:870.613333pt;}
._46{width:884.794667pt;}
._62{width:899.029333pt;}
._5e{width:901.546667pt;}
._27{width:906.069333pt;}
._40{width:908.037333pt;}
._1c{width:910.277333pt;}
._12{width:919.594667pt;}
._48{width:928.656000pt;}
._3d{width:937.605333pt;}
._1f{width:952.736000pt;}
._4f{width:962.448000pt;}
._19{width:966.570667pt;}
._42{width:968.933333pt;}
._58{width:975.589333pt;}
._31{width:978.138667pt;}
._60{width:981.973333pt;}
._5c{width:984.362667pt;}
._16{width:989.098667pt;}
._44{width:1005.072000pt;}
._4b{width:1012.965333pt;}
._4d{width:1031.429333pt;}
._21{width:1133.696000pt;}
._15{width:1249.920000pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y13c{bottom:73.693733pt;}
.y172{bottom:73.725200pt;}
.y168{bottom:74.092667pt;}
.y174{bottom:74.186933pt;}
.y5f{bottom:74.462533pt;}
.y77{bottom:74.588533pt;}
.y157{bottom:74.659333pt;}
.y14c{bottom:74.901200pt;}
.y146{bottom:75.143067pt;}
.y2a{bottom:78.246000pt;}
.y1bf{bottom:79.345333pt;}
.y137{bottom:79.739200pt;}
.y9a{bottom:82.104000pt;}
.y9c{bottom:82.584000pt;}
.y1ff{bottom:84.678667pt;}
.y13b{bottom:87.688400pt;}
.y171{bottom:87.719867pt;}
.y167{bottom:88.087333pt;}
.y173{bottom:88.181600pt;}
.y156{bottom:88.654000pt;}
.y14b{bottom:88.895867pt;}
.y145{bottom:89.137733pt;}
.y99{bottom:89.442667pt;}
.y17b{bottom:90.342533pt;}
.y5e{bottom:90.462533pt;}
.y76{bottom:90.588533pt;}
.y29{bottom:91.576000pt;}
.y1be{bottom:92.678667pt;}
.y9d{bottom:96.770667pt;}
.y9b{bottom:97.144000pt;}
.y136{bottom:97.390533pt;}
.y1fe{bottom:98.012000pt;}
.y13a{bottom:101.683067pt;}
.y170{bottom:101.714533pt;}
.y166{bottom:102.082000pt;}
.y14a{bottom:102.890533pt;}
.y144{bottom:103.132400pt;}
.y1bd{bottom:106.012000pt;}
.y180{bottom:106.102533pt;}
.y17a{bottom:106.342533pt;}
.y5d{bottom:106.462533pt;}
.y75{bottom:106.588533pt;}
.y90{bottom:111.224000pt;}
.y1fd{bottom:111.345333pt;}
.y98{bottom:111.704000pt;}
.y135{bottom:111.836667pt;}
.y139{bottom:115.677733pt;}
.y16f{bottom:115.709200pt;}
.y165{bottom:116.076667pt;}
.y149{bottom:116.885200pt;}
.y143{bottom:117.127067pt;}
.y1bc{bottom:119.345333pt;}
.y179{bottom:122.342533pt;}
.y5c{bottom:122.462533pt;}
.y74{bottom:122.588533pt;}
.y1fc{bottom:124.678667pt;}
.y8f{bottom:125.890667pt;}
.y97{bottom:126.264000pt;}
.y134{bottom:126.282933pt;}
.y164{bottom:130.071333pt;}
.y148{bottom:130.879867pt;}
.y142{bottom:131.121733pt;}
.y105{bottom:132.557467pt;}
.y1bb{bottom:132.678667pt;}
.y1fb{bottom:138.012000pt;}
.y17f{bottom:138.102533pt;}
.y178{bottom:138.342533pt;}
.y5b{bottom:138.462533pt;}
.y73{bottom:138.588533pt;}
.y8e{bottom:140.557333pt;}
.y133{bottom:140.729067pt;}
.y96{bottom:141.037333pt;}
.y147{bottom:144.874533pt;}
.y141{bottom:145.116400pt;}
.y1ba{bottom:146.012000pt;}
.y104{bottom:147.224133pt;}
.y1fa{bottom:151.345333pt;}
.y26{bottom:152.068933pt;}
.y177{bottom:154.342533pt;}
.y5a{bottom:154.462533pt;}
.y72{bottom:154.588533pt;}
.y132{bottom:155.178800pt;}
.y8d{bottom:155.224000pt;}
.y95{bottom:155.597333pt;}
.y140{bottom:159.111067pt;}
.y1b9{bottom:159.345333pt;}
.y88{bottom:162.552000pt;}
.y1f9{bottom:164.678667pt;}
.yd0{bottom:167.530400pt;}
.y25{bottom:168.068933pt;}
.y131{bottom:169.621467pt;}
.y8c{bottom:169.890667pt;}
.y103{bottom:169.989600pt;}
.y94{bottom:170.370667pt;}
.y59{bottom:170.462533pt;}
.y71{bottom:170.588533pt;}
.y1b8{bottom:172.678667pt;}
.y13f{bottom:173.105733pt;}
.y1f8{bottom:178.012000pt;}
.ycf{bottom:181.973067pt;}
.y130{bottom:184.064133pt;}
.y24{bottom:184.068933pt;}
.y102{bottom:184.432267pt;}
.y8b{bottom:184.557333pt;}
.y93{bottom:184.930667pt;}
.y176{bottom:185.982533pt;}
.y1b7{bottom:186.012000pt;}
.y58{bottom:186.462533pt;}
.y70{bottom:186.588533pt;}
.y13e{bottom:187.100400pt;}
.y1f7{bottom:191.345333pt;}
.yce{bottom:196.415733pt;}
.y101{bottom:198.874933pt;}
.y8a{bottom:199.224000pt;}
.y1b6{bottom:199.345333pt;}
.y92{bottom:199.704000pt;}
.y23{bottom:200.068933pt;}
.y13d{bottom:201.095067pt;}
.y57{bottom:202.462533pt;}
.y6f{bottom:202.588533pt;}
.y1f6{bottom:204.678667pt;}
.ycd{bottom:210.858400pt;}
.y12f{bottom:212.074667pt;}
.y1b5{bottom:212.678667pt;}
.y100{bottom:213.317600pt;}
.y89{bottom:213.890667pt;}
.y91{bottom:214.264000pt;}
.y22{bottom:216.068933pt;}
.y1f5{bottom:218.012000pt;}
.y17e{bottom:218.102533pt;}
.y56{bottom:218.462533pt;}
.y6e{bottom:218.588533pt;}
.ycc{bottom:225.301067pt;}
.y1b4{bottom:226.012000pt;}
.yff{bottom:227.760267pt;}
.y85{bottom:228.333333pt;}
.y87{bottom:228.813333pt;}
.y1f4{bottom:231.345333pt;}
.y21{bottom:232.068933pt;}
.y55{bottom:234.462533pt;}
.y6d{bottom:234.588533pt;}
.y1b3{bottom:239.345333pt;}
.ycb{bottom:239.743733pt;}
.yfe{bottom:242.202933pt;}
.y84{bottom:243.000000pt;}
.y12e{bottom:243.095200pt;}
.y86{bottom:243.373333pt;}
.y1f3{bottom:244.678667pt;}
.y20{bottom:248.068933pt;}
.y54{bottom:250.462533pt;}
.y6c{bottom:250.588533pt;}
.y1b2{bottom:252.678667pt;}
.yca{bottom:254.186400pt;}
.yfd{bottom:256.645600pt;}
.y80{bottom:257.442667pt;}
.y82{bottom:257.922667pt;}
.y1f2{bottom:258.012000pt;}
.y1f{bottom:264.068933pt;}
.y7f{bottom:264.781333pt;}
.y1b1{bottom:266.012000pt;}
.y17d{bottom:266.102533pt;}
.y53{bottom:266.462533pt;}
.y6b{bottom:266.588533pt;}
.yc9{bottom:268.629067pt;}
.yfc{bottom:271.088267pt;}
.y1f1{bottom:271.345333pt;}
.y83{bottom:272.109333pt;}
.y81{bottom:272.482667pt;}
.y1b0{bottom:279.345333pt;}
.y1e{bottom:280.068933pt;}
.y52{bottom:282.462533pt;}
.y6a{bottom:282.588533pt;}
.yc8{bottom:283.071733pt;}
.y1f0{bottom:284.678667pt;}
.yfb{bottom:285.530933pt;}
.y7c{bottom:286.562667pt;}
.y7e{bottom:287.042667pt;}
.y1af{bottom:292.678667pt;}
.y1d{bottom:296.068933pt;}
.y12d{bottom:296.988533pt;}
.yc7{bottom:297.514400pt;}
.y1ef{bottom:298.012000pt;}
.y51{bottom:298.462533pt;}
.y119{bottom:298.582533pt;}
.y69{bottom:298.588533pt;}
.yfa{bottom:299.973600pt;}
.y7b{bottom:301.229333pt;}
.y7d{bottom:301.602667pt;}
.y1ae{bottom:306.012000pt;}
.y1ee{bottom:311.345333pt;}
.yc6{bottom:311.957067pt;}
.y1c{bottom:312.068933pt;}
.y12c{bottom:312.988533pt;}
.yf9{bottom:314.416267pt;}
.y50{bottom:314.462533pt;}
.y118{bottom:314.582533pt;}
.y68{bottom:314.595867pt;}
.y1ad{bottom:319.345333pt;}
.y1ed{bottom:324.678667pt;}
.yc5{bottom:326.399733pt;}
.y1b{bottom:328.068933pt;}
.yf8{bottom:328.858933pt;}
.y12b{bottom:328.988533pt;}
.y7a{bottom:329.240000pt;}
.y4f{bottom:330.462533pt;}
.y117{bottom:330.582533pt;}
.y67{bottom:330.595867pt;}
.y1ac{bottom:332.678667pt;}
.y1ec{bottom:338.012000pt;}
.yc4{bottom:340.842400pt;}
.yf7{bottom:343.301600pt;}
.y28{bottom:344.068933pt;}
.y12a{bottom:344.988533pt;}
.y1ab{bottom:346.012000pt;}
.y4e{bottom:346.462533pt;}
.y116{bottom:346.582533pt;}
.y1eb{bottom:351.345333pt;}
.yc3{bottom:355.285067pt;}
.yf6{bottom:357.744267pt;}
.y1aa{bottom:359.345333pt;}
.y1a{bottom:359.710800pt;}
.y27{bottom:360.068933pt;}
.y79{bottom:360.257867pt;}
.y129{bottom:360.988533pt;}
.y66{bottom:362.235867pt;}
.y4d{bottom:362.462533pt;}
.y115{bottom:362.582533pt;}
.y1ea{bottom:364.678667pt;}
.yc2{bottom:369.727733pt;}
.yf5{bottom:372.186933pt;}
.y1a9{bottom:372.678667pt;}
.y128{bottom:376.988533pt;}
.y1e9{bottom:378.012000pt;}
.y65{bottom:378.235867pt;}
.y155{bottom:378.462533pt;}
.y114{bottom:378.582533pt;}
.yc1{bottom:384.170400pt;}
.y1a8{bottom:386.012000pt;}
.yf4{bottom:386.629600pt;}
.y1e8{bottom:391.345333pt;}
.y127{bottom:392.988533pt;}
.y4c{bottom:394.102533pt;}
.y154{bottom:394.462533pt;}
.y113{bottom:394.582533pt;}
.yc0{bottom:398.613067pt;}
.y1a7{bottom:399.345333pt;}
.yf3{bottom:401.072267pt;}
.y1e7{bottom:404.678667pt;}
.y126{bottom:408.988533pt;}
.y4b{bottom:410.102533pt;}
.y64{bottom:410.462533pt;}
.y112{bottom:410.582533pt;}
.y1a6{bottom:412.678667pt;}
.ybf{bottom:413.055733pt;}
.yf2{bottom:415.514933pt;}
.y1e6{bottom:418.012000pt;}
.y125{bottom:424.988533pt;}
.y1a5{bottom:426.012000pt;}
.y63{bottom:426.462533pt;}
.y111{bottom:426.582533pt;}
.y19{bottom:426.723733pt;}
.ybe{bottom:427.498400pt;}
.yf1{bottom:429.957600pt;}
.y1e5{bottom:431.345333pt;}
.y1a4{bottom:439.345333pt;}
.y124{bottom:440.988533pt;}
.y4a{bottom:441.982533pt;}
.ybd{bottom:442.039733pt;}
.y62{bottom:442.462533pt;}
.y110{bottom:442.582533pt;}
.yf0{bottom:444.400267pt;}
.y1e4{bottom:444.678667pt;}
.y18{bottom:451.030400pt;}
.y1a3{bottom:452.678667pt;}
.ybc{bottom:456.482400pt;}
.y123{bottom:456.988533pt;}
.y1e3{bottom:458.012000pt;}
.y61{bottom:458.462533pt;}
.y10f{bottom:458.582533pt;}
.yef{bottom:458.842933pt;}
.y1a2{bottom:466.012000pt;}
.y17{bottom:467.030400pt;}
.ybb{bottom:470.925067pt;}
.y1e2{bottom:471.345333pt;}
.y122{bottom:472.988533pt;}
.yee{bottom:473.285600pt;}
.y60{bottom:474.462533pt;}
.y10e{bottom:474.582533pt;}
.y1a1{bottom:479.345333pt;}
.y16{bottom:483.030400pt;}
.y1e1{bottom:484.678667pt;}
.yba{bottom:485.367733pt;}
.yed{bottom:487.728267pt;}
.y121{bottom:488.988533pt;}
.y49{bottom:490.462533pt;}
.y10d{bottom:490.582533pt;}
.y1a0{bottom:492.678667pt;}
.y1e0{bottom:498.012000pt;}
.y15{bottom:499.030400pt;}
.yb9{bottom:499.810400pt;}
.yec{bottom:502.170933pt;}
.y19f{bottom:506.012000pt;}
.y48{bottom:506.462533pt;}
.y10c{bottom:506.582533pt;}
.y1df{bottom:511.345333pt;}
.yb8{bottom:514.253067pt;}
.y14{bottom:515.030400pt;}
.yeb{bottom:516.613600pt;}
.y19e{bottom:519.345333pt;}
.y120{bottom:520.538000pt;}
.y47{bottom:522.462533pt;}
.y1de{bottom:524.678667pt;}
.yb7{bottom:528.695733pt;}
.y13{bottom:531.030400pt;}
.yea{bottom:531.133733pt;}
.y19d{bottom:532.678667pt;}
.y11f{bottom:533.871333pt;}
.y1dd{bottom:538.012000pt;}
.y10b{bottom:538.222533pt;}
.y46{bottom:538.462533pt;}
.yb6{bottom:543.138400pt;}
.ye9{bottom:545.576400pt;}
.y19c{bottom:546.012000pt;}
.y12{bottom:547.030400pt;}
.y11e{bottom:547.204667pt;}
.y1dc{bottom:551.345333pt;}
.y10a{bottom:554.222533pt;}
.y45{bottom:554.462533pt;}
.yb5{bottom:557.581067pt;}
.y19b{bottom:559.345333pt;}
.ye8{bottom:560.019067pt;}
.y11{bottom:563.030400pt;}
.y1db{bottom:564.678667pt;}
.y109{bottom:570.222533pt;}
.y44{bottom:570.462533pt;}
.yb4{bottom:572.023733pt;}
.y19a{bottom:572.678667pt;}
.ye7{bottom:574.461733pt;}
.y11d{bottom:575.958000pt;}
.y1da{bottom:578.012000pt;}
.y10{bottom:579.030400pt;}
.y199{bottom:586.012000pt;}
.y108{bottom:586.222533pt;}
.y16e{bottom:586.342533pt;}
.y43{bottom:586.462533pt;}
.yb3{bottom:586.466400pt;}
.ye6{bottom:588.904400pt;}
.y11c{bottom:589.830000pt;}
.y1d9{bottom:591.345333pt;}
.yf{bottom:595.030400pt;}
.y198{bottom:599.345333pt;}
.yb2{bottom:600.909067pt;}
.y16d{bottom:602.342533pt;}
.y42{bottom:602.462533pt;}
.y11b{bottom:602.595867pt;}
.ye5{bottom:603.347067pt;}
.y1d8{bottom:604.678667pt;}
.ye{bottom:611.030400pt;}
.y197{bottom:612.678667pt;}
.yb1{bottom:615.351733pt;}
.ye4{bottom:617.789733pt;}
.y1d7{bottom:618.012000pt;}
.y107{bottom:618.102533pt;}
.y11a{bottom:618.235867pt;}
.y16c{bottom:618.342533pt;}
.y41{bottom:618.462533pt;}
.y196{bottom:626.012000pt;}
.yb0{bottom:629.794400pt;}
.y1d6{bottom:631.345333pt;}
.ye3{bottom:632.232400pt;}
.y16b{bottom:634.342533pt;}
.y40{bottom:634.462533pt;}
.y195{bottom:639.345333pt;}
.yaf{bottom:644.237067pt;}
.y1d5{bottom:644.678667pt;}
.ye2{bottom:646.675067pt;}
.y106{bottom:649.982533pt;}
.y16a{bottom:650.342533pt;}
.y3f{bottom:650.462533pt;}
.yd{bottom:651.170933pt;}
.y194{bottom:652.678667pt;}
.y1d4{bottom:658.012000pt;}
.yae{bottom:658.679733pt;}
.ye1{bottom:661.117733pt;}
.yc{bottom:662.238267pt;}
.y193{bottom:666.012000pt;}
.y3e{bottom:666.462533pt;}
.y1d3{bottom:671.345333pt;}
.yad{bottom:673.122400pt;}
.ye0{bottom:675.560400pt;}
.y192{bottom:679.345333pt;}
.y169{bottom:681.982533pt;}
.y3d{bottom:682.462533pt;}
.y1d2{bottom:684.678667pt;}
.yac{bottom:687.565067pt;}
.ydf{bottom:690.227067pt;}
.y191{bottom:692.678667pt;}
.yb{bottom:695.252400pt;}
.y1d1{bottom:698.012000pt;}
.y17c{bottom:698.102533pt;}
.y3c{bottom:698.462533pt;}
.yab{bottom:702.007733pt;}
.ya{bottom:702.429867pt;}
.yde{bottom:704.669733pt;}
.y190{bottom:706.012000pt;}
.y1d0{bottom:711.345333pt;}
.y9{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.yaa{bottom:716.450400pt;}
.ydd{bottom:719.112400pt;}
.y18f{bottom:719.345333pt;}
.y1cf{bottom:724.678667pt;}
.y3a{bottom:730.462533pt;}
.ya9{bottom:730.893067pt;}
.y8{bottom:731.252400pt;}
.y18e{bottom:732.678667pt;}
.ydc{bottom:733.555067pt;}
.y1ce{bottom:738.012000pt;}
.ya8{bottom:745.335733pt;}
.y18d{bottom:746.012000pt;}
.y39{bottom:746.462533pt;}
.ydb{bottom:747.997733pt;}
.y1cd{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y18c{bottom:759.345333pt;}
.ya7{bottom:759.778400pt;}
.yda{bottom:762.440400pt;}
.y38{bottom:762.462533pt;}
.y1cc{bottom:764.678667pt;}
.y153{bottom:768.988533pt;}
.y18b{bottom:772.678667pt;}
.ya6{bottom:774.221067pt;}
.yd9{bottom:776.883067pt;}
.y1cb{bottom:778.012000pt;}
.y37{bottom:778.462533pt;}
.y152{bottom:784.988533pt;}
.y18a{bottom:786.012000pt;}
.ya5{bottom:788.663733pt;}
.yd8{bottom:791.325733pt;}
.y1ca{bottom:791.345333pt;}
.y36{bottom:794.462533pt;}
.y163{bottom:794.475867pt;}
.y15a{bottom:794.595867pt;}
.y6{bottom:797.844667pt;}
.y189{bottom:799.345333pt;}
.ya4{bottom:803.106400pt;}
.y1c9{bottom:804.678667pt;}
.yd7{bottom:805.768400pt;}
.y35{bottom:810.462533pt;}
.y162{bottom:810.475867pt;}
.y159{bottom:810.595867pt;}
.y188{bottom:812.678667pt;}
.y151{bottom:815.957867pt;}
.ya3{bottom:817.549067pt;}
.y1c8{bottom:818.012000pt;}
.yd6{bottom:820.211067pt;}
.y187{bottom:826.012000pt;}
.y34{bottom:826.462533pt;}
.y161{bottom:826.475867pt;}
.y150{bottom:829.829867pt;}
.y5{bottom:830.254267pt;}
.y1c7{bottom:831.345333pt;}
.ya2{bottom:831.991733pt;}
.yd5{bottom:834.653733pt;}
.y186{bottom:839.345333pt;}
.y158{bottom:842.235867pt;}
.y33{bottom:842.462533pt;}
.y160{bottom:842.475867pt;}
.y14f{bottom:842.595867pt;}
.y1c6{bottom:844.678667pt;}
.ya1{bottom:846.434400pt;}
.yd4{bottom:849.096400pt;}
.y185{bottom:852.678667pt;}
.y1c5{bottom:858.012000pt;}
.y14e{bottom:858.235867pt;}
.y32{bottom:858.462533pt;}
.y15f{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.yd3{bottom:863.539067pt;}
.y184{bottom:866.012000pt;}
.y1c4{bottom:871.345333pt;}
.ya0{bottom:874.445067pt;}
.y31{bottom:874.462533pt;}
.y15e{bottom:874.475867pt;}
.y183{bottom:879.345333pt;}
.y1c3{bottom:884.678667pt;}
.y30{bottom:890.462533pt;}
.y15d{bottom:890.475867pt;}
.yd2{bottom:891.549733pt;}
.y182{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y1c2{bottom:898.012000pt;}
.y9f{bottom:905.129200pt;}
.y2f{bottom:906.462533pt;}
.y15c{bottom:906.475867pt;}
.y1c1{bottom:911.345333pt;}
.y181{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.y15b{bottom:922.475867pt;}
.y1c0{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y9e{bottom:1006.584000pt;}
.y78{bottom:1006.594400pt;}
.y14d{bottom:1006.597067pt;}
.y138{bottom:1006.597333pt;}
.y200{bottom:1006.598667pt;}
.y175{bottom:1006.602933pt;}
.yd1{bottom:1006.666400pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:16.977598pt;}
.h1b{height:21.826062pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.h13{height:28.437500pt;}
.h15{height:28.916667pt;}
.hd{height:29.121094pt;}
.h7{height:29.160156pt;}
.h1c{height:29.645833pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h10{height:37.057292pt;}
.h12{height:37.437500pt;}
.ha{height:38.828125pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.h18{height:41.895929pt;}
.h1a{height:41.909796pt;}
.h19{height:41.910329pt;}
.h17{height:41.924196pt;}
.h16{height:42.117188pt;}
.hc{height:46.796875pt;}
.h1d{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h11{height:52.405245pt;}
.h14{height:58.228667pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x1d{left:69.921200pt;}
.x24{left:73.804800pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x13{left:88.818933pt;}
.x31{left:90.708800pt;}
.x4{left:94.488133pt;}
.x1e{left:96.274933pt;}
.xc{left:98.271467pt;}
.x32{left:109.606533pt;}
.x3{left:111.491467pt;}
.x23{left:114.658133pt;}
.x6{left:117.165333pt;}
.xb{left:128.644800pt;}
.x22{left:171.351467pt;}
.x2b{left:173.540667pt;}
.x21{left:187.644800pt;}
.x5{left:189.223467pt;}
.x14{left:190.866933pt;}
.x30{left:195.689200pt;}
.x25{left:203.444800pt;}
.x15{left:292.914933pt;}
.x1f{left:294.557600pt;}
.x9{left:404.481333pt;}
.xd{left:406.294000pt;}
.x28{left:414.492400pt;}
.x2c{left:419.604800pt;}
.x11{left:425.209200pt;}
.x7{left:427.085333pt;}
.x2a{left:428.965867pt;}
.xe{left:436.543600pt;}
.x33{left:447.867867pt;}
.x12{left:455.449200pt;}
.x26{left:467.724800pt;}
.x29{left:514.872400pt;}
.x2d{left:516.204800pt;}
.x27{left:527.258133pt;}
.x19{left:584.786933pt;}
.x10{left:589.770933pt;}
.x1b{left:592.210933pt;}
.x16{left:599.154933pt;}
.x20{left:600.338933pt;}
.x17{left:601.522933pt;}
.x1a{left:604.189600pt;}
.x18{left:605.224267pt;}
.x2{left:616.324800pt;}
.x2e{left:641.526800pt;}
.xf{left:647.459200pt;}
.x2f{left:661.216133pt;}
.x1c{left:666.354933pt;}
}




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