
    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_6d313187b3eefdf17e79f835.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_632124e13166ec4ca031d6ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858000;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_2da2817c22ce467986d3d9ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.742000;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_8d1e0c98a041de1e1d5a9c1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_a294a63bcb1d342f63e4e668.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.141000;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_16823016c549972052c27810.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093000;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_75c7552c5aff095f1ba32fae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.841000;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_f384bd3bdbd0714afef48458.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.108000;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_4a2d0312581bf7c359be0a4c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.108000;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_dc974fe22b3a63cdb4227322.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_f384bd3bdbd0714afef48458.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.108000;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_a4684735e000fd3d8c80abfc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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_f384bd3bdbd0714afef48458.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.108000;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_a4684735e000fd3d8c80abfc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.722656;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_dc974fe22b3a63cdb4227322.woff2')format("woff");}.fff{font-family:fff;line-height:0.700000;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_d6487372d632957b0ccecd17.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.108000;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_80d1053e8d5cb8da377167e4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f384bd3bdbd0714afef48458.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.108000;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_dc974fe22b3a63cdb4227322.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.700000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m6{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244897,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262498,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v5{vertical-align:-22.770000px;}
.v4{vertical-align:-16.830000px;}
.v2{vertical-align:-4.125600px;}
.v1{vertical-align:-2.494800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.814400px;}
.ls5{letter-spacing:-5.220000px;}
.ls3{letter-spacing:-4.680000px;}
.ls26{letter-spacing:-2.070000px;}
.ls7{letter-spacing:-1.680000px;}
.ls4{letter-spacing:-1.620000px;}
.lsb{letter-spacing:-1.500000px;}
.ls6{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls28{letter-spacing:-1.035000px;}
.ls27{letter-spacing:-0.918000px;}
.ls21{letter-spacing:-0.900000px;}
.ls1{letter-spacing:-0.726000px;}
.ls14{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.690000px;}
.ls23{letter-spacing:-0.510000px;}
.ls13{letter-spacing:-0.480000px;}
.ls2c{letter-spacing:-0.414000px;}
.lsc{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.345000px;}
.ls2d{letter-spacing:-0.255000px;}
.ls1f{letter-spacing:-0.240000px;}
.ls2a{letter-spacing:-0.207000px;}
.ls1e{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.060000px;}
.lse{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.255000px;}
.ls16{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.780000px;}
.ls20{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.900000px;}
.ls1d{letter-spacing:1.140000px;}
.ls0{letter-spacing:1.188000px;}
.ls11{letter-spacing:1.260000px;}
.ls22{letter-spacing:1.296000px;}
.ls1c{letter-spacing:1.320000px;}
.ls18{letter-spacing:1.560000px;}
.ls19{letter-spacing:1.620000px;}
.ls2b{letter-spacing:4.131000px;}
.ls15{letter-spacing:12.420000px;}
.lsd{letter-spacing:16.500000px;}
.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;}
}
.ws7d{word-spacing:-38.916000px;}
.ws1{word-spacing:-27.540000px;}
.ws2{word-spacing:-19.278000px;}
.ws7e{word-spacing:-17.250000px;}
.wsc5{word-spacing:-16.215000px;}
.ws0{word-spacing:-16.200000px;}
.ws22{word-spacing:-15.240000px;}
.ws11{word-spacing:-15.000000px;}
.ws31{word-spacing:-14.580000px;}
.ws4d{word-spacing:-14.520000px;}
.ws5c{word-spacing:-14.280000px;}
.ws35{word-spacing:-14.040000px;}
.ws5a{word-spacing:-13.560000px;}
.ws8{word-spacing:-13.500000px;}
.ws6b{word-spacing:-13.320000px;}
.ws70{word-spacing:-13.200000px;}
.ws9c{word-spacing:-13.005000px;}
.ws64{word-spacing:-12.780000px;}
.ws7f{word-spacing:-12.750000px;}
.wsd5{word-spacing:-12.495000px;}
.ws37{word-spacing:-12.420000px;}
.ws42{word-spacing:-12.180000px;}
.ws55{word-spacing:-12.000000px;}
.ws1c{word-spacing:-11.880000px;}
.ws9d{word-spacing:-11.832000px;}
.ws6c{word-spacing:-11.640000px;}
.ws2a{word-spacing:-11.220000px;}
.ws36{word-spacing:-11.191350px;}
.ws19{word-spacing:-11.160000px;}
.ws49{word-spacing:-11.040000px;}
.wse{word-spacing:-10.920000px;}
.ws34{word-spacing:-10.620000px;}
.ws23{word-spacing:-10.020000px;}
.ws28{word-spacing:-9.960000px;}
.ws67{word-spacing:-9.900000px;}
.ws26{word-spacing:-9.540000px;}
.ws60{word-spacing:-9.240000px;}
.ws2c{word-spacing:-9.060000px;}
.ws1d{word-spacing:-9.000000px;}
.ws45{word-spacing:-8.940000px;}
.ws71{word-spacing:-8.340000px;}
.ws73{word-spacing:-8.100000px;}
.ws32{word-spacing:-7.380000px;}
.ws2e{word-spacing:-7.320000px;}
.ws24{word-spacing:-7.260000px;}
.ws7{word-spacing:-7.166286px;}
.ws17{word-spacing:-7.080000px;}
.wsf{word-spacing:-7.020000px;}
.ws51{word-spacing:-6.900000px;}
.ws1f{word-spacing:-6.660000px;}
.ws6f{word-spacing:-6.600000px;}
.ws4a{word-spacing:-6.540000px;}
.wsaa{word-spacing:-6.417000px;}
.wsd7{word-spacing:-6.210000px;}
.ws65{word-spacing:-6.120000px;}
.ws53{word-spacing:-6.000000px;}
.ws12{word-spacing:-5.400000px;}
.ws74{word-spacing:-5.175000px;}
.ws57{word-spacing:-4.980000px;}
.ws13{word-spacing:-4.920000px;}
.ws69{word-spacing:-4.800000px;}
.wsb4{word-spacing:-4.794000px;}
.ws6a{word-spacing:-4.620000px;}
.ws3f{word-spacing:-4.260000px;}
.ws6e{word-spacing:-4.020000px;}
.wsa6{word-spacing:-3.795000px;}
.ws11b{word-spacing:-3.450000px;}
.ws111{word-spacing:-3.312000px;}
.ws39{word-spacing:-3.300000px;}
.wsc9{word-spacing:-3.243000px;}
.ws5e{word-spacing:-3.180000px;}
.wsc6{word-spacing:-3.174000px;}
.ws9f{word-spacing:-3.105000px;}
.wsce{word-spacing:-3.036000px;}
.wsc{word-spacing:-2.970000px;}
.ws61{word-spacing:-2.940000px;}
.wse0{word-spacing:-2.898000px;}
.ws3b{word-spacing:-2.880000px;}
.ws87{word-spacing:-2.829000px;}
.ws5d{word-spacing:-2.820000px;}
.ws9b{word-spacing:-2.805000px;}
.ws54{word-spacing:-2.760000px;}
.ws10e{word-spacing:-2.691000px;}
.wsb2{word-spacing:-2.622000px;}
.ws86{word-spacing:-2.553000px;}
.wseb{word-spacing:-2.499000px;}
.wsf7{word-spacing:-2.484000px;}
.wsa3{word-spacing:-2.415000px;}
.ws27{word-spacing:-2.400000px;}
.wsc3{word-spacing:-2.397000px;}
.ws92{word-spacing:-2.346000px;}
.wse3{word-spacing:-2.295000px;}
.wsfd{word-spacing:-2.280000px;}
.wscf{word-spacing:-2.277000px;}
.ws77{word-spacing:-2.220000px;}
.wscb{word-spacing:-2.208000px;}
.ws78{word-spacing:-2.160000px;}
.wsc0{word-spacing:-2.142000px;}
.wsda{word-spacing:-2.139000px;}
.ws1b{word-spacing:-2.100000px;}
.wsa9{word-spacing:-2.070000px;}
.ws83{word-spacing:-2.001000px;}
.wsd{word-spacing:-1.998000px;}
.wsb5{word-spacing:-1.989000px;}
.ws2f{word-spacing:-1.980000px;}
.wsdf{word-spacing:-1.932000px;}
.ws3d{word-spacing:-1.920000px;}
.wsdb{word-spacing:-1.863000px;}
.ws109{word-spacing:-1.785000px;}
.wsfe{word-spacing:-1.725000px;}
.wsfa{word-spacing:-1.683000px;}
.ws56{word-spacing:-1.680000px;}
.wse9{word-spacing:-1.632000px;}
.ws4e{word-spacing:-1.620000px;}
.ws94{word-spacing:-1.587000px;}
.ws48{word-spacing:-1.560000px;}
.wsbb{word-spacing:-1.530000px;}
.ws10f{word-spacing:-1.518000px;}
.ws7a{word-spacing:-1.500000px;}
.ws15{word-spacing:-1.440000px;}
.ws120{word-spacing:-1.428000px;}
.ws1a{word-spacing:-1.380000px;}
.ws108{word-spacing:-1.377000px;}
.ws59{word-spacing:-1.320000px;}
.ws116{word-spacing:-1.311000px;}
.ws5f{word-spacing:-1.200000px;}
.wsbe{word-spacing:-1.173000px;}
.wsf0{word-spacing:-1.104000px;}
.ws25{word-spacing:-1.080000px;}
.ws9e{word-spacing:-1.035000px;}
.ws72{word-spacing:-1.020000px;}
.ws104{word-spacing:-0.960000px;}
.wse7{word-spacing:-0.918000px;}
.ws3c{word-spacing:-0.900000px;}
.wse5{word-spacing:-0.867000px;}
.ws101{word-spacing:-0.828000px;}
.ws7c{word-spacing:-0.816000px;}
.ws4c{word-spacing:-0.780000px;}
.wsee{word-spacing:-0.765000px;}
.wsa5{word-spacing:-0.759000px;}
.ws1e{word-spacing:-0.720000px;}
.ws11f{word-spacing:-0.663000px;}
.ws95{word-spacing:-0.621000px;}
.ws41{word-spacing:-0.600000px;}
.wsab{word-spacing:-0.552000px;}
.ws2b{word-spacing:-0.540000px;}
.wsec{word-spacing:-0.510000px;}
.ws118{word-spacing:-0.483000px;}
.ws2d{word-spacing:-0.420000px;}
.ws98{word-spacing:-0.414000px;}
.ws3e{word-spacing:-0.360000px;}
.ws107{word-spacing:-0.357000px;}
.ws10{word-spacing:-0.300000px;}
.ws91{word-spacing:-0.276000px;}
.wsb7{word-spacing:-0.255000px;}
.ws46{word-spacing:-0.240000px;}
.wsa1{word-spacing:-0.207000px;}
.wsed{word-spacing:-0.204000px;}
.ws10d{word-spacing:-0.102000px;}
.wsae{word-spacing:-0.069000px;}
.ws21{word-spacing:-0.066000px;}
.wsb6{word-spacing:-0.051000px;}
.ws20{word-spacing:-0.044765px;}
.ws4{word-spacing:0.000000px;}
.ws9a{word-spacing:0.051000px;}
.wsa7{word-spacing:0.069000px;}
.ws76{word-spacing:0.120000px;}
.ws84{word-spacing:0.138000px;}
.wsc4{word-spacing:0.153000px;}
.ws16{word-spacing:0.180000px;}
.ws119{word-spacing:0.204000px;}
.wsd0{word-spacing:0.207000px;}
.ws30{word-spacing:0.240000px;}
.ws8f{word-spacing:0.276000px;}
.ws4f{word-spacing:0.300000px;}
.ws44{word-spacing:0.360000px;}
.wsb9{word-spacing:0.408000px;}
.ws11e{word-spacing:0.510000px;}
.ws85{word-spacing:0.552000px;}
.ws99{word-spacing:0.561000px;}
.ws33{word-spacing:0.600000px;}
.ws38{word-spacing:0.660000px;}
.wsbf{word-spacing:0.663000px;}
.wsdc{word-spacing:0.690000px;}
.ws3{word-spacing:0.726000px;}
.wsef{word-spacing:0.759000px;}
.wsb8{word-spacing:0.765000px;}
.wsd1{word-spacing:0.828000px;}
.ws3a{word-spacing:0.840000px;}
.ws5b{word-spacing:0.900000px;}
.ws8d{word-spacing:0.966000px;}
.ws62{word-spacing:1.020000px;}
.ws8e{word-spacing:1.035000px;}
.ws5{word-spacing:1.080000px;}
.wsf2{word-spacing:1.104000px;}
.ws14{word-spacing:1.200000px;}
.ws106{word-spacing:1.224000px;}
.ws97{word-spacing:1.242000px;}
.ws8b{word-spacing:1.311000px;}
.ws68{word-spacing:1.380000px;}
.wse2{word-spacing:1.428000px;}
.wsf8{word-spacing:1.449000px;}
.ws18{word-spacing:1.500000px;}
.wse8{word-spacing:1.530000px;}
.ws4b{word-spacing:1.560000px;}
.wsca{word-spacing:1.587000px;}
.ws6{word-spacing:1.620000px;}
.wsf1{word-spacing:1.656000px;}
.ws79{word-spacing:1.680000px;}
.ws43{word-spacing:1.740000px;}
.wsbc{word-spacing:1.785000px;}
.wsff{word-spacing:1.794000px;}
.ws66{word-spacing:1.800000px;}
.ws105{word-spacing:1.920000px;}
.wsaf{word-spacing:1.932000px;}
.ws10b{word-spacing:1.938000px;}
.ws115{word-spacing:2.001000px;}
.wsa8{word-spacing:2.070000px;}
.wsb0{word-spacing:2.139000px;}
.ws88{word-spacing:2.208000px;}
.ws63{word-spacing:2.220000px;}
.ws90{word-spacing:2.277000px;}
.wsc1{word-spacing:2.295000px;}
.wsba{word-spacing:2.397000px;}
.wsb3{word-spacing:2.415000px;}
.ws11a{word-spacing:2.484000px;}
.ws100{word-spacing:2.553000px;}
.ws29{word-spacing:2.580000px;}
.wsf5{word-spacing:2.622000px;}
.ws58{word-spacing:2.700000px;}
.wsfb{word-spacing:2.754000px;}
.ws96{word-spacing:2.760000px;}
.ws8c{word-spacing:2.829000px;}
.wsf3{word-spacing:2.898000px;}
.ws10c{word-spacing:2.907000px;}
.ws47{word-spacing:3.060000px;}
.ws11d{word-spacing:3.111000px;}
.ws6d{word-spacing:3.180000px;}
.ws50{word-spacing:3.240000px;}
.wsd8{word-spacing:3.243000px;}
.wsac{word-spacing:3.312000px;}
.wsa2{word-spacing:3.381000px;}
.wsa{word-spacing:3.564000px;}
.wsd9{word-spacing:3.726000px;}
.ws10a{word-spacing:3.774000px;}
.wsfc{word-spacing:3.900000px;}
.ws82{word-spacing:4.002000px;}
.wsde{word-spacing:4.071000px;}
.wse6{word-spacing:4.131000px;}
.wsbd{word-spacing:4.335000px;}
.ws113{word-spacing:4.347000px;}
.ws81{word-spacing:4.416000px;}
.wse1{word-spacing:4.485000px;}
.wse4{word-spacing:4.539000px;}
.ws89{word-spacing:4.554000px;}
.ws114{word-spacing:4.692000px;}
.wsf4{word-spacing:4.968000px;}
.wsea{word-spacing:4.998000px;}
.wsd2{word-spacing:5.037000px;}
.wsa4{word-spacing:5.175000px;}
.wsa0{word-spacing:5.244000px;}
.ws11c{word-spacing:5.559000px;}
.wsb1{word-spacing:5.658000px;}
.ws75{word-spacing:5.727000px;}
.wsd4{word-spacing:5.763000px;}
.ws103{word-spacing:5.865000px;}
.wsc2{word-spacing:6.018000px;}
.ws102{word-spacing:6.210000px;}
.wsc8{word-spacing:6.417000px;}
.ws117{word-spacing:6.486000px;}
.wscc{word-spacing:6.831000px;}
.ws93{word-spacing:7.176000px;}
.wsb{word-spacing:7.290000px;}
.ws110{word-spacing:7.452000px;}
.wsf6{word-spacing:7.521000px;}
.wsad{word-spacing:7.659000px;}
.wsd6{word-spacing:7.797000px;}
.wsd3{word-spacing:8.004000px;}
.wsc7{word-spacing:8.211000px;}
.wscd{word-spacing:8.487000px;}
.wsdd{word-spacing:8.625000px;}
.ws112{word-spacing:8.694000px;}
.ws8a{word-spacing:8.970000px;}
.ws7b{word-spacing:15.984000px;}
.ws9{word-spacing:18.468000px;}
.wsf9{word-spacing:23.391000px;}
.ws40{word-spacing:45.000000px;}
.ws80{word-spacing:51.750000px;}
.ws52{word-spacing:99.900000px;}
._1a{margin-left:-9.876000px;}
._14{margin-left:-8.346000px;}
._9{margin-left:-7.234247px;}
._b{margin-left:-5.999400px;}
._6{margin-left:-4.362000px;}
._5{margin-left:-3.060000px;}
._3{margin-left:-1.254000px;}
._1{width:1.188000px;}
._2{width:2.838000px;}
._0{width:3.894000px;}
._7{width:5.430000px;}
._4{width:7.740000px;}
._a{width:10.530000px;}
._8{width:20.989200px;}
._18{width:22.950000px;}
._1c{width:41.340000px;}
._15{width:43.920000px;}
._e{width:44.999400px;}
._1d{width:47.280000px;}
._13{width:50.400000px;}
._19{width:51.750000px;}
._1b{width:58.935000px;}
._17{width:107.682000px;}
._16{width:112.008000px;}
._10{width:114.754247px;}
._11{width:115.848000px;}
._12{width:117.298800px;}
._f{width:123.221400px;}
._d{width:129.173400px;}
._c{width:130.581000px;}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:30.600000px;}
.fsf{font-size:41.400000px;}
.fse{font-size:44.765400px;}
.fs11{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fsd{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fsb{font-size:69.000000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:77.787600px;}
.fsc{font-size:78.000000px;}
.fs8{font-size:79.625400px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs9{font-size:91.875000px;}
.fs7{font-size:98.000400px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yfb{bottom:2.942850px;}
.yd5{bottom:3.596850px;}
.y45{bottom:8.644950px;}
.y2c{bottom:27.144900px;}
.y2b{bottom:42.894900px;}
.y66{bottom:44.268150px;}
.y3{bottom:59.538750px;}
.y2{bottom:89.298300px;}
.y2d{bottom:106.299150px;}
.y1{bottom:114.790800px;}
.y1da{bottom:148.796400px;}
.y126{bottom:148.805400px;}
.y18c{bottom:148.812150px;}
.yd3{bottom:148.816650px;}
.y43{bottom:148.833300px;}
.y85{bottom:148.862400px;}
.y65{bottom:149.430150px;}
.y29{bottom:149.824500px;}
.ya2{bottom:149.843250px;}
.y13{bottom:151.008336px;}
.yf9{bottom:153.026400px;}
.y1d9{bottom:162.298650px;}
.y125{bottom:162.307650px;}
.y18b{bottom:162.314400px;}
.yf8{bottom:162.316650px;}
.y28{bottom:164.823000px;}
.y42{bottom:165.333300px;}
.y84{bottom:165.422400px;}
.yd2{bottom:166.526400px;}
.y64{bottom:166.560150px;}
.ya1{bottom:167.378250px;}
.y12{bottom:173.819550px;}
.y1d8{bottom:175.800900px;}
.y16b{bottom:175.805400px;}
.y124{bottom:175.809900px;}
.y18a{bottom:175.816650px;}
.yf7{bottom:180.026400px;}
.y83{bottom:181.982400px;}
.ya0{bottom:184.913250px;}
.y1d7{bottom:189.303150px;}
.y16a{bottom:189.307650px;}
.y123{bottom:189.312150px;}
.yf6{bottom:189.316650px;}
.y189{bottom:189.318900px;}
.y27{bottom:189.420000px;}
.y1c8{bottom:193.526400px;}
.y41{bottom:193.847850px;}
.y63{bottom:196.301250px;}
.y1d6{bottom:202.805400px;}
.y169{bottom:202.809900px;}
.y122{bottom:202.814400px;}
.y26{bottom:204.418500px;}
.yd1{bottom:205.821150px;}
.yf5{bottom:207.026400px;}
.y40{bottom:210.347850px;}
.y82{bottom:210.536850px;}
.y62{bottom:213.431250px;}
.y9f{bottom:214.444500px;}
.y1d5{bottom:216.307650px;}
.y168{bottom:216.312150px;}
.y121{bottom:216.316650px;}
.y25{bottom:219.417000px;}
.y145{bottom:220.526400px;}
.yd0{bottom:223.978650px;}
.y1d4{bottom:229.809900px;}
.y167{bottom:229.814400px;}
.y61{bottom:230.561250px;}
.y188{bottom:232.810050px;}
.y120{bottom:234.026400px;}
.y1c7{bottom:235.185900px;}
.y3f{bottom:238.862250px;}
.ycf{bottom:242.136150px;}
.y1d3{bottom:243.312150px;}
.y11f{bottom:243.314400px;}
.y166{bottom:243.316650px;}
.y24{bottom:244.014000px;}
.yf4{bottom:246.876750px;}
.y187{bottom:250.420050px;}
.y81{bottom:252.640950px;}
.y1c6{bottom:254.678400px;}
.y3e{bottom:255.362250px;}
.y1d2{bottom:256.814400px;}
.y11e{bottom:256.816650px;}
.y9e{bottom:258.511950px;}
.y23{bottom:259.012500px;}
.y60{bottom:259.684950px;}
.y165{bottom:261.026400px;}
.yf3{bottom:266.414250px;}
.y186{bottom:268.030050px;}
.y80{bottom:269.200950px;}
.y164{bottom:270.309900px;}
.y1d1{bottom:270.316650px;}
.y3d{bottom:271.862250px;}
.y22{bottom:274.011000px;}
.y1c5{bottom:274.170900px;}
.y11d{bottom:274.526400px;}
.y144{bottom:274.903200px;}
.y9d{bottom:276.046950px;}
.yce{bottom:277.264800px;}
.y11c{bottom:283.807650px;}
.y1ac{bottom:283.809900px;}
.y163{bottom:283.812150px;}
.y7f{bottom:285.760950px;}
.yf2{bottom:285.906750px;}
.y1d0{bottom:288.026400px;}
.y21{bottom:289.009500px;}
.y1c4{bottom:293.663400px;}
.y143{bottom:294.395700px;}
.y185{bottom:296.265600px;}
.y11b{bottom:297.309900px;}
.y1ab{bottom:297.312150px;}
.y162{bottom:297.314400px;}
.y3c{bottom:300.376800px;}
.y5f{bottom:302.925150px;}
.y20{bottom:304.008000px;}
.ybc{bottom:304.660500px;}
.yf1{bottom:305.399250px;}
.y9c{bottom:306.595500px;}
.y11a{bottom:310.812150px;}
.y1aa{bottom:310.814400px;}
.y161{bottom:310.816650px;}
.ycd{bottom:312.424800px;}
.y1c3{bottom:313.155900px;}
.y142{bottom:313.888200px;}
.y7e{bottom:314.364450px;}
.y3b{bottom:316.876800px;}
.y1f{bottom:319.006500px;}
.y5e{bottom:320.055150px;}
.ybb{bottom:321.160500px;}
.y9b{bottom:324.130500px;}
.y119{bottom:324.314400px;}
.y1a9{bottom:324.316650px;}
.y184{bottom:324.435900px;}
.yf0{bottom:324.891750px;}
.y160{bottom:328.526400px;}
.ycc{bottom:330.589800px;}
.y7d{bottom:330.924450px;}
.y1c2{bottom:332.648400px;}
.y3a{bottom:333.376800px;}
.y141{bottom:333.380700px;}
.y5d{bottom:337.185150px;}
.y15f{bottom:337.805400px;}
.y118{bottom:337.816650px;}
.y1a8{bottom:342.026400px;}
.yef{bottom:344.384250px;}
.y183{bottom:345.049650px;}
.ycb{bottom:348.754800px;}
.yba{bottom:349.660650px;}
.y15e{bottom:351.307650px;}
.y1c1{bottom:352.208400px;}
.y140{bottom:352.933200px;}
.y9a{bottom:354.700500px;}
.y117{bottom:355.526400px;}
.y7c{bottom:359.533500px;}
.y39{bottom:361.891350px;}
.yee{bottom:363.876750px;}
.y15d{bottom:364.809900px;}
.y116{bottom:364.816650px;}
.y182{bottom:365.663400px;}
.yb9{bottom:366.160650px;}
.yca{bottom:366.919800px;}
.y5c{bottom:366.932550px;}
.y1e{bottom:368.025000px;}
.y1c0{bottom:371.700900px;}
.y99{bottom:372.235500px;}
.y13f{bottom:372.425700px;}
.y15c{bottom:378.312150px;}
.y38{bottom:378.391350px;}
.y1a7{bottom:381.323400px;}
.y115{bottom:382.526400px;}
.yb8{bottom:382.660650px;}
.yed{bottom:383.429250px;}
.yc9{bottom:385.084800px;}
.y181{bottom:386.277150px;}
.y7b{bottom:388.131300px;}
.y1bf{bottom:391.193400px;}
.y15b{bottom:391.814400px;}
.y13e{bottom:391.918200px;}
.y5b{bottom:396.667500px;}
.y1a6{bottom:398.138400px;}
.y98{bottom:402.794850px;}
.yec{bottom:402.921750px;}
.y7a{bottom:404.691300px;}
.y15a{bottom:405.316650px;}
.y180{bottom:406.890900px;}
.y37{bottom:406.905900px;}
.y1be{bottom:410.685900px;}
.yb7{bottom:411.160800px;}
.y13d{bottom:411.410700px;}
.y5a{bottom:413.797500px;}
.y1a5{bottom:414.953400px;}
.y1d{bottom:417.040800px;}
.yc8{bottom:420.244800px;}
.y97{bottom:420.329850px;}
.y79{bottom:421.251300px;}
.y114{bottom:421.722900px;}
.y11{bottom:422.344350px;}
.yeb{bottom:422.414250px;}
.y159{bottom:423.026400px;}
.y36{bottom:423.405900px;}
.y17f{bottom:427.504650px;}
.yb6{bottom:427.660800px;}
.y1bd{bottom:430.178400px;}
.y13c{bottom:430.903200px;}
.y59{bottom:430.927500px;}
.y1a4{bottom:431.768400px;}
.y1c{bottom:432.040800px;}
.y113{bottom:441.577650px;}
.yea{bottom:441.906750px;}
.y17e{bottom:448.118400px;}
.y1bc{bottom:449.670900px;}
.y78{bottom:449.849250px;}
.y13b{bottom:450.395700px;}
.y96{bottom:450.889050px;}
.y35{bottom:451.920300px;}
.yc7{bottom:455.404800px;}
.yb5{bottom:456.160950px;}
.y58{bottom:460.668600px;}
.ye9{bottom:461.399250px;}
.y112{bottom:461.432400px;}
.y1a3{bottom:462.051150px;}
.y158{bottom:465.688800px;}
.y77{bottom:466.409250px;}
.y95{bottom:468.424050px;}
.y17d{bottom:468.732150px;}
.y1bb{bottom:469.163400px;}
.y13a{bottom:469.888200px;}
.yc6{bottom:473.569800px;}
.y57{bottom:477.798600px;}
.y34{bottom:480.420300px;}
.ye8{bottom:480.891750px;}
.y111{bottom:481.287150px;}
.y1a2{bottom:481.871400px;}
.y76{bottom:482.969250px;}
.yb4{bottom:484.661100px;}
.y157{bottom:485.181300px;}
.y1ba{bottom:488.655900px;}
.y17c{bottom:489.345900px;}
.y139{bottom:489.380700px;}
.yc5{bottom:491.734800px;}
.y94{bottom:498.987000px;}
.ye7{bottom:500.384250px;}
.y110{bottom:501.141900px;}
.yb3{bottom:501.161100px;}
.y1a1{bottom:501.691650px;}
.y156{bottom:504.673800px;}
.y56{bottom:507.539700px;}
.y1b9{bottom:508.148400px;}
.y138{bottom:508.895700px;}
.yc4{bottom:509.899800px;}
.y10{bottom:510.423151px;}
.y75{bottom:511.578300px;}
.y93{bottom:516.522000px;}
.ye6{bottom:519.876750px;}
.y10f{bottom:520.996650px;}
.y1a0{bottom:521.511900px;}
.y33{bottom:522.453900px;}
.y155{bottom:524.166300px;}
.y55{bottom:524.669700px;}
.y1b8{bottom:527.678400px;}
.yc3{bottom:528.064800px;}
.y74{bottom:528.138300px;}
.y137{bottom:528.388200px;}
.y17b{bottom:529.451400px;}
.yb2{bottom:529.661250px;}
.y32{bottom:538.953900px;}
.ye5{bottom:539.414250px;}
.y10e{bottom:540.851400px;}
.y19f{bottom:541.332150px;}
.y154{bottom:543.658800px;}
.y92{bottom:546.053250px;}
.yb1{bottom:546.161250px;}
.yc2{bottom:546.229800px;}
.y1b7{bottom:547.170900px;}
.y136{bottom:547.880700px;}
.y54{bottom:554.410800px;}
.yf{bottom:555.093000px;}
.y73{bottom:556.692600px;}
.ye4{bottom:558.906750px;}
.y10d{bottom:560.706150px;}
.y19e{bottom:561.152400px;}
.y153{bottom:563.151300px;}
.y1b6{bottom:566.663400px;}
.y135{bottom:567.410700px;}
.y31{bottom:567.468300px;}
.y1b{bottom:570.357150px;}
.y53{bottom:571.540800px;}
.yb0{bottom:574.661250px;}
.ye3{bottom:578.399250px;}
.y10c{bottom:580.560900px;}
.y19d{bottom:580.972650px;}
.y152{bottom:582.643800px;}
.y1a{bottom:585.355650px;}
.y1b5{bottom:586.155900px;}
.y134{bottom:586.903200px;}
.y52{bottom:588.670800px;}
.y17a{bottom:588.936900px;}
.yc1{bottom:589.886250px;}
.y91{bottom:590.120700px;}
.yaf{bottom:591.161250px;}
.ye2{bottom:597.891750px;}
.y72{bottom:598.758900px;}
.y10b{bottom:600.415650px;}
.y30{bottom:600.475650px;}
.y19c{bottom:600.792900px;}
.y151{bottom:602.136300px;}
.y1b4{bottom:605.648400px;}
.y133{bottom:606.395700px;}
.y90{bottom:607.655700px;}
.y179{bottom:609.550650px;}
.yc0{bottom:609.551250px;}
.ye1{bottom:617.384250px;}
.y51{bottom:617.794500px;}
.yae{bottom:619.661400px;}
.y10a{bottom:620.270400px;}
.y19b{bottom:620.613150px;}
.y150{bottom:621.628800px;}
.ya{bottom:623.370000px;}
.y1b3{bottom:625.140900px;}
.y132{bottom:625.888200px;}
.y178{bottom:630.164400px;}
.y2f{bottom:633.482850px;}
.y19{bottom:634.374150px;}
.ye{bottom:634.489050px;}
.yad{bottom:636.161400px;}
.ye0{bottom:636.876750px;}
.y8f{bottom:638.215050px;}
.yc{bottom:638.966700px;}
.y109{bottom:640.125150px;}
.y19a{bottom:640.418250px;}
.y14f{bottom:641.136300px;}
.y131{bottom:645.380700px;}
.y18{bottom:649.372650px;}
.y177{bottom:650.778150px;}
.y8e{bottom:655.750050px;}
.ydf{bottom:656.369250px;}
.y71{bottom:657.869850px;}
.y108{bottom:659.923950px;}
.y199{bottom:660.238500px;}
.y14e{bottom:660.628800px;}
.y50{bottom:661.041150px;}
.ybf{bottom:663.233250px;}
.yd{bottom:663.582900px;}
.y1b2{bottom:664.140900px;}
.y1cf{bottom:664.178400px;}
.y17{bottom:664.371150px;}
.yac{bottom:664.661550px;}
.y130{bottom:664.873200px;}
.yb{bottom:665.972700px;}
.y176{bottom:671.391900px;}
.y70{bottom:674.429850px;}
.y8{bottom:675.518850px;}
.y4f{bottom:678.171150px;}
.y16{bottom:679.369650px;}
.y107{bottom:679.778700px;}
.y198{bottom:680.058750px;}
.y14d{bottom:680.166300px;}
.yab{bottom:681.161550px;}
.y1ce{bottom:683.670900px;}
.y8d{bottom:686.309250px;}
.y6f{bottom:690.989850px;}
.ybe{bottom:691.384650px;}
.y175{bottom:692.005650px;}
.yde{bottom:692.877150px;}
.y12f{bottom:697.129050px;}
.y106{bottom:699.633450px;}
.y14c{bottom:699.658800px;}
.y197{bottom:699.879000px;}
.y1cd{bottom:703.163400px;}
.y8c{bottom:703.844250px;}
.y4e{bottom:707.918550px;}
.y2e{bottom:709.517550px;}
.yaa{bottom:709.661700px;}
.y7{bottom:710.018850px;}
.ybd{bottom:711.049650px;}
.y174{bottom:712.619400px;}
.y6e{bottom:716.091600px;}
.y14b{bottom:719.151300px;}
.y105{bottom:719.488200px;}
.y196{bottom:719.684400px;}
.y2a{bottom:722.553383px;}
.y1cc{bottom:722.655900px;}
.y1b1{bottom:722.710650px;}
.ya9{bottom:726.161700px;}
.y6d{bottom:732.651600px;}
.y173{bottom:733.233150px;}
.y8b{bottom:734.403450px;}
.y4d{bottom:737.659800px;}
.y14a{bottom:738.643800px;}
.y104{bottom:739.342950px;}
.y195{bottom:739.504650px;}
.y1cb{bottom:742.148400px;}
.y12e{bottom:742.163400px;}
.ydd{bottom:742.185900px;}
.y1b0{bottom:742.203150px;}
.ya8{bottom:742.661700px;}
.y6c{bottom:749.211600px;}
.y8a{bottom:751.938450px;}
.y9{bottom:753.499350px;}
.y172{bottom:753.846900px;}
.y4c{bottom:754.789800px;}
.y149{bottom:758.136300px;}
.y103{bottom:759.197700px;}
.y194{bottom:759.324900px;}
.y1ca{bottom:761.640900px;}
.y12d{bottom:761.655900px;}
.ydc{bottom:761.678400px;}
.y1af{bottom:761.695650px;}
.ya7{bottom:771.161850px;}
.y6b{bottom:774.313500px;}
.y171{bottom:774.460650px;}
.y148{bottom:777.628800px;}
.y102{bottom:779.052450px;}
.y193{bottom:779.145150px;}
.y12c{bottom:781.148400px;}
.ydb{bottom:781.170900px;}
.y1ae{bottom:781.188150px;}
.y6{bottom:782.192100px;}
.y89{bottom:782.497800px;}
.y4b{bottom:784.524600px;}
.ya6{bottom:787.661850px;}
.y6a{bottom:790.873500px;}
.y170{bottom:795.074400px;}
.y147{bottom:797.121300px;}
.y101{bottom:798.869400px;}
.y192{bottom:798.961500px;}
.y88{bottom:800.032800px;}
.y1c9{bottom:800.640900px;}
.y12b{bottom:800.648400px;}
.yda{bottom:800.663400px;}
.y1ad{bottom:800.680650px;}
.y4a{bottom:801.654600px;}
.ya5{bottom:804.161850px;}
.y69{bottom:807.433500px;}
.y16f{bottom:815.688150px;}
.y100{bottom:818.724150px;}
.y191{bottom:818.781750px;}
.y49{bottom:818.784600px;}
.yd9{bottom:820.155900px;}
.y12a{bottom:820.173150px;}
.y146{bottom:829.377150px;}
.y87{bottom:830.592000px;}
.y68{bottom:832.542000px;}
.ya4{bottom:832.662000px;}
.y16e{bottom:836.301900px;}
.yff{bottom:838.578900px;}
.yd8{bottom:839.648400px;}
.y129{bottom:839.665650px;}
.y5{bottom:845.192100px;}
.y86{bottom:848.127000px;}
.y48{bottom:848.532000px;}
.y67{bottom:849.102000px;}
.ya3{bottom:849.162000px;}
.y190{bottom:849.228300px;}
.y16d{bottom:856.915650px;}
.yfe{bottom:858.433650px;}
.yd7{bottom:859.140900px;}
.y128{bottom:859.158150px;}
.y47{bottom:865.662000px;}
.y18f{bottom:866.044800px;}
.y16c{bottom:877.529400px;}
.yfd{bottom:878.288400px;}
.y127{bottom:878.650650px;}
.y18e{bottom:882.861300px;}
.y15{bottom:885.703650px;}
.y44{bottom:893.634000px;}
.yd6{bottom:898.140900px;}
.yfc{bottom:898.143150px;}
.y18d{bottom:899.677800px;}
.y14{bottom:900.702150px;}
.y4{bottom:908.192100px;}
.yd4{bottom:931.063500px;}
.yfa{bottom:931.717500px;}
.y46{bottom:934.660350px;}
.h31{height:16.473000px;}
.h30{height:18.414000px;}
.h16{height:18.694500px;}
.h2e{height:28.560000px;}
.h17{height:39.841206px;}
.h3{height:40.284000px;}
.h35{height:44.676000px;}
.h2f{height:45.390000px;}
.hf{height:48.060000px;}
.h2{height:49.236000px;}
.h7{height:52.056000px;}
.h36{height:52.560000px;}
.h15{height:53.341800px;}
.h14{height:53.400000px;}
.h29{height:53.413800px;}
.h23{height:53.421600px;}
.h26{height:53.422200px;}
.h19{height:53.425200px;}
.h1e{height:53.425800px;}
.h27{height:53.428800px;}
.h28{height:53.429400px;}
.h20{height:53.444400px;}
.h1b{height:53.450400px;}
.h1c{height:53.451000px;}
.h24{height:53.466600px;}
.h25{height:53.467200px;}
.h22{height:53.470800px;}
.h21{height:53.471400px;}
.h2a{height:53.472000px;}
.h1d{height:53.475600px;}
.h1a{height:53.476200px;}
.h5{height:53.712000px;}
.h2d{height:55.380000px;}
.h18{height:58.740000px;}
.h1f{height:59.101500px;}
.h2c{height:60.444000px;}
.h13{height:60.918000px;}
.h11{height:61.410000px;}
.h37{height:61.425600px;}
.h38{height:61.469400px;}
.h39{height:61.470600px;}
.h32{height:61.561200px;}
.h33{height:61.633800px;}
.h34{height:61.794000px;}
.h6{height:62.664000px;}
.h2b{height:63.687000px;}
.h8{height:65.430000px;}
.he{height:69.230964px;}
.hc{height:70.866606px;}
.h12{height:71.994000px;}
.ha{height:74.760000px;}
.hd{height:84.800625px;}
.hb{height:90.454369px;}
.h10{height:127.558500px;}
.h4{height:134.280000px;}
.h0{height:1020.472500px;}
.h9{height:1020.474000px;}
.h1{height:1020.750000px;}
.w3{width:80.286000px;}
.w4{width:497.945850px;}
.w5{width:532.630500px;}
.w2{width:595.275000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x21{left:18.640650px;}
.x1d{left:21.952350px;}
.x4{left:71.914650px;}
.xb{left:75.884100px;}
.x19{left:80.787450px;}
.x2b{left:83.905500px;}
.x14{left:106.299150px;}
.x2a{left:107.787450px;}
.xe{left:110.272350px;}
.x15{left:114.699326px;}
.x2d{left:116.785650px;}
.x1a{left:125.792700px;}
.x27{left:127.808400px;}
.x5{left:133.024650px;}
.x10{left:135.414450px;}
.xd{left:142.408050px;}
.x8{left:152.183850px;}
.x2f{left:160.292400px;}
.x30{left:170.787450px;}
.x28{left:173.244900px;}
.x6{left:177.439650px;}
.x2e{left:196.299150px;}
.x13{left:220.782600px;}
.xf{left:222.754950px;}
.x1b{left:229.158000px;}
.x12{left:243.242550px;}
.x24{left:249.244200px;}
.x29{left:253.580700px;}
.x7{left:255.477300px;}
.xc{left:258.080100px;}
.x2{left:260.112000px;}
.x1{left:269.401500px;}
.x1f{left:284.219250px;}
.x23{left:286.922100px;}
.x1e{left:290.009250px;}
.x11{left:291.612000px;}
.xa{left:295.933950px;}
.x22{left:297.470850px;}
.x18{left:300.680100px;}
.x17{left:311.694450px;}
.x3{left:345.972600px;}
.x9{left:354.802500px;}
.x2c{left:501.720600px;}
.x20{left:538.125000px;}
.x1c{left:563.637000px;}
.x26{left:590.660400px;}
.x25{left:599.285400px;}
.x16{left:607.910400px;}
@media print{
.v5{vertical-align:-20.240000pt;}
.v4{vertical-align:-14.960000pt;}
.v2{vertical-align:-3.667200pt;}
.v1{vertical-align:-2.217600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.279467pt;}
.ls5{letter-spacing:-4.640000pt;}
.ls3{letter-spacing:-4.160000pt;}
.ls26{letter-spacing:-1.840000pt;}
.ls7{letter-spacing:-1.493333pt;}
.ls4{letter-spacing:-1.440000pt;}
.lsb{letter-spacing:-1.333333pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls28{letter-spacing:-0.920000pt;}
.ls27{letter-spacing:-0.816000pt;}
.ls21{letter-spacing:-0.800000pt;}
.ls1{letter-spacing:-0.645333pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.613333pt;}
.ls23{letter-spacing:-0.453333pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls2c{letter-spacing:-0.368000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.306667pt;}
.ls2d{letter-spacing:-0.226667pt;}
.ls1f{letter-spacing:-0.213333pt;}
.ls2a{letter-spacing:-0.184000pt;}
.ls1e{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.226667pt;}
.ls16{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.693333pt;}
.ls20{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls0{letter-spacing:1.056000pt;}
.ls11{letter-spacing:1.120000pt;}
.ls22{letter-spacing:1.152000pt;}
.ls1c{letter-spacing:1.173333pt;}
.ls18{letter-spacing:1.386667pt;}
.ls19{letter-spacing:1.440000pt;}
.ls2b{letter-spacing:3.672000pt;}
.ls15{letter-spacing:11.040000pt;}
.lsd{letter-spacing:14.666667pt;}
.ws7d{word-spacing:-34.592000pt;}
.ws1{word-spacing:-24.480000pt;}
.ws2{word-spacing:-17.136000pt;}
.ws7e{word-spacing:-15.333333pt;}
.wsc5{word-spacing:-14.413333pt;}
.ws0{word-spacing:-14.400000pt;}
.ws22{word-spacing:-13.546667pt;}
.ws11{word-spacing:-13.333333pt;}
.ws31{word-spacing:-12.960000pt;}
.ws4d{word-spacing:-12.906667pt;}
.ws5c{word-spacing:-12.693333pt;}
.ws35{word-spacing:-12.480000pt;}
.ws5a{word-spacing:-12.053333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws6b{word-spacing:-11.840000pt;}
.ws70{word-spacing:-11.733333pt;}
.ws9c{word-spacing:-11.560000pt;}
.ws64{word-spacing:-11.360000pt;}
.ws7f{word-spacing:-11.333333pt;}
.wsd5{word-spacing:-11.106667pt;}
.ws37{word-spacing:-11.040000pt;}
.ws42{word-spacing:-10.826667pt;}
.ws55{word-spacing:-10.666667pt;}
.ws1c{word-spacing:-10.560000pt;}
.ws9d{word-spacing:-10.517333pt;}
.ws6c{word-spacing:-10.346667pt;}
.ws2a{word-spacing:-9.973333pt;}
.ws36{word-spacing:-9.947867pt;}
.ws19{word-spacing:-9.920000pt;}
.ws49{word-spacing:-9.813333pt;}
.wse{word-spacing:-9.706667pt;}
.ws34{word-spacing:-9.440000pt;}
.ws23{word-spacing:-8.906667pt;}
.ws28{word-spacing:-8.853333pt;}
.ws67{word-spacing:-8.800000pt;}
.ws26{word-spacing:-8.480000pt;}
.ws60{word-spacing:-8.213333pt;}
.ws2c{word-spacing:-8.053333pt;}
.ws1d{word-spacing:-8.000000pt;}
.ws45{word-spacing:-7.946667pt;}
.ws71{word-spacing:-7.413333pt;}
.ws73{word-spacing:-7.200000pt;}
.ws32{word-spacing:-6.560000pt;}
.ws2e{word-spacing:-6.506667pt;}
.ws24{word-spacing:-6.453333pt;}
.ws7{word-spacing:-6.370032pt;}
.ws17{word-spacing:-6.293333pt;}
.wsf{word-spacing:-6.240000pt;}
.ws51{word-spacing:-6.133333pt;}
.ws1f{word-spacing:-5.920000pt;}
.ws6f{word-spacing:-5.866667pt;}
.ws4a{word-spacing:-5.813333pt;}
.wsaa{word-spacing:-5.704000pt;}
.wsd7{word-spacing:-5.520000pt;}
.ws65{word-spacing:-5.440000pt;}
.ws53{word-spacing:-5.333333pt;}
.ws12{word-spacing:-4.800000pt;}
.ws74{word-spacing:-4.600000pt;}
.ws57{word-spacing:-4.426667pt;}
.ws13{word-spacing:-4.373333pt;}
.ws69{word-spacing:-4.266667pt;}
.wsb4{word-spacing:-4.261333pt;}
.ws6a{word-spacing:-4.106667pt;}
.ws3f{word-spacing:-3.786667pt;}
.ws6e{word-spacing:-3.573333pt;}
.wsa6{word-spacing:-3.373333pt;}
.ws11b{word-spacing:-3.066667pt;}
.ws111{word-spacing:-2.944000pt;}
.ws39{word-spacing:-2.933333pt;}
.wsc9{word-spacing:-2.882667pt;}
.ws5e{word-spacing:-2.826667pt;}
.wsc6{word-spacing:-2.821333pt;}
.ws9f{word-spacing:-2.760000pt;}
.wsce{word-spacing:-2.698667pt;}
.wsc{word-spacing:-2.640000pt;}
.ws61{word-spacing:-2.613333pt;}
.wse0{word-spacing:-2.576000pt;}
.ws3b{word-spacing:-2.560000pt;}
.ws87{word-spacing:-2.514667pt;}
.ws5d{word-spacing:-2.506667pt;}
.ws9b{word-spacing:-2.493333pt;}
.ws54{word-spacing:-2.453333pt;}
.ws10e{word-spacing:-2.392000pt;}
.wsb2{word-spacing:-2.330667pt;}
.ws86{word-spacing:-2.269333pt;}
.wseb{word-spacing:-2.221333pt;}
.wsf7{word-spacing:-2.208000pt;}
.wsa3{word-spacing:-2.146667pt;}
.ws27{word-spacing:-2.133333pt;}
.wsc3{word-spacing:-2.130667pt;}
.ws92{word-spacing:-2.085333pt;}
.wse3{word-spacing:-2.040000pt;}
.wsfd{word-spacing:-2.026667pt;}
.wscf{word-spacing:-2.024000pt;}
.ws77{word-spacing:-1.973333pt;}
.wscb{word-spacing:-1.962667pt;}
.ws78{word-spacing:-1.920000pt;}
.wsc0{word-spacing:-1.904000pt;}
.wsda{word-spacing:-1.901333pt;}
.ws1b{word-spacing:-1.866667pt;}
.wsa9{word-spacing:-1.840000pt;}
.ws83{word-spacing:-1.778667pt;}
.wsd{word-spacing:-1.776000pt;}
.wsb5{word-spacing:-1.768000pt;}
.ws2f{word-spacing:-1.760000pt;}
.wsdf{word-spacing:-1.717333pt;}
.ws3d{word-spacing:-1.706667pt;}
.wsdb{word-spacing:-1.656000pt;}
.ws109{word-spacing:-1.586667pt;}
.wsfe{word-spacing:-1.533333pt;}
.wsfa{word-spacing:-1.496000pt;}
.ws56{word-spacing:-1.493333pt;}
.wse9{word-spacing:-1.450667pt;}
.ws4e{word-spacing:-1.440000pt;}
.ws94{word-spacing:-1.410667pt;}
.ws48{word-spacing:-1.386667pt;}
.wsbb{word-spacing:-1.360000pt;}
.ws10f{word-spacing:-1.349333pt;}
.ws7a{word-spacing:-1.333333pt;}
.ws15{word-spacing:-1.280000pt;}
.ws120{word-spacing:-1.269333pt;}
.ws1a{word-spacing:-1.226667pt;}
.ws108{word-spacing:-1.224000pt;}
.ws59{word-spacing:-1.173333pt;}
.ws116{word-spacing:-1.165333pt;}
.ws5f{word-spacing:-1.066667pt;}
.wsbe{word-spacing:-1.042667pt;}
.wsf0{word-spacing:-0.981333pt;}
.ws25{word-spacing:-0.960000pt;}
.ws9e{word-spacing:-0.920000pt;}
.ws72{word-spacing:-0.906667pt;}
.ws104{word-spacing:-0.853333pt;}
.wse7{word-spacing:-0.816000pt;}
.ws3c{word-spacing:-0.800000pt;}
.wse5{word-spacing:-0.770667pt;}
.ws101{word-spacing:-0.736000pt;}
.ws7c{word-spacing:-0.725333pt;}
.ws4c{word-spacing:-0.693333pt;}
.wsee{word-spacing:-0.680000pt;}
.wsa5{word-spacing:-0.674667pt;}
.ws1e{word-spacing:-0.640000pt;}
.ws11f{word-spacing:-0.589333pt;}
.ws95{word-spacing:-0.552000pt;}
.ws41{word-spacing:-0.533333pt;}
.wsab{word-spacing:-0.490667pt;}
.ws2b{word-spacing:-0.480000pt;}
.wsec{word-spacing:-0.453333pt;}
.ws118{word-spacing:-0.429333pt;}
.ws2d{word-spacing:-0.373333pt;}
.ws98{word-spacing:-0.368000pt;}
.ws3e{word-spacing:-0.320000pt;}
.ws107{word-spacing:-0.317333pt;}
.ws10{word-spacing:-0.266667pt;}
.ws91{word-spacing:-0.245333pt;}
.wsb7{word-spacing:-0.226667pt;}
.ws46{word-spacing:-0.213333pt;}
.wsa1{word-spacing:-0.184000pt;}
.wsed{word-spacing:-0.181333pt;}
.ws10d{word-spacing:-0.090667pt;}
.wsae{word-spacing:-0.061333pt;}
.ws21{word-spacing:-0.058667pt;}
.wsb6{word-spacing:-0.045333pt;}
.ws20{word-spacing:-0.039791pt;}
.ws4{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.045333pt;}
.wsa7{word-spacing:0.061333pt;}
.ws76{word-spacing:0.106667pt;}
.ws84{word-spacing:0.122667pt;}
.wsc4{word-spacing:0.136000pt;}
.ws16{word-spacing:0.160000pt;}
.ws119{word-spacing:0.181333pt;}
.wsd0{word-spacing:0.184000pt;}
.ws30{word-spacing:0.213333pt;}
.ws8f{word-spacing:0.245333pt;}
.ws4f{word-spacing:0.266667pt;}
.ws44{word-spacing:0.320000pt;}
.wsb9{word-spacing:0.362667pt;}
.ws11e{word-spacing:0.453333pt;}
.ws85{word-spacing:0.490667pt;}
.ws99{word-spacing:0.498667pt;}
.ws33{word-spacing:0.533333pt;}
.ws38{word-spacing:0.586667pt;}
.wsbf{word-spacing:0.589333pt;}
.wsdc{word-spacing:0.613333pt;}
.ws3{word-spacing:0.645333pt;}
.wsef{word-spacing:0.674667pt;}
.wsb8{word-spacing:0.680000pt;}
.wsd1{word-spacing:0.736000pt;}
.ws3a{word-spacing:0.746667pt;}
.ws5b{word-spacing:0.800000pt;}
.ws8d{word-spacing:0.858667pt;}
.ws62{word-spacing:0.906667pt;}
.ws8e{word-spacing:0.920000pt;}
.ws5{word-spacing:0.960000pt;}
.wsf2{word-spacing:0.981333pt;}
.ws14{word-spacing:1.066667pt;}
.ws106{word-spacing:1.088000pt;}
.ws97{word-spacing:1.104000pt;}
.ws8b{word-spacing:1.165333pt;}
.ws68{word-spacing:1.226667pt;}
.wse2{word-spacing:1.269333pt;}
.wsf8{word-spacing:1.288000pt;}
.ws18{word-spacing:1.333333pt;}
.wse8{word-spacing:1.360000pt;}
.ws4b{word-spacing:1.386667pt;}
.wsca{word-spacing:1.410667pt;}
.ws6{word-spacing:1.440000pt;}
.wsf1{word-spacing:1.472000pt;}
.ws79{word-spacing:1.493333pt;}
.ws43{word-spacing:1.546667pt;}
.wsbc{word-spacing:1.586667pt;}
.wsff{word-spacing:1.594667pt;}
.ws66{word-spacing:1.600000pt;}
.ws105{word-spacing:1.706667pt;}
.wsaf{word-spacing:1.717333pt;}
.ws10b{word-spacing:1.722667pt;}
.ws115{word-spacing:1.778667pt;}
.wsa8{word-spacing:1.840000pt;}
.wsb0{word-spacing:1.901333pt;}
.ws88{word-spacing:1.962667pt;}
.ws63{word-spacing:1.973333pt;}
.ws90{word-spacing:2.024000pt;}
.wsc1{word-spacing:2.040000pt;}
.wsba{word-spacing:2.130667pt;}
.wsb3{word-spacing:2.146667pt;}
.ws11a{word-spacing:2.208000pt;}
.ws100{word-spacing:2.269333pt;}
.ws29{word-spacing:2.293333pt;}
.wsf5{word-spacing:2.330667pt;}
.ws58{word-spacing:2.400000pt;}
.wsfb{word-spacing:2.448000pt;}
.ws96{word-spacing:2.453333pt;}
.ws8c{word-spacing:2.514667pt;}
.wsf3{word-spacing:2.576000pt;}
.ws10c{word-spacing:2.584000pt;}
.ws47{word-spacing:2.720000pt;}
.ws11d{word-spacing:2.765333pt;}
.ws6d{word-spacing:2.826667pt;}
.ws50{word-spacing:2.880000pt;}
.wsd8{word-spacing:2.882667pt;}
.wsac{word-spacing:2.944000pt;}
.wsa2{word-spacing:3.005333pt;}
.wsa{word-spacing:3.168000pt;}
.wsd9{word-spacing:3.312000pt;}
.ws10a{word-spacing:3.354667pt;}
.wsfc{word-spacing:3.466667pt;}
.ws82{word-spacing:3.557333pt;}
.wsde{word-spacing:3.618667pt;}
.wse6{word-spacing:3.672000pt;}
.wsbd{word-spacing:3.853333pt;}
.ws113{word-spacing:3.864000pt;}
.ws81{word-spacing:3.925333pt;}
.wse1{word-spacing:3.986667pt;}
.wse4{word-spacing:4.034667pt;}
.ws89{word-spacing:4.048000pt;}
.ws114{word-spacing:4.170667pt;}
.wsf4{word-spacing:4.416000pt;}
.wsea{word-spacing:4.442667pt;}
.wsd2{word-spacing:4.477333pt;}
.wsa4{word-spacing:4.600000pt;}
.wsa0{word-spacing:4.661333pt;}
.ws11c{word-spacing:4.941333pt;}
.wsb1{word-spacing:5.029333pt;}
.ws75{word-spacing:5.090667pt;}
.wsd4{word-spacing:5.122667pt;}
.ws103{word-spacing:5.213333pt;}
.wsc2{word-spacing:5.349333pt;}
.ws102{word-spacing:5.520000pt;}
.wsc8{word-spacing:5.704000pt;}
.ws117{word-spacing:5.765333pt;}
.wscc{word-spacing:6.072000pt;}
.ws93{word-spacing:6.378667pt;}
.wsb{word-spacing:6.480000pt;}
.ws110{word-spacing:6.624000pt;}
.wsf6{word-spacing:6.685333pt;}
.wsad{word-spacing:6.808000pt;}
.wsd6{word-spacing:6.930667pt;}
.wsd3{word-spacing:7.114667pt;}
.wsc7{word-spacing:7.298667pt;}
.wscd{word-spacing:7.544000pt;}
.wsdd{word-spacing:7.666667pt;}
.ws112{word-spacing:7.728000pt;}
.ws8a{word-spacing:7.973333pt;}
.ws7b{word-spacing:14.208000pt;}
.ws9{word-spacing:16.416000pt;}
.wsf9{word-spacing:20.792000pt;}
.ws40{word-spacing:40.000000pt;}
.ws80{word-spacing:46.000000pt;}
.ws52{word-spacing:88.800000pt;}
._1a{margin-left:-8.778667pt;}
._14{margin-left:-7.418667pt;}
._9{margin-left:-6.430442pt;}
._b{margin-left:-5.332800pt;}
._6{margin-left:-3.877333pt;}
._5{margin-left:-2.720000pt;}
._3{margin-left:-1.114667pt;}
._1{width:1.056000pt;}
._2{width:2.522667pt;}
._0{width:3.461333pt;}
._7{width:4.826667pt;}
._4{width:6.880000pt;}
._a{width:9.360000pt;}
._8{width:18.657067pt;}
._18{width:20.400000pt;}
._1c{width:36.746667pt;}
._15{width:39.040000pt;}
._e{width:39.999467pt;}
._1d{width:42.026667pt;}
._13{width:44.800000pt;}
._19{width:46.000000pt;}
._1b{width:52.386667pt;}
._17{width:95.717333pt;}
._16{width:99.562667pt;}
._10{width:102.003775pt;}
._11{width:102.976000pt;}
._12{width:104.265600pt;}
._f{width:109.530133pt;}
._d{width:114.820800pt;}
._c{width:116.072000pt;}
.fs10{font-size:27.200000pt;}
.fsf{font-size:36.800000pt;}
.fse{font-size:39.791467pt;}
.fs11{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fsd{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fsb{font-size:61.333333pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:69.144533pt;}
.fsc{font-size:69.333333pt;}
.fs8{font-size:70.778133pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs9{font-size:81.666667pt;}
.fs7{font-size:87.111467pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yfb{bottom:2.615867pt;}
.yd5{bottom:3.197200pt;}
.y45{bottom:7.684400pt;}
.y2c{bottom:24.128800pt;}
.y2b{bottom:38.128800pt;}
.y66{bottom:39.349467pt;}
.y3{bottom:52.923333pt;}
.y2{bottom:79.376267pt;}
.y2d{bottom:94.488133pt;}
.y1{bottom:102.036267pt;}
.y1da{bottom:132.263467pt;}
.y126{bottom:132.271467pt;}
.y18c{bottom:132.277467pt;}
.yd3{bottom:132.281467pt;}
.y43{bottom:132.296267pt;}
.y85{bottom:132.322133pt;}
.y65{bottom:132.826800pt;}
.y29{bottom:133.177333pt;}
.ya2{bottom:133.194000pt;}
.y13{bottom:134.229632pt;}
.yf9{bottom:136.023467pt;}
.y1d9{bottom:144.265467pt;}
.y125{bottom:144.273467pt;}
.y18b{bottom:144.279467pt;}
.yf8{bottom:144.281467pt;}
.y28{bottom:146.509333pt;}
.y42{bottom:146.962933pt;}
.y84{bottom:147.042133pt;}
.yd2{bottom:148.023467pt;}
.y64{bottom:148.053467pt;}
.ya1{bottom:148.780667pt;}
.y12{bottom:154.506267pt;}
.y1d8{bottom:156.267467pt;}
.y16b{bottom:156.271467pt;}
.y124{bottom:156.275467pt;}
.y18a{bottom:156.281467pt;}
.yf7{bottom:160.023467pt;}
.y83{bottom:161.762133pt;}
.ya0{bottom:164.367333pt;}
.y1d7{bottom:168.269467pt;}
.y16a{bottom:168.273467pt;}
.y123{bottom:168.277467pt;}
.yf6{bottom:168.281467pt;}
.y189{bottom:168.283467pt;}
.y27{bottom:168.373333pt;}
.y1c8{bottom:172.023467pt;}
.y41{bottom:172.309200pt;}
.y63{bottom:174.490000pt;}
.y1d6{bottom:180.271467pt;}
.y169{bottom:180.275467pt;}
.y122{bottom:180.279467pt;}
.y26{bottom:181.705333pt;}
.yd1{bottom:182.952133pt;}
.yf5{bottom:184.023467pt;}
.y40{bottom:186.975867pt;}
.y82{bottom:187.143867pt;}
.y62{bottom:189.716667pt;}
.y9f{bottom:190.617333pt;}
.y1d5{bottom:192.273467pt;}
.y168{bottom:192.277467pt;}
.y121{bottom:192.281467pt;}
.y25{bottom:195.037333pt;}
.y145{bottom:196.023467pt;}
.yd0{bottom:199.092133pt;}
.y1d4{bottom:204.275467pt;}
.y167{bottom:204.279467pt;}
.y61{bottom:204.943333pt;}
.y188{bottom:206.942267pt;}
.y120{bottom:208.023467pt;}
.y1c7{bottom:209.054133pt;}
.y3f{bottom:212.322000pt;}
.ycf{bottom:215.232133pt;}
.y1d3{bottom:216.277467pt;}
.y11f{bottom:216.279467pt;}
.y166{bottom:216.281467pt;}
.y24{bottom:216.901333pt;}
.yf4{bottom:219.446000pt;}
.y187{bottom:222.595600pt;}
.y81{bottom:224.569733pt;}
.y1c6{bottom:226.380800pt;}
.y3e{bottom:226.988667pt;}
.y1d2{bottom:228.279467pt;}
.y11e{bottom:228.281467pt;}
.y9e{bottom:229.788400pt;}
.y23{bottom:230.233333pt;}
.y60{bottom:230.831067pt;}
.y165{bottom:232.023467pt;}
.yf3{bottom:236.812667pt;}
.y186{bottom:238.248933pt;}
.y80{bottom:239.289733pt;}
.y164{bottom:240.275467pt;}
.y1d1{bottom:240.281467pt;}
.y3d{bottom:241.655333pt;}
.y22{bottom:243.565333pt;}
.y1c5{bottom:243.707467pt;}
.y11d{bottom:244.023467pt;}
.y144{bottom:244.358400pt;}
.y9d{bottom:245.375067pt;}
.yce{bottom:246.457600pt;}
.y11c{bottom:252.273467pt;}
.y1ac{bottom:252.275467pt;}
.y163{bottom:252.277467pt;}
.y7f{bottom:254.009733pt;}
.yf2{bottom:254.139333pt;}
.y1d0{bottom:256.023467pt;}
.y21{bottom:256.897333pt;}
.y1c4{bottom:261.034133pt;}
.y143{bottom:261.685067pt;}
.y185{bottom:263.347200pt;}
.y11b{bottom:264.275467pt;}
.y1ab{bottom:264.277467pt;}
.y162{bottom:264.279467pt;}
.y3c{bottom:267.001600pt;}
.y5f{bottom:269.266800pt;}
.y20{bottom:270.229333pt;}
.ybc{bottom:270.809333pt;}
.yf1{bottom:271.466000pt;}
.y9c{bottom:272.529333pt;}
.y11a{bottom:276.277467pt;}
.y1aa{bottom:276.279467pt;}
.y161{bottom:276.281467pt;}
.ycd{bottom:277.710933pt;}
.y1c3{bottom:278.360800pt;}
.y142{bottom:279.011733pt;}
.y7e{bottom:279.435067pt;}
.y3b{bottom:281.668267pt;}
.y1f{bottom:283.561333pt;}
.y5e{bottom:284.493467pt;}
.ybb{bottom:285.476000pt;}
.y9b{bottom:288.116000pt;}
.y119{bottom:288.279467pt;}
.y1a9{bottom:288.281467pt;}
.y184{bottom:288.387467pt;}
.yf0{bottom:288.792667pt;}
.y160{bottom:292.023467pt;}
.ycc{bottom:293.857600pt;}
.y7d{bottom:294.155067pt;}
.y1c2{bottom:295.687467pt;}
.y3a{bottom:296.334933pt;}
.y141{bottom:296.338400pt;}
.y5d{bottom:299.720133pt;}
.y15f{bottom:300.271467pt;}
.y118{bottom:300.281467pt;}
.y1a8{bottom:304.023467pt;}
.yef{bottom:306.119333pt;}
.y183{bottom:306.710800pt;}
.ycb{bottom:310.004267pt;}
.yba{bottom:310.809467pt;}
.y15e{bottom:312.273467pt;}
.y1c1{bottom:313.074133pt;}
.y140{bottom:313.718400pt;}
.y9a{bottom:315.289333pt;}
.y117{bottom:316.023467pt;}
.y7c{bottom:319.585333pt;}
.y39{bottom:321.681200pt;}
.yee{bottom:323.446000pt;}
.y15d{bottom:324.275467pt;}
.y116{bottom:324.281467pt;}
.y182{bottom:325.034133pt;}
.yb9{bottom:325.476133pt;}
.yca{bottom:326.150933pt;}
.y5c{bottom:326.162267pt;}
.y1e{bottom:327.133333pt;}
.y1c0{bottom:330.400800pt;}
.y99{bottom:330.876000pt;}
.y13f{bottom:331.045067pt;}
.y15c{bottom:336.277467pt;}
.y38{bottom:336.347867pt;}
.y1a7{bottom:338.954133pt;}
.y115{bottom:340.023467pt;}
.yb8{bottom:340.142800pt;}
.yed{bottom:340.826000pt;}
.yc9{bottom:342.297600pt;}
.y181{bottom:343.357467pt;}
.y7b{bottom:345.005600pt;}
.y1bf{bottom:347.727467pt;}
.y15b{bottom:348.279467pt;}
.y13e{bottom:348.371733pt;}
.y5b{bottom:352.593333pt;}
.y1a6{bottom:353.900800pt;}
.y98{bottom:358.039867pt;}
.yec{bottom:358.152667pt;}
.y7a{bottom:359.725600pt;}
.y15a{bottom:360.281467pt;}
.y180{bottom:361.680800pt;}
.y37{bottom:361.694133pt;}
.y1be{bottom:365.054133pt;}
.yb7{bottom:365.476267pt;}
.y13d{bottom:365.698400pt;}
.y5a{bottom:367.820000pt;}
.y1a5{bottom:368.847467pt;}
.y1d{bottom:370.702933pt;}
.yc8{bottom:373.550933pt;}
.y97{bottom:373.626533pt;}
.y79{bottom:374.445600pt;}
.y114{bottom:374.864800pt;}
.y11{bottom:375.417200pt;}
.yeb{bottom:375.479333pt;}
.y159{bottom:376.023467pt;}
.y36{bottom:376.360800pt;}
.y17f{bottom:380.004133pt;}
.yb6{bottom:380.142933pt;}
.y1bd{bottom:382.380800pt;}
.y13c{bottom:383.025067pt;}
.y59{bottom:383.046667pt;}
.y1a4{bottom:383.794133pt;}
.y1c{bottom:384.036267pt;}
.y113{bottom:392.513467pt;}
.yea{bottom:392.806000pt;}
.y17e{bottom:398.327467pt;}
.y1bc{bottom:399.707467pt;}
.y78{bottom:399.866000pt;}
.y13b{bottom:400.351733pt;}
.y96{bottom:400.790267pt;}
.y35{bottom:401.706933pt;}
.yc7{bottom:404.804267pt;}
.yb5{bottom:405.476400pt;}
.y58{bottom:409.483200pt;}
.ye9{bottom:410.132667pt;}
.y112{bottom:410.162133pt;}
.y1a3{bottom:410.712133pt;}
.y158{bottom:413.945600pt;}
.y77{bottom:414.586000pt;}
.y95{bottom:416.376933pt;}
.y17d{bottom:416.650800pt;}
.y1bb{bottom:417.034133pt;}
.y13a{bottom:417.678400pt;}
.yc6{bottom:420.950933pt;}
.y57{bottom:424.709867pt;}
.y34{bottom:427.040267pt;}
.ye8{bottom:427.459333pt;}
.y111{bottom:427.810800pt;}
.y1a2{bottom:428.330133pt;}
.y76{bottom:429.306000pt;}
.yb4{bottom:430.809867pt;}
.y157{bottom:431.272267pt;}
.y1ba{bottom:434.360800pt;}
.y17c{bottom:434.974133pt;}
.y139{bottom:435.005067pt;}
.yc5{bottom:437.097600pt;}
.y94{bottom:443.544000pt;}
.ye7{bottom:444.786000pt;}
.y110{bottom:445.459467pt;}
.yb3{bottom:445.476533pt;}
.y1a1{bottom:445.948133pt;}
.y156{bottom:448.598933pt;}
.y56{bottom:451.146400pt;}
.y1b9{bottom:451.687467pt;}
.y138{bottom:452.351733pt;}
.yc4{bottom:453.244267pt;}
.y10{bottom:453.709467pt;}
.y75{bottom:454.736267pt;}
.y93{bottom:459.130667pt;}
.ye6{bottom:462.112667pt;}
.y10f{bottom:463.108133pt;}
.y1a0{bottom:463.566133pt;}
.y33{bottom:464.403467pt;}
.y155{bottom:465.925600pt;}
.y55{bottom:466.373067pt;}
.y1b8{bottom:469.047467pt;}
.yc3{bottom:469.390933pt;}
.y74{bottom:469.456267pt;}
.y137{bottom:469.678400pt;}
.y17b{bottom:470.623467pt;}
.yb2{bottom:470.810000pt;}
.y32{bottom:479.070133pt;}
.ye5{bottom:479.479333pt;}
.y10e{bottom:480.756800pt;}
.y19f{bottom:481.184133pt;}
.y154{bottom:483.252267pt;}
.y92{bottom:485.380667pt;}
.yb1{bottom:485.476667pt;}
.yc2{bottom:485.537600pt;}
.y1b7{bottom:486.374133pt;}
.y136{bottom:487.005067pt;}
.y54{bottom:492.809600pt;}
.yf{bottom:493.416000pt;}
.y73{bottom:494.837867pt;}
.ye4{bottom:496.806000pt;}
.y10d{bottom:498.405467pt;}
.y19e{bottom:498.802133pt;}
.y153{bottom:500.578933pt;}
.y1b6{bottom:503.700800pt;}
.y135{bottom:504.365067pt;}
.y31{bottom:504.416267pt;}
.y1b{bottom:506.984133pt;}
.y53{bottom:508.036267pt;}
.yb0{bottom:510.810000pt;}
.ye3{bottom:514.132667pt;}
.y10c{bottom:516.054133pt;}
.y19d{bottom:516.420133pt;}
.y152{bottom:517.905600pt;}
.y1a{bottom:520.316133pt;}
.y1b5{bottom:521.027467pt;}
.y134{bottom:521.691733pt;}
.y52{bottom:523.262933pt;}
.y17a{bottom:523.499467pt;}
.yc1{bottom:524.343333pt;}
.y91{bottom:524.551733pt;}
.yaf{bottom:525.476667pt;}
.ye2{bottom:531.459333pt;}
.y72{bottom:532.230133pt;}
.y10b{bottom:533.702800pt;}
.y30{bottom:533.756133pt;}
.y19c{bottom:534.038133pt;}
.y151{bottom:535.232267pt;}
.y1b4{bottom:538.354133pt;}
.y133{bottom:539.018400pt;}
.y90{bottom:540.138400pt;}
.y179{bottom:541.822800pt;}
.yc0{bottom:541.823333pt;}
.ye1{bottom:548.786000pt;}
.y51{bottom:549.150667pt;}
.yae{bottom:550.810133pt;}
.y10a{bottom:551.351467pt;}
.y19b{bottom:551.656133pt;}
.y150{bottom:552.558933pt;}
.ya{bottom:554.106667pt;}
.y1b3{bottom:555.680800pt;}
.y132{bottom:556.345067pt;}
.y178{bottom:560.146133pt;}
.y2f{bottom:563.095867pt;}
.y19{bottom:563.888133pt;}
.ye{bottom:563.990267pt;}
.yad{bottom:565.476800pt;}
.ye0{bottom:566.112667pt;}
.y8f{bottom:567.302267pt;}
.yc{bottom:567.970400pt;}
.y109{bottom:569.000133pt;}
.y19a{bottom:569.260667pt;}
.y14f{bottom:569.898933pt;}
.y131{bottom:573.671733pt;}
.y18{bottom:577.220133pt;}
.y177{bottom:578.469467pt;}
.y8e{bottom:582.888933pt;}
.ydf{bottom:583.439333pt;}
.y71{bottom:584.773200pt;}
.y108{bottom:586.599067pt;}
.y199{bottom:586.878667pt;}
.y14e{bottom:587.225600pt;}
.y50{bottom:587.592133pt;}
.ybf{bottom:589.540667pt;}
.yd{bottom:589.851467pt;}
.y1b2{bottom:590.347467pt;}
.y1cf{bottom:590.380800pt;}
.y17{bottom:590.552133pt;}
.yac{bottom:590.810267pt;}
.y130{bottom:590.998400pt;}
.yb{bottom:591.975733pt;}
.y176{bottom:596.792800pt;}
.y70{bottom:599.493200pt;}
.y8{bottom:600.461200pt;}
.y4f{bottom:602.818800pt;}
.y16{bottom:603.884133pt;}
.y107{bottom:604.247733pt;}
.y198{bottom:604.496667pt;}
.y14d{bottom:604.592267pt;}
.yab{bottom:605.476933pt;}
.y1ce{bottom:607.707467pt;}
.y8d{bottom:610.052667pt;}
.y6f{bottom:614.213200pt;}
.ybe{bottom:614.564133pt;}
.y175{bottom:615.116133pt;}
.yde{bottom:615.890800pt;}
.y12f{bottom:619.670267pt;}
.y106{bottom:621.896400pt;}
.y14c{bottom:621.918933pt;}
.y197{bottom:622.114667pt;}
.y1cd{bottom:625.034133pt;}
.y8c{bottom:625.639333pt;}
.y4e{bottom:629.260933pt;}
.y2e{bottom:630.682267pt;}
.yaa{bottom:630.810400pt;}
.y7{bottom:631.127867pt;}
.ybd{bottom:632.044133pt;}
.y174{bottom:633.439467pt;}
.y6e{bottom:636.525867pt;}
.y14b{bottom:639.245600pt;}
.y105{bottom:639.545067pt;}
.y196{bottom:639.719467pt;}
.y2a{bottom:642.269674pt;}
.y1cc{bottom:642.360800pt;}
.y1b1{bottom:642.409467pt;}
.ya9{bottom:645.477067pt;}
.y6d{bottom:651.245867pt;}
.y173{bottom:651.762800pt;}
.y8b{bottom:652.803067pt;}
.y4d{bottom:655.697600pt;}
.y14a{bottom:656.572267pt;}
.y104{bottom:657.193733pt;}
.y195{bottom:657.337467pt;}
.y1cb{bottom:659.687467pt;}
.y12e{bottom:659.700800pt;}
.ydd{bottom:659.720800pt;}
.y1b0{bottom:659.736133pt;}
.ya8{bottom:660.143733pt;}
.y6c{bottom:665.965867pt;}
.y8a{bottom:668.389733pt;}
.y9{bottom:669.777200pt;}
.y172{bottom:670.086133pt;}
.y4c{bottom:670.924267pt;}
.y149{bottom:673.898933pt;}
.y103{bottom:674.842400pt;}
.y194{bottom:674.955467pt;}
.y1ca{bottom:677.014133pt;}
.y12d{bottom:677.027467pt;}
.ydc{bottom:677.047467pt;}
.y1af{bottom:677.062800pt;}
.ya7{bottom:685.477200pt;}
.y6b{bottom:688.278667pt;}
.y171{bottom:688.409467pt;}
.y148{bottom:691.225600pt;}
.y102{bottom:692.491067pt;}
.y193{bottom:692.573467pt;}
.y12c{bottom:694.354133pt;}
.ydb{bottom:694.374133pt;}
.y1ae{bottom:694.389467pt;}
.y6{bottom:695.281867pt;}
.y89{bottom:695.553600pt;}
.y4b{bottom:697.355200pt;}
.ya6{bottom:700.143867pt;}
.y6a{bottom:702.998667pt;}
.y170{bottom:706.732800pt;}
.y147{bottom:708.552267pt;}
.y101{bottom:710.106133pt;}
.y192{bottom:710.188000pt;}
.y88{bottom:711.140267pt;}
.y1c9{bottom:711.680800pt;}
.y12b{bottom:711.687467pt;}
.yda{bottom:711.700800pt;}
.y1ad{bottom:711.716133pt;}
.y4a{bottom:712.581867pt;}
.ya5{bottom:714.810533pt;}
.y69{bottom:717.718667pt;}
.y16f{bottom:725.056133pt;}
.y100{bottom:727.754800pt;}
.y191{bottom:727.806000pt;}
.y49{bottom:727.808533pt;}
.yd9{bottom:729.027467pt;}
.y12a{bottom:729.042800pt;}
.y146{bottom:737.224133pt;}
.y87{bottom:738.304000pt;}
.y68{bottom:740.037333pt;}
.ya4{bottom:740.144000pt;}
.y16e{bottom:743.379467pt;}
.yff{bottom:745.403467pt;}
.yd8{bottom:746.354133pt;}
.y129{bottom:746.369467pt;}
.y5{bottom:751.281867pt;}
.y86{bottom:753.890667pt;}
.y48{bottom:754.250667pt;}
.y67{bottom:754.757333pt;}
.ya3{bottom:754.810667pt;}
.y190{bottom:754.869600pt;}
.y16d{bottom:761.702800pt;}
.yfe{bottom:763.052133pt;}
.yd7{bottom:763.680800pt;}
.y128{bottom:763.696133pt;}
.y47{bottom:769.477333pt;}
.y18f{bottom:769.817600pt;}
.y16c{bottom:780.026133pt;}
.yfd{bottom:780.700800pt;}
.y127{bottom:781.022800pt;}
.y18e{bottom:784.765600pt;}
.y15{bottom:787.292133pt;}
.y44{bottom:794.341333pt;}
.yd6{bottom:798.347467pt;}
.yfc{bottom:798.349467pt;}
.y18d{bottom:799.713600pt;}
.y14{bottom:800.624133pt;}
.y4{bottom:807.281867pt;}
.yd4{bottom:827.612000pt;}
.yfa{bottom:828.193333pt;}
.y46{bottom:830.809200pt;}
.h31{height:14.642667pt;}
.h30{height:16.368000pt;}
.h16{height:16.617333pt;}
.h2e{height:25.386667pt;}
.h17{height:35.414405pt;}
.h3{height:35.808000pt;}
.h35{height:39.712000pt;}
.h2f{height:40.346667pt;}
.hf{height:42.720000pt;}
.h2{height:43.765333pt;}
.h7{height:46.272000pt;}
.h36{height:46.720000pt;}
.h15{height:47.414933pt;}
.h14{height:47.466667pt;}
.h29{height:47.478933pt;}
.h23{height:47.485867pt;}
.h26{height:47.486400pt;}
.h19{height:47.489067pt;}
.h1e{height:47.489600pt;}
.h27{height:47.492267pt;}
.h28{height:47.492800pt;}
.h20{height:47.506133pt;}
.h1b{height:47.511467pt;}
.h1c{height:47.512000pt;}
.h24{height:47.525867pt;}
.h25{height:47.526400pt;}
.h22{height:47.529600pt;}
.h21{height:47.530133pt;}
.h2a{height:47.530667pt;}
.h1d{height:47.533867pt;}
.h1a{height:47.534400pt;}
.h5{height:47.744000pt;}
.h2d{height:49.226667pt;}
.h18{height:52.213333pt;}
.h1f{height:52.534667pt;}
.h2c{height:53.728000pt;}
.h13{height:54.149333pt;}
.h11{height:54.586667pt;}
.h37{height:54.600533pt;}
.h38{height:54.639467pt;}
.h39{height:54.640533pt;}
.h32{height:54.721067pt;}
.h33{height:54.785600pt;}
.h34{height:54.928000pt;}
.h6{height:55.701333pt;}
.h2b{height:56.610667pt;}
.h8{height:58.160000pt;}
.he{height:61.538635pt;}
.hc{height:62.992539pt;}
.h12{height:63.994667pt;}
.ha{height:66.453333pt;}
.hd{height:75.378333pt;}
.hb{height:80.403884pt;}
.h10{height:113.385333pt;}
.h4{height:119.360000pt;}
.h0{height:907.086667pt;}
.h9{height:907.088000pt;}
.h1{height:907.333333pt;}
.w3{width:71.365333pt;}
.w4{width:442.618533pt;}
.w5{width:473.449333pt;}
.w2{width:529.133333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x21{left:16.569467pt;}
.x1d{left:19.513200pt;}
.x4{left:63.924133pt;}
.xb{left:67.452533pt;}
.x19{left:71.811067pt;}
.x2b{left:74.582667pt;}
.x14{left:94.488133pt;}
.x2a{left:95.811067pt;}
.xe{left:98.019867pt;}
.x15{left:101.954956pt;}
.x2d{left:103.809467pt;}
.x1a{left:111.815733pt;}
.x27{left:113.607467pt;}
.x5{left:118.244133pt;}
.x10{left:120.368400pt;}
.xd{left:126.584933pt;}
.x8{left:135.274533pt;}
.x2f{left:142.482133pt;}
.x30{left:151.811067pt;}
.x28{left:153.995467pt;}
.x6{left:157.724133pt;}
.x2e{left:174.488133pt;}
.x13{left:196.251200pt;}
.xf{left:198.004400pt;}
.x1b{left:203.696000pt;}
.x12{left:216.215600pt;}
.x24{left:221.550400pt;}
.x29{left:225.405067pt;}
.x7{left:227.090933pt;}
.xc{left:229.404533pt;}
.x2{left:231.210667pt;}
.x1{left:239.468000pt;}
.x1f{left:252.639333pt;}
.x23{left:255.041867pt;}
.x1e{left:257.786000pt;}
.x11{left:259.210667pt;}
.xa{left:263.052400pt;}
.x22{left:264.418533pt;}
.x18{left:267.271200pt;}
.x17{left:277.061733pt;}
.x3{left:307.531200pt;}
.x9{left:315.380000pt;}
.x2c{left:445.973867pt;}
.x20{left:478.333333pt;}
.x1c{left:501.010667pt;}
.x26{left:525.031467pt;}
.x25{left:532.698133pt;}
.x16{left:540.364800pt;}
}




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