
    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_1b97be65dfd3b45e239a99f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_7fa03df2dde6fbd4a004b170.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_eebaa4ca820c04c041de726b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_3c904b5d4488ea77d10286be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_beab746ff2d87a2c4df85da9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710000;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_18b81a87adfbdaf63fe9e0de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239000;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_f422df230e28832c0fc74666.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924000;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_a92d731b2a2d267edb3989b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_d4f0ad2d8888b143c51919bb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_851dbac6bb43a51fe4be5859.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923000;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_81fe2efcf02e69e9f4bb0e1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;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_81abe06e205b83d0628ccab8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065581;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_42eed3b15acb7ae38fd9d458.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897000;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_ba48cd3ade95c385af474d14.woff2')format("woff");}.fff{font-family:fff;line-height:1.144000;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_127fb8071ac0f4a86d2d4b25.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.760254;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:-20.400009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls50{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.420000px;}
.ls18{letter-spacing:-0.360000px;}
.ls54{letter-spacing:-0.357000px;}
.ls67{letter-spacing:-0.306000px;}
.ls17{letter-spacing:-0.300000px;}
.ls52{letter-spacing:-0.255000px;}
.ls15{letter-spacing:-0.240000px;}
.ls53{letter-spacing:-0.204000px;}
.ls30{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.120000px;}
.ls55{letter-spacing:-0.102000px;}
.ls16{letter-spacing:-0.060000px;}
.ls51{letter-spacing:-0.051000px;}
.ls14{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000004px;}
.ls3a{letter-spacing:0.000069px;}
.ls1{letter-spacing:0.000085px;}
.ls3f{letter-spacing:0.025500px;}
.ls20{letter-spacing:0.030000px;}
.ls40{letter-spacing:0.051000px;}
.ls8{letter-spacing:0.060000px;}
.ls5f{letter-spacing:0.076500px;}
.ls48{letter-spacing:0.102000px;}
.ls1f{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.150000px;}
.ls56{letter-spacing:0.153000px;}
.ls12{letter-spacing:0.178791px;}
.ls2b{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.204000px;}
.ls2c{letter-spacing:0.210000px;}
.ls2{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.255000px;}
.ls49{letter-spacing:0.264000px;}
.ls4e{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls4c{letter-spacing:0.357000px;}
.ls7{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.390000px;}
.ls45{letter-spacing:0.408000px;}
.lsc{letter-spacing:0.420000px;}
.ls5e{letter-spacing:0.459000px;}
.lsa{letter-spacing:0.480000px;}
.ls4d{letter-spacing:0.510000px;}
.ls1d{letter-spacing:0.540000px;}
.ls58{letter-spacing:0.561000px;}
.ls1a{letter-spacing:0.570000px;}
.ls61{letter-spacing:0.586500px;}
.ls19{letter-spacing:0.600000px;}
.ls41{letter-spacing:0.612000px;}
.ls1e{letter-spacing:0.660000px;}
.ls60{letter-spacing:0.663000px;}
.ls2a{letter-spacing:0.690000px;}
.ls59{letter-spacing:0.713982px;}
.ls42{letter-spacing:0.714000px;}
.ls5c{letter-spacing:0.714028px;}
.ls5a{letter-spacing:0.714040px;}
.ls9{letter-spacing:0.720000px;}
.ls44{letter-spacing:0.765000px;}
.ls5{letter-spacing:0.780000px;}
.ls26{letter-spacing:0.810000px;}
.ls46{letter-spacing:0.816000px;}
.lse{letter-spacing:0.840000px;}
.ls63{letter-spacing:0.867000px;}
.ls43{letter-spacing:0.892500px;}
.ls6{letter-spacing:0.900000px;}
.ls4f{letter-spacing:0.918000px;}
.ls25{letter-spacing:0.930000px;}
.ls11{letter-spacing:0.960000px;}
.ls66{letter-spacing:0.969000px;}
.ls1c{letter-spacing:0.990000px;}
.lsd{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.045500px;}
.ls47{letter-spacing:1.071000px;}
.lsb{letter-spacing:1.080000px;}
.ls62{letter-spacing:1.122000px;}
.ls1b{letter-spacing:1.140000px;}
.ls31{letter-spacing:1.200000px;}
.ls5b{letter-spacing:1.224000px;}
.ls2e{letter-spacing:1.260000px;}
.ls5d{letter-spacing:1.275000px;}
.ls65{letter-spacing:1.326000px;}
.ls29{letter-spacing:1.380000px;}
.ls24{letter-spacing:1.410000px;}
.ls23{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.500000px;}
.ls3b{letter-spacing:1.530000px;}
.ls21{letter-spacing:1.560000px;}
.ls33{letter-spacing:1.620000px;}
.ls35{letter-spacing:1.680000px;}
.ls57{letter-spacing:1.734000px;}
.ls36{letter-spacing:1.800000px;}
.ls37{letter-spacing:1.860000px;}
.ls3d{letter-spacing:1.920000px;}
.lsf{letter-spacing:2.070000px;}
.ls22{letter-spacing:2.100000px;}
.ls34{letter-spacing:2.160000px;}
.ls3c{letter-spacing:2.340000px;}
.ls38{letter-spacing:3.060000px;}
.ls0{letter-spacing:3.990000px;}
.ls39{letter-spacing:4.289100px;}
.ls4a{letter-spacing:8.517054px;}
.ls4b{letter-spacing:14.024975px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa4{word-spacing:-51.000000px;}
.ws7a{word-spacing:-17.340000px;}
.ws33{word-spacing:-17.100000px;}
.ws7b{word-spacing:-16.680000px;}
.ws6a{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.080000px;}
.ws5a{word-spacing:-16.020000px;}
.ws31{word-spacing:-15.990000px;}
.wsa{word-spacing:-15.780000px;}
.ws5b{word-spacing:-15.660000px;}
.ws66{word-spacing:-15.600000px;}
.ws65{word-spacing:-15.480000px;}
.ws34{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.240000px;}
.wsb{word-spacing:-15.000000px;}
.ws32{word-spacing:-14.880000px;}
.ws7e{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.760000px;}
.ws59{word-spacing:-14.700000px;}
.ws58{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.544000px;}
.wsa3{word-spacing:-13.668000px;}
.wsa2{word-spacing:-13.642500px;}
.wsa1{word-spacing:-13.464000px;}
.ws7f{word-spacing:-13.005000px;}
.ws7d{word-spacing:-12.852000px;}
.ws5c{word-spacing:-12.750000px;}
.wsa5{word-spacing:-12.546000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws8{word-spacing:-11.520000px;}
.ws1{word-spacing:-9.996000px;}
.ws7c{word-spacing:-9.817500px;}
.wse{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws69{word-spacing:-6.375000px;}
.ws4b{word-spacing:-2.100000px;}
.wsf{word-spacing:-1.890000px;}
.ws86{word-spacing:-1.680000px;}
.ws84{word-spacing:-1.620000px;}
.ws64{word-spacing:-1.560000px;}
.ws12{word-spacing:-1.500000px;}
.ws22{word-spacing:-1.440000px;}
.wsb8{word-spacing:-1.326000px;}
.ws2d{word-spacing:-1.320000px;}
.ws89{word-spacing:-1.275000px;}
.ws5e{word-spacing:-1.260000px;}
.ws47{word-spacing:-1.140000px;}
.ws13{word-spacing:-1.080000px;}
.ws9c{word-spacing:-1.071000px;}
.ws24{word-spacing:-1.020000px;}
.ws9a{word-spacing:-0.969000px;}
.ws2a{word-spacing:-0.960000px;}
.ws4e{word-spacing:-0.900000px;}
.ws54{word-spacing:-0.840000px;}
.ws95{word-spacing:-0.816000px;}
.ws38{word-spacing:-0.780000px;}
.ws9d{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.720000px;}
.ws9e{word-spacing:-0.714000px;}
.ws1c{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.612000px;}
.ws17{word-spacing:-0.600000px;}
.ws10{word-spacing:-0.570000px;}
.ws40{word-spacing:-0.540000px;}
.ws97{word-spacing:-0.510000px;}
.ws5d{word-spacing:-0.480000px;}
.ws21{word-spacing:-0.420000px;}
.ws44{word-spacing:-0.360000px;}
.wsa6{word-spacing:-0.306000px;}
.ws1a{word-spacing:-0.300000px;}
.ws96{word-spacing:-0.264000px;}
.wsa9{word-spacing:-0.255000px;}
.ws57{word-spacing:-0.240000px;}
.ws3a{word-spacing:-0.120000px;}
.ws2{word-spacing:-0.096000px;}
.ws2b{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws11{word-spacing:0.000000px;}
.ws1d{word-spacing:0.060000px;}
.ws93{word-spacing:0.102000px;}
.ws3e{word-spacing:0.120000px;}
.ws9f{word-spacing:0.153000px;}
.ws3d{word-spacing:0.180000px;}
.ws70{word-spacing:0.204000px;}
.ws20{word-spacing:0.240000px;}
.ws87{word-spacing:0.255000px;}
.ws1b{word-spacing:0.300000px;}
.wsb2{word-spacing:0.306000px;}
.ws88{word-spacing:0.357000px;}
.ws41{word-spacing:0.360000px;}
.ws5f{word-spacing:0.420000px;}
.ws51{word-spacing:0.540000px;}
.ws78{word-spacing:0.561000px;}
.ws1f{word-spacing:0.600000px;}
.ws90{word-spacing:0.612000px;}
.ws60{word-spacing:0.660000px;}
.wsa7{word-spacing:0.663000px;}
.ws8c{word-spacing:0.714000px;}
.ws56{word-spacing:0.720000px;}
.ws2e{word-spacing:0.840000px;}
.ws2c{word-spacing:0.900000px;}
.ws43{word-spacing:0.960000px;}
.wsb4{word-spacing:0.969000px;}
.wsb3{word-spacing:1.020000px;}
.wsb5{word-spacing:1.122000px;}
.ws35{word-spacing:1.140000px;}
.ws9b{word-spacing:1.173000px;}
.ws76{word-spacing:1.224000px;}
.ws62{word-spacing:1.260000px;}
.ws8a{word-spacing:1.275000px;}
.ws36{word-spacing:1.320000px;}
.wsae{word-spacing:1.377000px;}
.ws48{word-spacing:1.380000px;}
.wsaf{word-spacing:1.428000px;}
.ws18{word-spacing:1.500000px;}
.wsac{word-spacing:1.530000px;}
.ws39{word-spacing:1.560000px;}
.ws8b{word-spacing:1.581000px;}
.ws42{word-spacing:1.620000px;}
.ws15{word-spacing:1.680000px;}
.wsb1{word-spacing:1.734000px;}
.ws53{word-spacing:1.740000px;}
.ws45{word-spacing:1.800000px;}
.ws25{word-spacing:1.860000px;}
.wsa8{word-spacing:1.887000px;}
.ws28{word-spacing:1.920000px;}
.ws8d{word-spacing:1.938000px;}
.ws8f{word-spacing:1.989000px;}
.ws4f{word-spacing:2.040000px;}
.ws67{word-spacing:2.100000px;}
.ws16{word-spacing:2.160000px;}
.ws19{word-spacing:2.220000px;}
.ws46{word-spacing:2.280000px;}
.ws94{word-spacing:2.295000px;}
.ws52{word-spacing:2.340000px;}
.wsb6{word-spacing:2.346000px;}
.ws29{word-spacing:2.460000px;}
.ws82{word-spacing:2.520000px;}
.ws8e{word-spacing:2.550000px;}
.ws61{word-spacing:2.580000px;}
.wsa0{word-spacing:2.601000px;}
.ws91{word-spacing:2.652000px;}
.ws3c{word-spacing:2.700000px;}
.wsab{word-spacing:2.703000px;}
.ws23{word-spacing:2.760000px;}
.ws49{word-spacing:2.820000px;}
.wsba{word-spacing:2.907000px;}
.ws37{word-spacing:2.940000px;}
.ws80{word-spacing:3.000000px;}
.ws6d{word-spacing:3.060000px;}
.ws74{word-spacing:3.111000px;}
.ws85{word-spacing:3.120000px;}
.ws3f{word-spacing:3.180000px;}
.ws98{word-spacing:3.213000px;}
.ws1e{word-spacing:3.240000px;}
.ws55{word-spacing:3.300000px;}
.wsb7{word-spacing:3.315000px;}
.ws3b{word-spacing:3.360000px;}
.ws92{word-spacing:3.468000px;}
.ws6b{word-spacing:3.600000px;}
.ws6c{word-spacing:3.660000px;}
.wsb0{word-spacing:3.723000px;}
.ws6e{word-spacing:3.960000px;}
.ws79{word-spacing:4.131000px;}
.ws99{word-spacing:4.182000px;}
.ws68{word-spacing:4.200000px;}
.ws77{word-spacing:4.335000px;}
.ws83{word-spacing:4.380000px;}
.ws75{word-spacing:4.386000px;}
.wsad{word-spacing:4.437000px;}
.ws63{word-spacing:4.680000px;}
.wsb9{word-spacing:4.743000px;}
.ws50{word-spacing:4.800000px;}
.ws4d{word-spacing:5.040000px;}
.ws81{word-spacing:5.160000px;}
.ws71{word-spacing:5.202000px;}
.ws27{word-spacing:5.400000px;}
.ws4a{word-spacing:5.700000px;}
.wsaa{word-spacing:6.681000px;}
.ws6f{word-spacing:7.497000px;}
.ws26{word-spacing:8.100000px;}
.ws72{word-spacing:8.211000px;}
.ws4c{word-spacing:8.280000px;}
.wsbb{word-spacing:14.025000px;}
.ws73{word-spacing:14.637000px;}
.wsbc{word-spacing:18.258000px;}
.ws2f{word-spacing:72.267000px;}
._e{margin-left:-2964.434857px;}
._5{margin-left:-16.575000px;}
._4{margin-left:-8.999895px;}
._b{margin-left:-5.519892px;}
._9{margin-left:-4.410000px;}
._1{margin-left:-3.072000px;}
._0{margin-left:-1.632000px;}
._3{width:1.614000px;}
._8{width:2.646000px;}
._f{width:4.131000px;}
._a{width:7.980000px;}
._12{width:9.027048px;}
._11{width:10.046928px;}
._10{width:13.158067px;}
._d{width:15.605987px;}
._6{width:18.359991px;}
._2{width:40.382367px;}
._7{width:54.621018px;}
._c{width:2354.265059px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y33{bottom:112.938300px;}
.y64{bottom:113.415298px;}
.y93{bottom:114.874786px;}
.y97{bottom:114.874798px;}
.yaf{bottom:114.874947px;}
.yf2{bottom:122.282699px;}
.y2d{bottom:122.461349px;}
.y63{bottom:132.165298px;}
.y32{bottom:133.032303px;}
.y92{bottom:133.624786px;}
.y96{bottom:133.624798px;}
.yae{bottom:133.624947px;}
.yf1{bottom:137.276699px;}
.y122{bottom:140.471546px;}
.y2c{bottom:141.211349px;}
.y31{bottom:150.485553px;}
.y62{bottom:150.915298px;}
.y91{bottom:152.374786px;}
.y95{bottom:152.374798px;}
.yad{bottom:152.374947px;}
.y121{bottom:155.465561px;}
.y2b{bottom:159.961349px;}
.y61{bottom:169.665298px;}
.y120{bottom:170.459561px;}
.y30{bottom:170.579556px;}
.yf0{bottom:170.985260px;}
.y90{bottom:171.124786px;}
.yac{bottom:171.124947px;}
.y2a{bottom:178.711349px;}
.y11f{bottom:185.453561px;}
.y60{bottom:188.415298px;}
.yef{bottom:189.735260px;}
.y8f{bottom:189.874786px;}
.y94{bottom:189.874798px;}
.yab{bottom:189.874947px;}
.y2f{bottom:195.580055px;}
.y29{bottom:197.461349px;}
.y11e{bottom:200.447561px;}
.y5f{bottom:207.165298px;}
.yee{bottom:208.485260px;}
.y8e{bottom:208.624786px;}
.yaa{bottom:208.624947px;}
.y2e{bottom:210.574059px;}
.y11d{bottom:215.441550px;}
.y28{bottom:216.211349px;}
.y80{bottom:225.915298px;}
.yed{bottom:227.235260px;}
.y8d{bottom:227.374786px;}
.ya9{bottom:227.374947px;}
.y11c{bottom:230.435561px;}
.y27{bottom:234.961349px;}
.y5e{bottom:244.665298px;}
.y11b{bottom:245.429561px;}
.yec{bottom:245.985260px;}
.y8c{bottom:246.124786px;}
.ya8{bottom:246.124947px;}
.y26{bottom:253.711349px;}
.y11a{bottom:260.423561px;}
.y7f{bottom:263.415298px;}
.yeb{bottom:264.735260px;}
.y8b{bottom:264.874786px;}
.ya7{bottom:264.874947px;}
.y24{bottom:272.461349px;}
.y7e{bottom:282.165298px;}
.yea{bottom:283.485260px;}
.y8a{bottom:283.624786px;}
.ya6{bottom:283.624947px;}
.y23{bottom:291.211349px;}
.y119{bottom:294.173561px;}
.y5d{bottom:300.915298px;}
.ye9{bottom:302.235260px;}
.y89{bottom:302.374786px;}
.y22{bottom:309.961349px;}
.y5c{bottom:319.665298px;}
.ye8{bottom:320.985260px;}
.y88{bottom:321.124786px;}
.y21{bottom:328.711349px;}
.y5b{bottom:338.415298px;}
.ye7{bottom:339.735260px;}
.y87{bottom:339.874786px;}
.y20{bottom:347.461349px;}
.y5a{bottom:357.165298px;}
.ye6{bottom:358.485260px;}
.y86{bottom:358.624786px;}
.y118{bottom:363.908995px;}
.y1f{bottom:366.211349px;}
.y59{bottom:375.915298px;}
.ye5{bottom:377.235260px;}
.y85{bottom:377.374786px;}
.y117{bottom:378.902995px;}
.y1e{bottom:384.961349px;}
.y116{bottom:393.896995px;}
.y58{bottom:394.665298px;}
.ye4{bottom:395.985260px;}
.y84{bottom:396.124786px;}
.y1d{bottom:403.711349px;}
.y115{bottom:408.890995px;}
.y57{bottom:413.415298px;}
.ye3{bottom:414.735260px;}
.y83{bottom:414.874786px;}
.y1c{bottom:422.461349px;}
.y114{bottom:423.884995px;}
.y56{bottom:432.165298px;}
.ye2{bottom:433.485260px;}
.y82{bottom:433.624786px;}
.y113{bottom:438.878995px;}
.y1b{bottom:441.211349px;}
.y55{bottom:450.915298px;}
.ye1{bottom:452.235260px;}
.yb2{bottom:452.374786px;}
.y112{bottom:453.872995px;}
.y1a{bottom:459.961349px;}
.y111{bottom:468.866995px;}
.y54{bottom:469.665298px;}
.ye0{bottom:470.985260px;}
.yb1{bottom:471.124786px;}
.y14c{bottom:476.470779px;}
.y19{bottom:478.711349px;}
.y110{bottom:483.860995px;}
.y53{bottom:488.415298px;}
.ydf{bottom:489.735260px;}
.yb0{bottom:489.874786px;}
.y14b{bottom:491.464823px;}
.y18{bottom:497.461349px;}
.y10f{bottom:498.854995px;}
.y14a{bottom:506.458823px;}
.y52{bottom:507.165298px;}
.yde{bottom:508.485260px;}
.y10e{bottom:513.848995px;}
.y17{bottom:516.211349px;}
.y172{bottom:520.840805px;}
.y149{bottom:521.452823px;}
.y51{bottom:525.915298px;}
.ydd{bottom:527.235260px;}
.y10d{bottom:528.842995px;}
.yb8{bottom:532.060930px;}
.ybe{bottom:532.086430px;}
.y25{bottom:534.961349px;}
.y171{bottom:535.834838px;}
.y148{bottom:536.446823px;}
.y50{bottom:544.665298px;}
.ydc{bottom:545.985260px;}
.yb7{bottom:547.054930px;}
.ybd{bottom:547.080430px;}
.y147{bottom:551.440823px;}
.y16{bottom:553.711349px;}
.yb6{bottom:562.048930px;}
.ybc{bottom:562.074430px;}
.y10c{bottom:562.553995px;}
.y4f{bottom:563.415298px;}
.ydb{bottom:564.735260px;}
.y146{bottom:566.434823px;}
.y170{bottom:566.677048px;}
.yb5{bottom:577.042930px;}
.ybb{bottom:577.068430px;}
.y10b{bottom:577.547995px;}
.y145{bottom:581.428823px;}
.y16f{bottom:581.671053px;}
.y4e{bottom:582.165298px;}
.yda{bottom:583.485260px;}
.yb4{bottom:592.036930px;}
.yba{bottom:592.062430px;}
.y144{bottom:596.422823px;}
.y16e{bottom:596.665053px;}
.y4d{bottom:600.915298px;}
.yd9{bottom:602.235260px;}
.yb3{bottom:607.030930px;}
.yb9{bottom:607.056430px;}
.y15{bottom:609.961395px;}
.y143{bottom:611.416823px;}
.y16d{bottom:611.659053px;}
.y10a{bottom:614.994745px;}
.y7d{bottom:619.665298px;}
.yd8{bottom:620.985260px;}
.y142{bottom:626.410823px;}
.y16c{bottom:626.653053px;}
.y4c{bottom:638.415298px;}
.yd7{bottom:639.735260px;}
.y141{bottom:641.404823px;}
.y16b{bottom:641.647064px;}
.y109{bottom:644.957245px;}
.y14{bottom:647.461395px;}
.y140{bottom:656.398823px;}
.y16a{bottom:656.641080px;}
.y7c{bottom:657.165298px;}
.yd6{bottom:658.485260px;}
.y13{bottom:666.211395px;}
.y13f{bottom:671.392823px;}
.y169{bottom:671.635080px;}
.y7b{bottom:675.915298px;}
.yd5{bottom:677.235260px;}
.y108{bottom:678.707245px;}
.y12{bottom:684.961395px;}
.y13e{bottom:686.386783px;}
.y168{bottom:686.629080px;}
.y7a{bottom:694.665298px;}
.y4b{bottom:694.665344px;}
.yd4{bottom:695.985260px;}
.y13d{bottom:701.380783px;}
.y167{bottom:701.623080px;}
.y11{bottom:703.711395px;}
.y79{bottom:713.415298px;}
.y4a{bottom:713.415344px;}
.yd3{bottom:714.735260px;}
.y107{bottom:716.330719px;}
.y13c{bottom:716.374832px;}
.y166{bottom:716.617080px;}
.y10{bottom:722.461395px;}
.y106{bottom:731.324719px;}
.y13b{bottom:731.368832px;}
.y165{bottom:731.611080px;}
.y78{bottom:732.165298px;}
.y49{bottom:732.165344px;}
.yd2{bottom:733.485260px;}
.yf{bottom:741.211395px;}
.y105{bottom:746.318715px;}
.y13a{bottom:746.362832px;}
.y164{bottom:746.605080px;}
.y77{bottom:750.915298px;}
.y48{bottom:750.915344px;}
.yd1{bottom:752.235260px;}
.ye{bottom:759.961395px;}
.y139{bottom:761.356832px;}
.y163{bottom:761.599080px;}
.y76{bottom:769.665298px;}
.y47{bottom:769.665344px;}
.yd0{bottom:770.985260px;}
.y138{bottom:776.350832px;}
.y162{bottom:776.593080px;}
.yd{bottom:778.711395px;}
.y104{bottom:780.029715px;}
.y75{bottom:788.415298px;}
.y46{bottom:788.415344px;}
.ycf{bottom:789.735260px;}
.y137{bottom:791.344832px;}
.y161{bottom:791.587073px;}
.y103{bottom:795.023678px;}
.yc{bottom:797.461395px;}
.y136{bottom:806.338832px;}
.y160{bottom:806.581073px;}
.y74{bottom:807.165298px;}
.y45{bottom:807.165344px;}
.yce{bottom:808.485260px;}
.yb{bottom:816.211395px;}
.y135{bottom:821.332764px;}
.y15f{bottom:821.575073px;}
.y73{bottom:825.915298px;}
.y44{bottom:825.915344px;}
.ycd{bottom:827.235260px;}
.y102{bottom:828.734678px;}
.ya{bottom:834.961395px;}
.y134{bottom:836.326823px;}
.y15e{bottom:836.569073px;}
.y101{bottom:843.728678px;}
.y72{bottom:844.665298px;}
.y43{bottom:844.665344px;}
.ycc{bottom:845.985260px;}
.y133{bottom:851.320823px;}
.y15d{bottom:851.563078px;}
.y100{bottom:858.722678px;}
.y71{bottom:863.415298px;}
.y42{bottom:863.415344px;}
.ycb{bottom:864.735260px;}
.y132{bottom:866.314823px;}
.y15c{bottom:866.557078px;}
.yff{bottom:873.716689px;}
.y9{bottom:879.144153px;}
.y131{bottom:881.308823px;}
.y15b{bottom:881.551078px;}
.y70{bottom:882.165298px;}
.y41{bottom:882.165344px;}
.yca{bottom:883.485260px;}
.y34{bottom:893.550018px;}
.y8{bottom:894.138153px;}
.ya5{bottom:895.180844px;}
.y130{bottom:896.302823px;}
.y15a{bottom:896.545078px;}
.y6f{bottom:900.915298px;}
.y40{bottom:900.915344px;}
.yc9{bottom:902.235260px;}
.yfe{bottom:907.427689px;}
.ya4{bottom:910.174844px;}
.y12f{bottom:911.296823px;}
.y159{bottom:911.539078px;}
.y6e{bottom:919.665298px;}
.y3f{bottom:919.665344px;}
.yc8{bottom:920.985260px;}
.yfd{bottom:922.421689px;}
.ya3{bottom:925.168844px;}
.y12e{bottom:926.290823px;}
.y158{bottom:926.533078px;}
.y7{bottom:936.738190px;}
.yfc{bottom:937.415689px;}
.y6d{bottom:938.415298px;}
.y3e{bottom:938.415344px;}
.yc7{bottom:939.735260px;}
.ya2{bottom:940.162844px;}
.y12d{bottom:941.284823px;}
.y157{bottom:941.527078px;}
.yfb{bottom:952.409682px;}
.ya1{bottom:955.156844px;}
.y12c{bottom:956.278823px;}
.y156{bottom:956.521078px;}
.y6c{bottom:957.165298px;}
.y3d{bottom:957.165344px;}
.yc6{bottom:958.485260px;}
.ya0{bottom:970.150844px;}
.y12b{bottom:971.272823px;}
.y155{bottom:971.515078px;}
.y6b{bottom:975.915298px;}
.y3c{bottom:975.915344px;}
.yc5{bottom:977.235260px;}
.y6{bottom:981.424622px;}
.y9f{bottom:985.144844px;}
.yfa{bottom:986.120682px;}
.y12a{bottom:986.266823px;}
.y154{bottom:986.509078px;}
.y6a{bottom:994.665298px;}
.y3b{bottom:994.665344px;}
.yc4{bottom:995.985260px;}
.y9e{bottom:1000.138844px;}
.yf9{bottom:1001.114682px;}
.y129{bottom:1001.260823px;}
.y153{bottom:1001.503078px;}
.y5{bottom:1008.424622px;}
.y69{bottom:1013.415298px;}
.y3a{bottom:1013.415344px;}
.yc3{bottom:1014.735260px;}
.y9d{bottom:1015.132844px;}
.yf8{bottom:1016.108682px;}
.y128{bottom:1016.254823px;}
.y152{bottom:1016.497078px;}
.y9c{bottom:1030.126844px;}
.yf7{bottom:1031.102682px;}
.y127{bottom:1031.248823px;}
.y151{bottom:1031.491078px;}
.y68{bottom:1032.165298px;}
.y39{bottom:1032.165344px;}
.yc2{bottom:1033.485260px;}
.y9b{bottom:1045.120844px;}
.yf6{bottom:1046.096682px;}
.y126{bottom:1046.242823px;}
.y150{bottom:1046.485078px;}
.y67{bottom:1050.915298px;}
.y38{bottom:1050.915344px;}
.yc1{bottom:1052.235260px;}
.y9a{bottom:1060.114844px;}
.yf5{bottom:1061.090682px;}
.y125{bottom:1061.236816px;}
.y14f{bottom:1061.479078px;}
.y66{bottom:1069.665298px;}
.y37{bottom:1069.665344px;}
.yc0{bottom:1070.985260px;}
.y99{bottom:1075.108844px;}
.yf4{bottom:1076.084682px;}
.y4{bottom:1076.132080px;}
.y124{bottom:1076.230823px;}
.y14e{bottom:1076.473078px;}
.y65{bottom:1088.415298px;}
.y36{bottom:1088.415344px;}
.ybf{bottom:1089.735260px;}
.y98{bottom:1090.102844px;}
.yf3{bottom:1091.078714px;}
.y123{bottom:1091.224823px;}
.y14d{bottom:1091.467078px;}
.y3{bottom:1109.586639px;}
.y35{bottom:1126.004974px;}
.y81{bottom:1126.905029px;}
.he{height:25.204199px;}
.h2{height:33.840000px;}
.hf{height:35.955000px;}
.hd{height:36.006000px;}
.h15{height:36.006060px;}
.h1a{height:36.006081px;}
.h12{height:36.006096px;}
.h17{height:36.006160px;}
.h18{height:36.006195px;}
.h16{height:36.006275px;}
.hc{height:36.855469px;}
.h19{height:38.075684px;}
.ha{height:42.360000px;}
.h10{height:42.360092px;}
.h4{height:44.676000px;}
.h13{height:45.186000px;}
.h11{height:52.173000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h14{height:59.004000px;}
.h8{height:59.340000px;}
.h9{height:61.380000px;}
.h7{height:64.866000px;}
.hb{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x9{left:78.746400px;}
.x4{left:85.181849px;}
.xa{left:93.545408px;}
.x7{left:97.796104px;}
.xd{left:102.048152px;}
.x8{left:376.080002px;}
.x5{left:459.215389px;}
.x6{left:476.225386px;}
.xc{left:484.725290px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xb{left:798.524963px;}
@media print{
.v2{vertical-align:-18.133341pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls50{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.373333pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls54{letter-spacing:-0.317333pt;}
.ls67{letter-spacing:-0.272000pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls52{letter-spacing:-0.226667pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls53{letter-spacing:-0.181333pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.106667pt;}
.ls55{letter-spacing:-0.090667pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls51{letter-spacing:-0.045333pt;}
.ls14{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000003pt;}
.ls3a{letter-spacing:0.000061pt;}
.ls1{letter-spacing:0.000076pt;}
.ls3f{letter-spacing:0.022667pt;}
.ls20{letter-spacing:0.026667pt;}
.ls40{letter-spacing:0.045333pt;}
.ls8{letter-spacing:0.053333pt;}
.ls5f{letter-spacing:0.068000pt;}
.ls48{letter-spacing:0.090667pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.133333pt;}
.ls56{letter-spacing:0.136000pt;}
.ls12{letter-spacing:0.158926pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.181333pt;}
.ls2c{letter-spacing:0.186667pt;}
.ls2{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.226667pt;}
.ls49{letter-spacing:0.234667pt;}
.ls4e{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls4c{letter-spacing:0.317333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.346667pt;}
.ls45{letter-spacing:0.362667pt;}
.lsc{letter-spacing:0.373333pt;}
.ls5e{letter-spacing:0.408000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls4d{letter-spacing:0.453333pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls58{letter-spacing:0.498667pt;}
.ls1a{letter-spacing:0.506667pt;}
.ls61{letter-spacing:0.521333pt;}
.ls19{letter-spacing:0.533333pt;}
.ls41{letter-spacing:0.544000pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls60{letter-spacing:0.589333pt;}
.ls2a{letter-spacing:0.613333pt;}
.ls59{letter-spacing:0.634651pt;}
.ls42{letter-spacing:0.634667pt;}
.ls5c{letter-spacing:0.634692pt;}
.ls5a{letter-spacing:0.634702pt;}
.ls9{letter-spacing:0.640000pt;}
.ls44{letter-spacing:0.680000pt;}
.ls5{letter-spacing:0.693333pt;}
.ls26{letter-spacing:0.720000pt;}
.ls46{letter-spacing:0.725333pt;}
.lse{letter-spacing:0.746667pt;}
.ls63{letter-spacing:0.770667pt;}
.ls43{letter-spacing:0.793333pt;}
.ls6{letter-spacing:0.800000pt;}
.ls4f{letter-spacing:0.816000pt;}
.ls25{letter-spacing:0.826667pt;}
.ls11{letter-spacing:0.853333pt;}
.ls66{letter-spacing:0.861333pt;}
.ls1c{letter-spacing:0.880000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.929333pt;}
.ls47{letter-spacing:0.952000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls62{letter-spacing:0.997333pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls31{letter-spacing:1.066667pt;}
.ls5b{letter-spacing:1.088000pt;}
.ls2e{letter-spacing:1.120000pt;}
.ls5d{letter-spacing:1.133333pt;}
.ls65{letter-spacing:1.178667pt;}
.ls29{letter-spacing:1.226667pt;}
.ls24{letter-spacing:1.253333pt;}
.ls23{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.333333pt;}
.ls3b{letter-spacing:1.360000pt;}
.ls21{letter-spacing:1.386667pt;}
.ls33{letter-spacing:1.440000pt;}
.ls35{letter-spacing:1.493333pt;}
.ls57{letter-spacing:1.541333pt;}
.ls36{letter-spacing:1.600000pt;}
.ls37{letter-spacing:1.653333pt;}
.ls3d{letter-spacing:1.706667pt;}
.lsf{letter-spacing:1.840000pt;}
.ls22{letter-spacing:1.866667pt;}
.ls34{letter-spacing:1.920000pt;}
.ls3c{letter-spacing:2.080000pt;}
.ls38{letter-spacing:2.720000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls39{letter-spacing:3.812533pt;}
.ls4a{letter-spacing:7.570715pt;}
.ls4b{letter-spacing:12.466645pt;}
.wsa4{word-spacing:-45.333333pt;}
.ws7a{word-spacing:-15.413333pt;}
.ws33{word-spacing:-15.200000pt;}
.ws7b{word-spacing:-14.826667pt;}
.ws6a{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.293333pt;}
.ws5a{word-spacing:-14.240000pt;}
.ws31{word-spacing:-14.213333pt;}
.wsa{word-spacing:-14.026667pt;}
.ws5b{word-spacing:-13.920000pt;}
.ws66{word-spacing:-13.866667pt;}
.ws65{word-spacing:-13.760000pt;}
.ws34{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.546667pt;}
.wsb{word-spacing:-13.333333pt;}
.ws32{word-spacing:-13.226667pt;}
.ws7e{word-spacing:-13.184000pt;}
.ws6{word-spacing:-13.120000pt;}
.ws59{word-spacing:-13.066667pt;}
.ws58{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.928000pt;}
.wsa3{word-spacing:-12.149333pt;}
.wsa2{word-spacing:-12.126667pt;}
.wsa1{word-spacing:-11.968000pt;}
.ws7f{word-spacing:-11.560000pt;}
.ws7d{word-spacing:-11.424000pt;}
.ws5c{word-spacing:-11.333333pt;}
.wsa5{word-spacing:-11.152000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws8{word-spacing:-10.240000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws7c{word-spacing:-8.726667pt;}
.wse{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws69{word-spacing:-5.666667pt;}
.ws4b{word-spacing:-1.866667pt;}
.wsf{word-spacing:-1.680000pt;}
.ws86{word-spacing:-1.493333pt;}
.ws84{word-spacing:-1.440000pt;}
.ws64{word-spacing:-1.386667pt;}
.ws12{word-spacing:-1.333333pt;}
.ws22{word-spacing:-1.280000pt;}
.wsb8{word-spacing:-1.178667pt;}
.ws2d{word-spacing:-1.173333pt;}
.ws89{word-spacing:-1.133333pt;}
.ws5e{word-spacing:-1.120000pt;}
.ws47{word-spacing:-1.013333pt;}
.ws13{word-spacing:-0.960000pt;}
.ws9c{word-spacing:-0.952000pt;}
.ws24{word-spacing:-0.906667pt;}
.ws9a{word-spacing:-0.861333pt;}
.ws2a{word-spacing:-0.853333pt;}
.ws4e{word-spacing:-0.800000pt;}
.ws54{word-spacing:-0.746667pt;}
.ws95{word-spacing:-0.725333pt;}
.ws38{word-spacing:-0.693333pt;}
.ws9d{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.640000pt;}
.ws9e{word-spacing:-0.634667pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.544000pt;}
.ws17{word-spacing:-0.533333pt;}
.ws10{word-spacing:-0.506667pt;}
.ws40{word-spacing:-0.480000pt;}
.ws97{word-spacing:-0.453333pt;}
.ws5d{word-spacing:-0.426667pt;}
.ws21{word-spacing:-0.373333pt;}
.ws44{word-spacing:-0.320000pt;}
.wsa6{word-spacing:-0.272000pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws96{word-spacing:-0.234667pt;}
.wsa9{word-spacing:-0.226667pt;}
.ws57{word-spacing:-0.213333pt;}
.ws3a{word-spacing:-0.106667pt;}
.ws2{word-spacing:-0.085333pt;}
.ws2b{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws11{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.053333pt;}
.ws93{word-spacing:0.090667pt;}
.ws3e{word-spacing:0.106667pt;}
.ws9f{word-spacing:0.136000pt;}
.ws3d{word-spacing:0.160000pt;}
.ws70{word-spacing:0.181333pt;}
.ws20{word-spacing:0.213333pt;}
.ws87{word-spacing:0.226667pt;}
.ws1b{word-spacing:0.266667pt;}
.wsb2{word-spacing:0.272000pt;}
.ws88{word-spacing:0.317333pt;}
.ws41{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.373333pt;}
.ws51{word-spacing:0.480000pt;}
.ws78{word-spacing:0.498667pt;}
.ws1f{word-spacing:0.533333pt;}
.ws90{word-spacing:0.544000pt;}
.ws60{word-spacing:0.586667pt;}
.wsa7{word-spacing:0.589333pt;}
.ws8c{word-spacing:0.634667pt;}
.ws56{word-spacing:0.640000pt;}
.ws2e{word-spacing:0.746667pt;}
.ws2c{word-spacing:0.800000pt;}
.ws43{word-spacing:0.853333pt;}
.wsb4{word-spacing:0.861333pt;}
.wsb3{word-spacing:0.906667pt;}
.wsb5{word-spacing:0.997333pt;}
.ws35{word-spacing:1.013333pt;}
.ws9b{word-spacing:1.042667pt;}
.ws76{word-spacing:1.088000pt;}
.ws62{word-spacing:1.120000pt;}
.ws8a{word-spacing:1.133333pt;}
.ws36{word-spacing:1.173333pt;}
.wsae{word-spacing:1.224000pt;}
.ws48{word-spacing:1.226667pt;}
.wsaf{word-spacing:1.269333pt;}
.ws18{word-spacing:1.333333pt;}
.wsac{word-spacing:1.360000pt;}
.ws39{word-spacing:1.386667pt;}
.ws8b{word-spacing:1.405333pt;}
.ws42{word-spacing:1.440000pt;}
.ws15{word-spacing:1.493333pt;}
.wsb1{word-spacing:1.541333pt;}
.ws53{word-spacing:1.546667pt;}
.ws45{word-spacing:1.600000pt;}
.ws25{word-spacing:1.653333pt;}
.wsa8{word-spacing:1.677333pt;}
.ws28{word-spacing:1.706667pt;}
.ws8d{word-spacing:1.722667pt;}
.ws8f{word-spacing:1.768000pt;}
.ws4f{word-spacing:1.813333pt;}
.ws67{word-spacing:1.866667pt;}
.ws16{word-spacing:1.920000pt;}
.ws19{word-spacing:1.973333pt;}
.ws46{word-spacing:2.026667pt;}
.ws94{word-spacing:2.040000pt;}
.ws52{word-spacing:2.080000pt;}
.wsb6{word-spacing:2.085333pt;}
.ws29{word-spacing:2.186667pt;}
.ws82{word-spacing:2.240000pt;}
.ws8e{word-spacing:2.266667pt;}
.ws61{word-spacing:2.293333pt;}
.wsa0{word-spacing:2.312000pt;}
.ws91{word-spacing:2.357333pt;}
.ws3c{word-spacing:2.400000pt;}
.wsab{word-spacing:2.402667pt;}
.ws23{word-spacing:2.453333pt;}
.ws49{word-spacing:2.506667pt;}
.wsba{word-spacing:2.584000pt;}
.ws37{word-spacing:2.613333pt;}
.ws80{word-spacing:2.666667pt;}
.ws6d{word-spacing:2.720000pt;}
.ws74{word-spacing:2.765333pt;}
.ws85{word-spacing:2.773333pt;}
.ws3f{word-spacing:2.826667pt;}
.ws98{word-spacing:2.856000pt;}
.ws1e{word-spacing:2.880000pt;}
.ws55{word-spacing:2.933333pt;}
.wsb7{word-spacing:2.946667pt;}
.ws3b{word-spacing:2.986667pt;}
.ws92{word-spacing:3.082667pt;}
.ws6b{word-spacing:3.200000pt;}
.ws6c{word-spacing:3.253333pt;}
.wsb0{word-spacing:3.309333pt;}
.ws6e{word-spacing:3.520000pt;}
.ws79{word-spacing:3.672000pt;}
.ws99{word-spacing:3.717333pt;}
.ws68{word-spacing:3.733333pt;}
.ws77{word-spacing:3.853333pt;}
.ws83{word-spacing:3.893333pt;}
.ws75{word-spacing:3.898667pt;}
.wsad{word-spacing:3.944000pt;}
.ws63{word-spacing:4.160000pt;}
.wsb9{word-spacing:4.216000pt;}
.ws50{word-spacing:4.266667pt;}
.ws4d{word-spacing:4.480000pt;}
.ws81{word-spacing:4.586667pt;}
.ws71{word-spacing:4.624000pt;}
.ws27{word-spacing:4.800000pt;}
.ws4a{word-spacing:5.066667pt;}
.wsaa{word-spacing:5.938667pt;}
.ws6f{word-spacing:6.664000pt;}
.ws26{word-spacing:7.200000pt;}
.ws72{word-spacing:7.298667pt;}
.ws4c{word-spacing:7.360000pt;}
.wsbb{word-spacing:12.466667pt;}
.ws73{word-spacing:13.010667pt;}
.wsbc{word-spacing:16.229333pt;}
.ws2f{word-spacing:64.237333pt;}
._e{margin-left:-2635.053206pt;}
._5{margin-left:-14.733333pt;}
._4{margin-left:-7.999907pt;}
._b{margin-left:-4.906571pt;}
._9{margin-left:-3.920000pt;}
._1{margin-left:-2.730667pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.434667pt;}
._8{width:2.352000pt;}
._f{width:3.672000pt;}
._a{width:7.093333pt;}
._12{width:8.024042pt;}
._11{width:8.930603pt;}
._10{width:11.696060pt;}
._d{width:13.871989pt;}
._6{width:16.319992pt;}
._2{width:35.895438pt;}
._7{width:48.552016pt;}
._c{width:2092.680052pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y33{bottom:100.389600pt;}
.y64{bottom:100.813599pt;}
.y93{bottom:102.110921pt;}
.y97{bottom:102.110931pt;}
.yaf{bottom:102.111064pt;}
.yf2{bottom:108.695733pt;}
.y2d{bottom:108.854533pt;}
.y63{bottom:117.480265pt;}
.y32{bottom:118.250936pt;}
.y92{bottom:118.777588pt;}
.y96{bottom:118.777598pt;}
.yae{bottom:118.777730pt;}
.yf1{bottom:122.023733pt;}
.y122{bottom:124.863597pt;}
.y2c{bottom:125.521200pt;}
.y31{bottom:133.764936pt;}
.y62{bottom:134.146932pt;}
.y91{bottom:135.444255pt;}
.y95{bottom:135.444265pt;}
.yad{bottom:135.444397pt;}
.y121{bottom:138.191610pt;}
.y2b{bottom:142.187866pt;}
.y61{bottom:150.813599pt;}
.y120{bottom:151.519610pt;}
.y30{bottom:151.626272pt;}
.yf0{bottom:151.986898pt;}
.y90{bottom:152.110921pt;}
.yac{bottom:152.111064pt;}
.y2a{bottom:158.854533pt;}
.y11f{bottom:164.847610pt;}
.y60{bottom:167.480265pt;}
.yef{bottom:168.653564pt;}
.y8f{bottom:168.777588pt;}
.y94{bottom:168.777598pt;}
.yab{bottom:168.777730pt;}
.y2f{bottom:173.848938pt;}
.y29{bottom:175.521200pt;}
.y11e{bottom:178.175610pt;}
.y5f{bottom:184.146932pt;}
.yee{bottom:185.320231pt;}
.y8e{bottom:185.444255pt;}
.yaa{bottom:185.444397pt;}
.y2e{bottom:187.176941pt;}
.y11d{bottom:191.503600pt;}
.y28{bottom:192.187866pt;}
.y80{bottom:200.813599pt;}
.yed{bottom:201.986898pt;}
.y8d{bottom:202.110921pt;}
.ya9{bottom:202.111064pt;}
.y11c{bottom:204.831610pt;}
.y27{bottom:208.854533pt;}
.y5e{bottom:217.480265pt;}
.y11b{bottom:218.159610pt;}
.yec{bottom:218.653564pt;}
.y8c{bottom:218.777588pt;}
.ya8{bottom:218.777730pt;}
.y26{bottom:225.521200pt;}
.y11a{bottom:231.487610pt;}
.y7f{bottom:234.146932pt;}
.yeb{bottom:235.320231pt;}
.y8b{bottom:235.444255pt;}
.ya7{bottom:235.444397pt;}
.y24{bottom:242.187866pt;}
.y7e{bottom:250.813599pt;}
.yea{bottom:251.986898pt;}
.y8a{bottom:252.110921pt;}
.ya6{bottom:252.111064pt;}
.y23{bottom:258.854533pt;}
.y119{bottom:261.487610pt;}
.y5d{bottom:267.480265pt;}
.ye9{bottom:268.653564pt;}
.y89{bottom:268.777588pt;}
.y22{bottom:275.521200pt;}
.y5c{bottom:284.146932pt;}
.ye8{bottom:285.320231pt;}
.y88{bottom:285.444255pt;}
.y21{bottom:292.187866pt;}
.y5b{bottom:300.813599pt;}
.ye7{bottom:301.986898pt;}
.y87{bottom:302.110921pt;}
.y20{bottom:308.854533pt;}
.y5a{bottom:317.480265pt;}
.ye6{bottom:318.653564pt;}
.y86{bottom:318.777588pt;}
.y118{bottom:323.474662pt;}
.y1f{bottom:325.521200pt;}
.y59{bottom:334.146932pt;}
.ye5{bottom:335.320231pt;}
.y85{bottom:335.444255pt;}
.y117{bottom:336.802662pt;}
.y1e{bottom:342.187866pt;}
.y116{bottom:350.130662pt;}
.y58{bottom:350.813599pt;}
.ye4{bottom:351.986898pt;}
.y84{bottom:352.110921pt;}
.y1d{bottom:358.854533pt;}
.y115{bottom:363.458662pt;}
.y57{bottom:367.480265pt;}
.ye3{bottom:368.653564pt;}
.y83{bottom:368.777588pt;}
.y1c{bottom:375.521200pt;}
.y114{bottom:376.786662pt;}
.y56{bottom:384.146932pt;}
.ye2{bottom:385.320231pt;}
.y82{bottom:385.444255pt;}
.y113{bottom:390.114662pt;}
.y1b{bottom:392.187866pt;}
.y55{bottom:400.813599pt;}
.ye1{bottom:401.986898pt;}
.yb2{bottom:402.110921pt;}
.y112{bottom:403.442662pt;}
.y1a{bottom:408.854533pt;}
.y111{bottom:416.770662pt;}
.y54{bottom:417.480265pt;}
.ye0{bottom:418.653564pt;}
.yb1{bottom:418.777588pt;}
.y14c{bottom:423.529582pt;}
.y19{bottom:425.521200pt;}
.y110{bottom:430.098662pt;}
.y53{bottom:434.146932pt;}
.ydf{bottom:435.320231pt;}
.yb0{bottom:435.444255pt;}
.y14b{bottom:436.857620pt;}
.y18{bottom:442.187866pt;}
.y10f{bottom:443.426662pt;}
.y14a{bottom:450.185620pt;}
.y52{bottom:450.813599pt;}
.yde{bottom:451.986898pt;}
.y10e{bottom:456.754662pt;}
.y17{bottom:458.854533pt;}
.y172{bottom:462.969605pt;}
.y149{bottom:463.513620pt;}
.y51{bottom:467.480265pt;}
.ydd{bottom:468.653564pt;}
.y10d{bottom:470.082662pt;}
.yb8{bottom:472.943049pt;}
.ybe{bottom:472.965715pt;}
.y25{bottom:475.521200pt;}
.y171{bottom:476.297634pt;}
.y148{bottom:476.841620pt;}
.y50{bottom:484.146932pt;}
.ydc{bottom:485.320231pt;}
.yb7{bottom:486.271049pt;}
.ybd{bottom:486.293715pt;}
.y147{bottom:490.169620pt;}
.y16{bottom:492.187866pt;}
.yb6{bottom:499.599049pt;}
.ybc{bottom:499.621715pt;}
.y10c{bottom:500.047995pt;}
.y4f{bottom:500.813599pt;}
.ydb{bottom:501.986898pt;}
.y146{bottom:503.497620pt;}
.y170{bottom:503.712931pt;}
.yb5{bottom:512.927049pt;}
.ybb{bottom:512.949715pt;}
.y10b{bottom:513.375995pt;}
.y145{bottom:516.825620pt;}
.y16f{bottom:517.040936pt;}
.y4e{bottom:517.480265pt;}
.yda{bottom:518.653564pt;}
.yb4{bottom:526.255049pt;}
.yba{bottom:526.277715pt;}
.y144{bottom:530.153620pt;}
.y16e{bottom:530.368936pt;}
.y4d{bottom:534.146932pt;}
.yd9{bottom:535.320231pt;}
.yb3{bottom:539.583049pt;}
.yb9{bottom:539.605715pt;}
.y15{bottom:542.187907pt;}
.y143{bottom:543.481620pt;}
.y16d{bottom:543.696936pt;}
.y10a{bottom:546.661995pt;}
.y7d{bottom:550.813599pt;}
.yd8{bottom:551.986898pt;}
.y142{bottom:556.809620pt;}
.y16c{bottom:557.024936pt;}
.y4c{bottom:567.480265pt;}
.yd7{bottom:568.653564pt;}
.y141{bottom:570.137620pt;}
.y16b{bottom:570.352946pt;}
.y109{bottom:573.295329pt;}
.y14{bottom:575.521240pt;}
.y140{bottom:583.465620pt;}
.y16a{bottom:583.680960pt;}
.y7c{bottom:584.146932pt;}
.yd6{bottom:585.320231pt;}
.y13{bottom:592.187907pt;}
.y13f{bottom:596.793620pt;}
.y169{bottom:597.008960pt;}
.y7b{bottom:600.813599pt;}
.yd5{bottom:601.986898pt;}
.y108{bottom:603.295329pt;}
.y12{bottom:608.854574pt;}
.y13e{bottom:610.121585pt;}
.y168{bottom:610.336960pt;}
.y7a{bottom:617.480265pt;}
.y4b{bottom:617.480306pt;}
.yd4{bottom:618.653564pt;}
.y13d{bottom:623.449585pt;}
.y167{bottom:623.664960pt;}
.y11{bottom:625.521240pt;}
.y79{bottom:634.146932pt;}
.y4a{bottom:634.146973pt;}
.yd3{bottom:635.320231pt;}
.y107{bottom:636.738417pt;}
.y13c{bottom:636.777629pt;}
.y166{bottom:636.992960pt;}
.y10{bottom:642.187907pt;}
.y106{bottom:650.066417pt;}
.y13b{bottom:650.105629pt;}
.y165{bottom:650.320960pt;}
.y78{bottom:650.813599pt;}
.y49{bottom:650.813639pt;}
.yd2{bottom:651.986898pt;}
.yf{bottom:658.854574pt;}
.y105{bottom:663.394413pt;}
.y13a{bottom:663.433629pt;}
.y164{bottom:663.648960pt;}
.y77{bottom:667.480265pt;}
.y48{bottom:667.480306pt;}
.yd1{bottom:668.653564pt;}
.ye{bottom:675.521240pt;}
.y139{bottom:676.761629pt;}
.y163{bottom:676.976960pt;}
.y76{bottom:684.146932pt;}
.y47{bottom:684.146973pt;}
.yd0{bottom:685.320231pt;}
.y138{bottom:690.089629pt;}
.y162{bottom:690.304960pt;}
.yd{bottom:692.187907pt;}
.y104{bottom:693.359747pt;}
.y75{bottom:700.813599pt;}
.y46{bottom:700.813639pt;}
.ycf{bottom:701.986898pt;}
.y137{bottom:703.417629pt;}
.y161{bottom:703.632954pt;}
.y103{bottom:706.687713pt;}
.yc{bottom:708.854574pt;}
.y136{bottom:716.745629pt;}
.y160{bottom:716.960954pt;}
.y74{bottom:717.480265pt;}
.y45{bottom:717.480306pt;}
.yce{bottom:718.653564pt;}
.yb{bottom:725.521240pt;}
.y135{bottom:730.073568pt;}
.y15f{bottom:730.288954pt;}
.y73{bottom:734.146932pt;}
.y44{bottom:734.146973pt;}
.ycd{bottom:735.320231pt;}
.y102{bottom:736.653047pt;}
.ya{bottom:742.187907pt;}
.y134{bottom:743.401620pt;}
.y15e{bottom:743.616954pt;}
.y101{bottom:749.981047pt;}
.y72{bottom:750.813599pt;}
.y43{bottom:750.813639pt;}
.ycc{bottom:751.986898pt;}
.y133{bottom:756.729620pt;}
.y15d{bottom:756.944958pt;}
.y100{bottom:763.309047pt;}
.y71{bottom:767.480265pt;}
.y42{bottom:767.480306pt;}
.ycb{bottom:768.653564pt;}
.y132{bottom:770.057620pt;}
.y15c{bottom:770.272958pt;}
.yff{bottom:776.637057pt;}
.y9{bottom:781.461469pt;}
.y131{bottom:783.385620pt;}
.y15b{bottom:783.600958pt;}
.y70{bottom:784.146932pt;}
.y41{bottom:784.146973pt;}
.yca{bottom:785.320231pt;}
.y34{bottom:794.266683pt;}
.y8{bottom:794.789469pt;}
.ya5{bottom:795.716306pt;}
.y130{bottom:796.713620pt;}
.y15a{bottom:796.928958pt;}
.y6f{bottom:800.813599pt;}
.y40{bottom:800.813639pt;}
.yc9{bottom:801.986898pt;}
.yfe{bottom:806.602390pt;}
.ya4{bottom:809.044306pt;}
.y12f{bottom:810.041620pt;}
.y159{bottom:810.256958pt;}
.y6e{bottom:817.480265pt;}
.y3f{bottom:817.480306pt;}
.yc8{bottom:818.653564pt;}
.yfd{bottom:819.930390pt;}
.ya3{bottom:822.372306pt;}
.y12e{bottom:823.369620pt;}
.y158{bottom:823.584958pt;}
.y7{bottom:832.656169pt;}
.yfc{bottom:833.258390pt;}
.y6d{bottom:834.146932pt;}
.y3e{bottom:834.146973pt;}
.yc7{bottom:835.320231pt;}
.ya2{bottom:835.700306pt;}
.y12d{bottom:836.697620pt;}
.y157{bottom:836.912958pt;}
.yfb{bottom:846.586384pt;}
.ya1{bottom:849.028306pt;}
.y12c{bottom:850.025620pt;}
.y156{bottom:850.240958pt;}
.y6c{bottom:850.813599pt;}
.y3d{bottom:850.813639pt;}
.yc6{bottom:851.986898pt;}
.ya0{bottom:862.356306pt;}
.y12b{bottom:863.353620pt;}
.y155{bottom:863.568958pt;}
.y6b{bottom:867.480265pt;}
.y3c{bottom:867.480306pt;}
.yc5{bottom:868.653564pt;}
.y6{bottom:872.377441pt;}
.y9f{bottom:875.684306pt;}
.yfa{bottom:876.551717pt;}
.y12a{bottom:876.681620pt;}
.y154{bottom:876.896958pt;}
.y6a{bottom:884.146932pt;}
.y3b{bottom:884.146973pt;}
.yc4{bottom:885.320231pt;}
.y9e{bottom:889.012306pt;}
.yf9{bottom:889.879717pt;}
.y129{bottom:890.009620pt;}
.y153{bottom:890.224958pt;}
.y5{bottom:896.377441pt;}
.y69{bottom:900.813599pt;}
.y3a{bottom:900.813639pt;}
.yc3{bottom:901.986898pt;}
.y9d{bottom:902.340306pt;}
.yf8{bottom:903.207717pt;}
.y128{bottom:903.337620pt;}
.y152{bottom:903.552958pt;}
.y9c{bottom:915.668306pt;}
.yf7{bottom:916.535717pt;}
.y127{bottom:916.665620pt;}
.y151{bottom:916.880958pt;}
.y68{bottom:917.480265pt;}
.y39{bottom:917.480306pt;}
.yc2{bottom:918.653564pt;}
.y9b{bottom:928.996306pt;}
.yf6{bottom:929.863717pt;}
.y126{bottom:929.993620pt;}
.y150{bottom:930.208958pt;}
.y67{bottom:934.146932pt;}
.y38{bottom:934.146973pt;}
.yc1{bottom:935.320231pt;}
.y9a{bottom:942.324306pt;}
.yf5{bottom:943.191717pt;}
.y125{bottom:943.321615pt;}
.y14f{bottom:943.536958pt;}
.y66{bottom:950.813599pt;}
.y37{bottom:950.813639pt;}
.yc0{bottom:951.986898pt;}
.y99{bottom:955.652306pt;}
.yf4{bottom:956.519717pt;}
.y4{bottom:956.561849pt;}
.y124{bottom:956.649620pt;}
.y14e{bottom:956.864958pt;}
.y65{bottom:967.480265pt;}
.y36{bottom:967.480306pt;}
.ybf{bottom:968.653564pt;}
.y98{bottom:968.980306pt;}
.yf3{bottom:969.847746pt;}
.y123{bottom:969.977620pt;}
.y14d{bottom:970.192958pt;}
.y3{bottom:986.299235pt;}
.y35{bottom:1000.893311pt;}
.y81{bottom:1001.693359pt;}
.he{height:22.403733pt;}
.h2{height:30.080000pt;}
.hf{height:31.960000pt;}
.hd{height:32.005333pt;}
.h15{height:32.005386pt;}
.h1a{height:32.005405pt;}
.h12{height:32.005419pt;}
.h17{height:32.005475pt;}
.h18{height:32.005506pt;}
.h16{height:32.005578pt;}
.hc{height:32.760417pt;}
.h19{height:33.845052pt;}
.ha{height:37.653333pt;}
.h10{height:37.653415pt;}
.h4{height:39.712000pt;}
.h13{height:40.165333pt;}
.h11{height:46.376000pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h14{height:52.448000pt;}
.h8{height:52.746667pt;}
.h9{height:54.560000pt;}
.h7{height:57.658667pt;}
.hb{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x9{left:69.996800pt;}
.x4{left:75.717199pt;}
.xa{left:83.151474pt;}
.x7{left:86.929871pt;}
.xd{left:90.709469pt;}
.x8{left:334.293335pt;}
.x5{left:408.191457pt;}
.x6{left:423.311455pt;}
.xc{left:430.866924pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xb{left:709.799967pt;}
}




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