
    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_f51b6dd2038f31fb18bc5f4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3f352bafaa865cb0a1367343.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_75799c19fdf7178c48509ed9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_12329d038ab2678ac24dc4fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.114258;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_e2c25e169e0d92e9a7837666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d779a24de0863795f39e62b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_29eb1896f0d6376c81c7e24a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_49537933d06f974bff55cee9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_87326343ea1fe5e64d22dd18.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091309;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_bd9f2dc8ae0f44da42a8661e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_42e9bdbe570267bee854fb61.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_23296efa63e759770e8eee86.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:22.562400px;}
.v3{vertical-align:28.236000px;}
.v1{vertical-align:30.381600px;}
.ls1d{letter-spacing:-0.780000px;}
.ls47{letter-spacing:-0.480000px;}
.ls5c{letter-spacing:-0.300000px;}
.ls5b{letter-spacing:-0.240000px;}
.ls1f{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.120000px;}
.ls36{letter-spacing:-0.096000px;}
.ls48{letter-spacing:-0.060000px;}
.ls73{letter-spacing:-0.048000px;}
.ls1c{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003540px;}
.lsa{letter-spacing:0.060000px;}
.ls49{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.120000px;}
.ls4a{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.180000px;}
.ls38{letter-spacing:0.191760px;}
.ls4{letter-spacing:0.240000px;}
.ls51{letter-spacing:0.266760px;}
.ls6e{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls37{letter-spacing:0.336000px;}
.ls44{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.420000px;}
.ls31{letter-spacing:0.480000px;}
.ls69{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.540000px;}
.ls6c{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.660000px;}
.ls39{letter-spacing:0.672000px;}
.ls27{letter-spacing:0.720000px;}
.ls67{letter-spacing:0.768000px;}
.ls1b{letter-spacing:0.780000px;}
.lse{letter-spacing:0.840000px;}
.lsf{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.960000px;}
.ls2a{letter-spacing:0.984600px;}
.ls68{letter-spacing:1.008000px;}
.ls3c{letter-spacing:1.020000px;}
.ls6d{letter-spacing:1.056000px;}
.lsc{letter-spacing:1.080000px;}
.ls3a{letter-spacing:1.140000px;}
.ls9{letter-spacing:1.200000px;}
.ls42{letter-spacing:1.260000px;}
.ls66{letter-spacing:1.296000px;}
.ls35{letter-spacing:1.320000px;}
.ls17{letter-spacing:1.380000px;}
.ls2c{letter-spacing:1.440000px;}
.ls70{letter-spacing:1.488000px;}
.ls2f{letter-spacing:1.500000px;}
.ls3f{letter-spacing:1.560000px;}
.ls6b{letter-spacing:1.584000px;}
.ls12{letter-spacing:1.620000px;}
.ls15{letter-spacing:1.680000px;}
.ls75{letter-spacing:1.728000px;}
.ls30{letter-spacing:1.740000px;}
.ls6a{letter-spacing:1.776000px;}
.ls33{letter-spacing:1.800000px;}
.ls19{letter-spacing:1.860000px;}
.ls28{letter-spacing:1.920000px;}
.ls55{letter-spacing:1.980000px;}
.ls3b{letter-spacing:2.040000px;}
.ls53{letter-spacing:2.100000px;}
.ls71{letter-spacing:2.112000px;}
.ls8{letter-spacing:2.160000px;}
.ls29{letter-spacing:2.220000px;}
.ls13{letter-spacing:2.280000px;}
.ls43{letter-spacing:2.340000px;}
.ls20{letter-spacing:2.400000px;}
.ls26{letter-spacing:2.460000px;}
.ls59{letter-spacing:2.520000px;}
.ls2b{letter-spacing:2.580000px;}
.ls2{letter-spacing:2.640000px;}
.ls6{letter-spacing:2.700000px;}
.ls7{letter-spacing:2.760000px;}
.ls18{letter-spacing:2.820000px;}
.ls3e{letter-spacing:2.880000px;}
.ls74{letter-spacing:2.928000px;}
.ls54{letter-spacing:2.940000px;}
.ls46{letter-spacing:3.000000px;}
.ls41{letter-spacing:3.060000px;}
.ls4f{letter-spacing:3.120000px;}
.ls40{letter-spacing:3.180000px;}
.ls63{letter-spacing:3.240000px;}
.ls1a{letter-spacing:3.300000px;}
.lsd{letter-spacing:3.360000px;}
.ls5a{letter-spacing:3.420000px;}
.ls45{letter-spacing:3.540000px;}
.ls57{letter-spacing:3.600000px;}
.ls11{letter-spacing:3.660000px;}
.ls58{letter-spacing:3.720000px;}
.ls60{letter-spacing:3.780000px;}
.ls14{letter-spacing:3.840000px;}
.ls23{letter-spacing:3.900000px;}
.ls61{letter-spacing:3.960000px;}
.ls50{letter-spacing:4.080000px;}
.ls56{letter-spacing:4.200000px;}
.ls65{letter-spacing:4.260000px;}
.ls32{letter-spacing:4.320000px;}
.ls6f{letter-spacing:4.512000px;}
.ls72{letter-spacing:4.560000px;}
.ls5d{letter-spacing:4.680000px;}
.ls4b{letter-spacing:4.740000px;}
.ls52{letter-spacing:4.800000px;}
.ls5{letter-spacing:5.220000px;}
.ls3d{letter-spacing:5.340000px;}
.ls34{letter-spacing:5.520000px;}
.ls64{letter-spacing:5.820000px;}
.ls62{letter-spacing:6.000000px;}
.ls4c{letter-spacing:6.120000px;}
.ls5e{letter-spacing:6.300000px;}
.ls2d{letter-spacing:6.351600px;}
.ls4d{letter-spacing:6.360000px;}
.ls4e{letter-spacing:7.260000px;}
.ls22{letter-spacing:8.820000px;}
.ls5f{letter-spacing:9.660000px;}
.ls0{letter-spacing:59.537400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.ws9a{word-spacing:-21.300000px;}
.ws80{word-spacing:-19.740000px;}
.ws81{word-spacing:-19.080000px;}
.ws3d{word-spacing:-18.900000px;}
.wsc{word-spacing:-18.840000px;}
.wsa{word-spacing:-18.660000px;}
.ws3f{word-spacing:-18.360000px;}
.ws15{word-spacing:-18.300000px;}
.ws89{word-spacing:-18.060000px;}
.ws13{word-spacing:-17.820000px;}
.ws5{word-spacing:-17.760000px;}
.ws4{word-spacing:-17.700000px;}
.wsa1{word-spacing:-17.520000px;}
.ws41{word-spacing:-17.460000px;}
.ws3b{word-spacing:-17.400000px;}
.wsb{word-spacing:-17.280000px;}
.ws14{word-spacing:-16.860000px;}
.ws45{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws3a{word-spacing:-16.620000px;}
.wsad{word-spacing:-16.560000px;}
.ws44{word-spacing:-16.440000px;}
.ws12{word-spacing:-16.380000px;}
.ws8{word-spacing:-16.200000px;}
.ws10{word-spacing:-15.960000px;}
.ws7{word-spacing:-15.900000px;}
.ws6{word-spacing:-15.840000px;}
.ws16{word-spacing:-15.780000px;}
.ws47{word-spacing:-15.720000px;}
.ws9{word-spacing:-15.660000px;}
.ws69{word-spacing:-15.600000px;}
.ws3c{word-spacing:-15.540000px;}
.ws46{word-spacing:-15.480000px;}
.ws40{word-spacing:-15.420000px;}
.ws11{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.240000px;}
.ws3e{word-spacing:-15.180000px;}
.wsf{word-spacing:-15.120000px;}
.ws42{word-spacing:-15.060000px;}
.wse{word-spacing:-15.000000px;}
.ws99{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.820000px;}
.ws93{word-spacing:-14.760000px;}
.ws94{word-spacing:-14.700000px;}
.wsa6{word-spacing:-14.640000px;}
.ws6a{word-spacing:-14.520000px;}
.wsac{word-spacing:-14.112000px;}
.wsa9{word-spacing:-13.680000px;}
.wsa8{word-spacing:-13.584000px;}
.ws43{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.344000px;}
.wsaa{word-spacing:-12.576000px;}
.ws17{word-spacing:-12.510000px;}
.wsab{word-spacing:-12.288000px;}
.wsa7{word-spacing:-12.096000px;}
.ws7c{word-spacing:-12.000000px;}
.ws60{word-spacing:-11.904000px;}
.ws1{word-spacing:-10.210662px;}
.wsa5{word-spacing:-8.745000px;}
.ws84{word-spacing:-7.260000px;}
.ws7d{word-spacing:-6.996000px;}
.ws83{word-spacing:-6.360000px;}
.ws9d{word-spacing:-6.300000px;}
.ws6d{word-spacing:-5.340000px;}
.ws82{word-spacing:-4.800000px;}
.ws1b{word-spacing:-4.684200px;}
.ws9b{word-spacing:-4.680000px;}
.wsbe{word-spacing:-4.560000px;}
.ws9c{word-spacing:-4.320000px;}
.wsae{word-spacing:-4.260000px;}
.ws8f{word-spacing:-4.200000px;}
.ws86{word-spacing:-4.080000px;}
.ws4b{word-spacing:-3.900000px;}
.ws2f{word-spacing:-3.840000px;}
.ws92{word-spacing:-3.720000px;}
.ws2c{word-spacing:-3.660000px;}
.ws90{word-spacing:-3.600000px;}
.ws7a{word-spacing:-3.540000px;}
.ws8e{word-spacing:-3.420000px;}
.ws28{word-spacing:-3.360000px;}
.ws38{word-spacing:-3.300000px;}
.wsa4{word-spacing:-3.240000px;}
.ws73{word-spacing:-3.180000px;}
.ws85{word-spacing:-3.120000px;}
.ws74{word-spacing:-3.060000px;}
.ws7b{word-spacing:-3.000000px;}
.ws8d{word-spacing:-2.940000px;}
.wsb3{word-spacing:-2.928000px;}
.ws1a{word-spacing:-2.886000px;}
.ws70{word-spacing:-2.880000px;}
.ws91{word-spacing:-2.820000px;}
.ws2d{word-spacing:-2.760000px;}
.ws52{word-spacing:-2.700000px;}
.ws1d{word-spacing:-2.640000px;}
.ws55{word-spacing:-2.580000px;}
.ws8b{word-spacing:-2.520000px;}
.ws4f{word-spacing:-2.460000px;}
.ws49{word-spacing:-2.400000px;}
.ws76{word-spacing:-2.340000px;}
.ws71{word-spacing:-2.280000px;}
.ws54{word-spacing:-2.220000px;}
.ws24{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.100000px;}
.ws6b{word-spacing:-2.040000px;}
.ws5a{word-spacing:-1.980000px;}
.ws53{word-spacing:-1.920000px;}
.ws37{word-spacing:-1.860000px;}
.ws5e{word-spacing:-1.800000px;}
.wsb7{word-spacing:-1.776000px;}
.ws5f{word-spacing:-1.740000px;}
.ws2e{word-spacing:-1.680000px;}
.ws48{word-spacing:-1.620000px;}
.wsb9{word-spacing:-1.584000px;}
.ws6e{word-spacing:-1.560000px;}
.ws59{word-spacing:-1.500000px;}
.wsbd{word-spacing:-1.488000px;}
.ws57{word-spacing:-1.440000px;}
.ws35{word-spacing:-1.380000px;}
.ws50{word-spacing:-1.320000px;}
.wsb0{word-spacing:-1.296000px;}
.ws75{word-spacing:-1.260000px;}
.ws25{word-spacing:-1.200000px;}
.ws78{word-spacing:-1.140000px;}
.ws31{word-spacing:-1.080000px;}
.wsbb{word-spacing:-1.056000px;}
.ws72{word-spacing:-1.020000px;}
.wsb4{word-spacing:-1.008000px;}
.ws33{word-spacing:-0.960000px;}
.ws2a{word-spacing:-0.900000px;}
.ws58{word-spacing:-0.840000px;}
.ws39{word-spacing:-0.780000px;}
.wsb1{word-spacing:-0.768000px;}
.ws51{word-spacing:-0.720000px;}
.ws68{word-spacing:-0.672000px;}
.ws2b{word-spacing:-0.660000px;}
.ws5c{word-spacing:-0.600000px;}
.wsba{word-spacing:-0.576000px;}
.ws5b{word-spacing:-0.540000px;}
.wsb6{word-spacing:-0.528000px;}
.ws4c{word-spacing:-0.480000px;}
.ws4e{word-spacing:-0.420000px;}
.ws77{word-spacing:-0.360000px;}
.ws65{word-spacing:-0.336000px;}
.ws1f{word-spacing:-0.300000px;}
.wsbc{word-spacing:-0.288000px;}
.ws21{word-spacing:-0.240000px;}
.ws56{word-spacing:-0.180000px;}
.ws7f{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.120000px;}
.wsb8{word-spacing:-0.096000px;}
.ws34{word-spacing:-0.060000px;}
.ws19{word-spacing:0.000000px;}
.wsb2{word-spacing:0.048000px;}
.ws6c{word-spacing:0.060000px;}
.ws62{word-spacing:0.096000px;}
.ws1c{word-spacing:0.120000px;}
.ws30{word-spacing:0.180000px;}
.ws66{word-spacing:0.240000px;}
.ws98{word-spacing:0.300000px;}
.ws4d{word-spacing:0.480000px;}
.ws95{word-spacing:0.600000px;}
.ws32{word-spacing:0.840000px;}
.wsb5{word-spacing:0.864000px;}
.ws7e{word-spacing:1.104000px;}
.ws97{word-spacing:1.200000px;}
.ws79{word-spacing:1.320000px;}
.ws63{word-spacing:1.392000px;}
.wsa3{word-spacing:1.440000px;}
.ws9f{word-spacing:1.500000px;}
.ws4a{word-spacing:1.620000px;}
.ws87{word-spacing:2.160000px;}
.ws1e{word-spacing:2.460000px;}
.ws8a{word-spacing:2.580000px;}
.ws26{word-spacing:2.700000px;}
.ws61{word-spacing:3.072000px;}
.wsa2{word-spacing:3.480000px;}
.ws96{word-spacing:3.660000px;}
.ws23{word-spacing:3.840000px;}
.ws29{word-spacing:3.900000px;}
.ws67{word-spacing:3.936000px;}
.ws64{word-spacing:3.984000px;}
.ws5d{word-spacing:4.140000px;}
.wsa0{word-spacing:4.380000px;}
.ws88{word-spacing:4.416000px;}
.ws6f{word-spacing:4.620000px;}
.ws22{word-spacing:4.920000px;}
.ws20{word-spacing:4.980000px;}
.ws9e{word-spacing:5.400000px;}
.wsaf{word-spacing:5.520000px;}
.ws36{word-spacing:8.820000px;}
._e{margin-left:-2898.096000px;}
._f{margin-left:-2874.288000px;}
._7{margin-left:-7.800000px;}
._d{margin-left:-6.750000px;}
._1{margin-left:-5.376000px;}
._9{margin-left:-4.350000px;}
._2{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.080000px;}
._c{width:1.050000px;}
._4{width:2.220000px;}
._6{width:3.330000px;}
._8{width:5.280000px;}
._a{width:6.300000px;}
._5{width:7.620000px;}
._b{width:8.940000px;}
._10{width:10.260000px;}
._11{width:11.340000px;}
._12{width:13.140000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsc{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.yba{bottom:83.554950px;}
.ye2{bottom:83.566650px;}
.y9a{bottom:83.637450px;}
.y14f{bottom:83.650350px;}
.yb6{bottom:83.770350px;}
.ya0{bottom:83.991750px;}
.y9d{bottom:84.310800px;}
.y95{bottom:84.511650px;}
.y2b{bottom:88.026750px;}
.y91{bottom:88.712100px;}
.y104{bottom:91.112100px;}
.yb9{bottom:99.298950px;}
.ye1{bottom:99.310650px;}
.y99{bottom:99.393450px;}
.y9f{bottom:99.735750px;}
.y9c{bottom:100.054800px;}
.y94{bottom:100.255650px;}
.y14e{bottom:101.650350px;}
.yb5{bottom:101.770350px;}
.y2a{bottom:103.023000px;}
.y90{bottom:106.712100px;}
.y103{bottom:109.112100px;}
.yb8{bottom:115.042950px;}
.y98{bottom:115.137450px;}
.y93{bottom:115.999650px;}
.y14d{bottom:119.650350px;}
.yb4{bottom:119.770350px;}
.y8f{bottom:124.712100px;}
.y102{bottom:127.112100px;}
.y97{bottom:130.881450px;}
.y14c{bottom:137.650350px;}
.yb3{bottom:137.770350px;}
.y8e{bottom:142.712100px;}
.y10c{bottom:143.952600px;}
.y101{bottom:145.112100px;}
.y14b{bottom:155.245350px;}
.y5d{bottom:155.628600px;}
.yb2{bottom:155.770350px;}
.y125{bottom:155.777100px;}
.y10b{bottom:159.558600px;}
.y8d{bottom:160.712100px;}
.y27{bottom:163.069650px;}
.y100{bottom:163.112100px;}
.y5c{bottom:173.628600px;}
.yb1{bottom:173.770350px;}
.y124{bottom:173.777100px;}
.y10a{bottom:173.920350px;}
.y8c{bottom:178.712100px;}
.y26{bottom:181.069650px;}
.yff{bottom:181.112100px;}
.y109{bottom:191.515350px;}
.y5b{bottom:191.628600px;}
.y14a{bottom:191.650350px;}
.yb0{bottom:191.770350px;}
.y123{bottom:191.777100px;}
.y8b{bottom:196.712100px;}
.y25{bottom:199.069650px;}
.yfe{bottom:199.112100px;}
.y5a{bottom:209.635350px;}
.y149{bottom:209.650350px;}
.yaf{bottom:209.770350px;}
.y122{bottom:209.777100px;}
.y8a{bottom:214.712100px;}
.y24{bottom:217.069650px;}
.yfd{bottom:217.112100px;}
.y59{bottom:227.635350px;}
.y148{bottom:227.650350px;}
.yae{bottom:227.770350px;}
.y121{bottom:227.777100px;}
.y89{bottom:232.712100px;}
.y23{bottom:235.069650px;}
.yfc{bottom:235.112100px;}
.y58{bottom:245.635350px;}
.y147{bottom:245.650350px;}
.yad{bottom:245.770350px;}
.y120{bottom:245.777100px;}
.y88{bottom:250.712100px;}
.y22{bottom:253.069650px;}
.yfb{bottom:253.112100px;}
.y57{bottom:263.635350px;}
.y146{bottom:263.650350px;}
.yac{bottom:263.770350px;}
.y11f{bottom:263.777100px;}
.y87{bottom:268.712100px;}
.y21{bottom:271.069650px;}
.yfa{bottom:271.112100px;}
.y56{bottom:281.635350px;}
.y145{bottom:281.650350px;}
.yab{bottom:281.770350px;}
.y11e{bottom:281.777100px;}
.y86{bottom:286.712100px;}
.y20{bottom:289.069650px;}
.yf9{bottom:289.112100px;}
.y55{bottom:299.635350px;}
.y144{bottom:299.650350px;}
.yaa{bottom:299.770350px;}
.y11d{bottom:299.777100px;}
.y85{bottom:304.712100px;}
.y1f{bottom:307.069650px;}
.yf8{bottom:307.112100px;}
.y54{bottom:317.635350px;}
.y143{bottom:317.650350px;}
.ya9{bottom:317.770350px;}
.y11c{bottom:317.777100px;}
.y84{bottom:322.712100px;}
.y1e{bottom:325.069650px;}
.yf7{bottom:325.112100px;}
.y53{bottom:335.635350px;}
.y142{bottom:335.650350px;}
.ya8{bottom:335.770350px;}
.y11b{bottom:335.777100px;}
.y83{bottom:340.712100px;}
.y1d{bottom:343.069650px;}
.yf6{bottom:343.112100px;}
.y52{bottom:353.635350px;}
.y141{bottom:353.650350px;}
.ya7{bottom:353.770350px;}
.y11a{bottom:353.777100px;}
.y82{bottom:358.712100px;}
.y1c{bottom:361.069650px;}
.yf5{bottom:361.112100px;}
.y51{bottom:371.635350px;}
.y140{bottom:371.650350px;}
.ya6{bottom:371.770350px;}
.y119{bottom:371.777100px;}
.y81{bottom:376.712100px;}
.y1b{bottom:379.069650px;}
.yf4{bottom:379.112100px;}
.y13f{bottom:389.650350px;}
.ya5{bottom:389.770350px;}
.y118{bottom:389.777100px;}
.y80{bottom:394.712100px;}
.y1a{bottom:397.069650px;}
.yf3{bottom:397.112100px;}
.y50{bottom:407.230350px;}
.y13e{bottom:407.650350px;}
.ya4{bottom:407.770350px;}
.y117{bottom:407.777100px;}
.y7f{bottom:412.712100px;}
.y19{bottom:415.069650px;}
.yf2{bottom:415.112100px;}
.ya3{bottom:425.770350px;}
.y116{bottom:425.777100px;}
.y7e{bottom:430.712100px;}
.y18{bottom:433.069650px;}
.yf1{bottom:433.112100px;}
.y13d{bottom:443.245350px;}
.ya2{bottom:443.770350px;}
.y115{bottom:443.777100px;}
.y7d{bottom:448.712100px;}
.y17b{bottom:449.263500px;}
.y17{bottom:451.069650px;}
.yf0{bottom:451.112100px;}
.y4f{bottom:461.770350px;}
.y114{bottom:461.777100px;}
.y17a{bottom:464.263500px;}
.y7c{bottom:466.712100px;}
.y16{bottom:469.069650px;}
.yef{bottom:469.112100px;}
.y179{bottom:479.263500px;}
.y13c{bottom:479.500350px;}
.y4e{bottom:479.770350px;}
.y113{bottom:479.777100px;}
.y7b{bottom:484.712100px;}
.y15{bottom:487.069650px;}
.yee{bottom:487.112100px;}
.y178{bottom:494.263500px;}
.y13b{bottom:497.500350px;}
.y4d{bottom:497.770350px;}
.y112{bottom:497.777100px;}
.y7a{bottom:502.712100px;}
.y29{bottom:505.069650px;}
.yed{bottom:505.112100px;}
.y177{bottom:509.263500px;}
.y13a{bottom:515.500350px;}
.y4c{bottom:515.770350px;}
.y111{bottom:515.777100px;}
.y79{bottom:520.712100px;}
.y14{bottom:522.666750px;}
.y28{bottom:523.069650px;}
.yec{bottom:523.112100px;}
.y176{bottom:524.263500px;}
.y139{bottom:533.500350px;}
.y4b{bottom:533.770350px;}
.y110{bottom:533.777100px;}
.y78{bottom:538.712100px;}
.y175{bottom:539.263500px;}
.y108{bottom:539.952750px;}
.yeb{bottom:541.112100px;}
.y138{bottom:551.500350px;}
.y4a{bottom:551.770350px;}
.y10f{bottom:551.777100px;}
.y174{bottom:554.263500px;}
.y107{bottom:555.558750px;}
.y77{bottom:556.712100px;}
.yea{bottom:559.112100px;}
.y173{bottom:569.263500px;}
.y154{bottom:569.365350px;}
.y137{bottom:569.500350px;}
.y49{bottom:569.770350px;}
.y10e{bottom:569.777100px;}
.y106{bottom:569.920350px;}
.y76{bottom:574.712100px;}
.ye9{bottom:577.112100px;}
.y172{bottom:584.263500px;}
.y136{bottom:587.500350px;}
.y105{bottom:587.515350px;}
.y48{bottom:587.770350px;}
.y10d{bottom:587.777100px;}
.y75{bottom:592.712100px;}
.ye8{bottom:595.112100px;}
.y13{bottom:597.514200px;}
.y171{bottom:599.263500px;}
.y153{bottom:605.365350px;}
.y135{bottom:605.500350px;}
.y47{bottom:605.770350px;}
.ye0{bottom:605.777100px;}
.y74{bottom:610.712100px;}
.yc7{bottom:613.112100px;}
.y170{bottom:614.263500px;}
.y46{bottom:623.770350px;}
.ydf{bottom:623.777100px;}
.y12{bottom:624.859200px;}
.y73{bottom:628.712100px;}
.y16f{bottom:629.263500px;}
.ye7{bottom:629.952750px;}
.yc6{bottom:631.112100px;}
.y134{bottom:641.095350px;}
.y45{bottom:641.770350px;}
.yde{bottom:641.777100px;}
.y11{bottom:642.859200px;}
.y16e{bottom:644.263500px;}
.ye6{bottom:645.558750px;}
.y72{bottom:646.712100px;}
.yc5{bottom:649.112100px;}
.y16d{bottom:659.263500px;}
.y44{bottom:659.770350px;}
.ydd{bottom:659.777100px;}
.ye5{bottom:659.920350px;}
.y10{bottom:660.859200px;}
.y71{bottom:664.712100px;}
.yc4{bottom:667.112100px;}
.y16c{bottom:674.263500px;}
.ye4{bottom:677.515350px;}
.y43{bottom:677.770350px;}
.ydc{bottom:677.777100px;}
.yf{bottom:678.859200px;}
.y70{bottom:682.712100px;}
.yc3{bottom:685.112100px;}
.y16b{bottom:689.263500px;}
.y133{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.ydb{bottom:695.777100px;}
.ye{bottom:696.859200px;}
.y6f{bottom:700.712100px;}
.yc2{bottom:703.112100px;}
.y16a{bottom:704.263500px;}
.y132{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.yda{bottom:713.777100px;}
.yd{bottom:714.859200px;}
.y6e{bottom:718.712100px;}
.y169{bottom:719.263500px;}
.yc1{bottom:721.112100px;}
.y131{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.yd9{bottom:731.777100px;}
.yc{bottom:732.859200px;}
.y168{bottom:734.263500px;}
.y6d{bottom:736.712100px;}
.yc0{bottom:739.112100px;}
.y167{bottom:749.263500px;}
.y152{bottom:749.365350px;}
.y130{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.yd8{bottom:749.777100px;}
.yb{bottom:750.859200px;}
.y6c{bottom:754.712100px;}
.y166{bottom:764.263500px;}
.y12f{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.yd7{bottom:767.777100px;}
.y6b{bottom:772.712100px;}
.ybf{bottom:773.952600px;}
.y165{bottom:779.263500px;}
.y12e{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.yd6{bottom:785.777100px;}
.ybe{bottom:789.558600px;}
.y6a{bottom:790.712100px;}
.y164{bottom:794.263500px;}
.ya{bottom:796.017450px;}
.y151{bottom:803.365350px;}
.y12d{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.yd5{bottom:803.777100px;}
.ybd{bottom:803.920350px;}
.y9{bottom:808.468200px;}
.y69{bottom:808.712100px;}
.y163{bottom:809.263500px;}
.ybc{bottom:821.515350px;}
.y12c{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.yd4{bottom:821.777100px;}
.y162{bottom:824.263500px;}
.y68{bottom:826.712100px;}
.y161{bottom:839.263500px;}
.y12b{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.yd3{bottom:839.777100px;}
.y67{bottom:844.712100px;}
.y8{bottom:845.608950px;}
.y160{bottom:854.263500px;}
.y12a{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.yd2{bottom:857.777100px;}
.y7{bottom:859.108950px;}
.y66{bottom:862.712100px;}
.y15f{bottom:869.263500px;}
.y129{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.yd1{bottom:875.777100px;}
.y65{bottom:880.712100px;}
.y15e{bottom:884.263500px;}
.y6{bottom:887.830950px;}
.y128{bottom:893.635350px;}
.y37{bottom:893.770350px;}
.yd0{bottom:893.777100px;}
.y64{bottom:898.712100px;}
.y15d{bottom:899.263500px;}
.y127{bottom:911.635350px;}
.y36{bottom:911.770350px;}
.ycf{bottom:911.777100px;}
.y15c{bottom:914.263500px;}
.y63{bottom:916.712100px;}
.y15b{bottom:929.263500px;}
.y150{bottom:929.365350px;}
.y35{bottom:929.770350px;}
.yce{bottom:929.777100px;}
.y5{bottom:934.012050px;}
.y62{bottom:934.712100px;}
.y15a{bottom:944.263500px;}
.y126{bottom:947.230350px;}
.y34{bottom:947.770350px;}
.ycd{bottom:947.777100px;}
.y159{bottom:959.263500px;}
.y33{bottom:965.770350px;}
.ycc{bottom:965.777100px;}
.y61{bottom:969.552750px;}
.y4{bottom:970.472850px;}
.y158{bottom:974.263500px;}
.y32{bottom:983.770350px;}
.ycb{bottom:983.777100px;}
.y60{bottom:985.158750px;}
.y157{bottom:989.263500px;}
.y5f{bottom:1001.508600px;}
.y31{bottom:1001.770350px;}
.yca{bottom:1001.777100px;}
.y156{bottom:1004.263500px;}
.y3{bottom:1006.933650px;}
.y30{bottom:1019.770350px;}
.yc9{bottom:1019.777100px;}
.y155{bottom:1037.365350px;}
.y5e{bottom:1037.373600px;}
.y2f{bottom:1037.770350px;}
.yc8{bottom:1037.777100px;}
.y2{bottom:1069.300350px;}
.yb7{bottom:1132.413750px;}
.y92{bottom:1132.418700px;}
.ya1{bottom:1132.419750px;}
.y17c{bottom:1132.423500px;}
.y9b{bottom:1132.425450px;}
.ye3{bottom:1132.426650px;}
.y9e{bottom:1132.426800px;}
.ybb{bottom:1132.426950px;}
.y96{bottom:1132.435650px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h7{height:28.393066px;}
.h2{height:30.577148px;}
.hd{height:32.761230px;}
.h14{height:33.328125px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.hc{height:40.209961px;}
.ha{height:41.660156px;}
.h15{height:41.992697px;}
.h16{height:42.016697px;}
.h13{height:42.023438px;}
.h17{height:42.040697px;}
.h9{height:43.681641px;}
.h8{height:43.740234px;}
.h12{height:47.276367px;}
.h10{height:52.523871px;}
.hb{height:52.529297px;}
.h18{height:52.550871px;}
.h11{height:54.228516px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:76.535400px;}
.x19{left:92.881800px;}
.x7{left:96.094500px;}
.x1{left:97.795200px;}
.x17{left:100.790400px;}
.x3{left:106.299150px;}
.xa{left:110.555400px;}
.x22{left:114.524100px;}
.x5{left:131.811000px;}
.xb{left:144.740400px;}
.x18{left:171.380400px;}
.x21{left:193.896000px;}
.x1a{left:197.668800px;}
.x4{left:210.792750px;}
.x23{left:218.811600px;}
.x8{left:455.041500px;}
.x11{left:457.082400px;}
.x20{left:467.150400px;}
.xd{left:468.404700px;}
.xe{left:473.053950px;}
.x15{left:478.330350px;}
.x6{left:480.486000px;}
.x10{left:491.102400px;}
.x1c{left:495.085350px;}
.x27{left:503.858400px;}
.x16{left:512.350350px;}
.x25{left:570.710400px;}
.x24{left:579.440400px;}
.xf{left:580.716450px;}
.x1d{left:582.775350px;}
.xc{left:591.644700px;}
.x26{left:596.116800px;}
.x1e{left:603.227250px;}
.x13{left:663.492300px;}
.x2{left:693.365400px;}
.x1b{left:721.714050px;}
.x12{left:728.391600px;}
.x1f{left:743.868150px;}
.x14{left:749.648100px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:20.055467pt;}
.v3{vertical-align:25.098667pt;}
.v1{vertical-align:27.005867pt;}
.ls1d{letter-spacing:-0.693333pt;}
.ls47{letter-spacing:-0.426667pt;}
.ls5c{letter-spacing:-0.266667pt;}
.ls5b{letter-spacing:-0.213333pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.106667pt;}
.ls36{letter-spacing:-0.085333pt;}
.ls48{letter-spacing:-0.053333pt;}
.ls73{letter-spacing:-0.042667pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003147pt;}
.lsa{letter-spacing:0.053333pt;}
.ls49{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls4a{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.160000pt;}
.ls38{letter-spacing:0.170453pt;}
.ls4{letter-spacing:0.213333pt;}
.ls51{letter-spacing:0.237120pt;}
.ls6e{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls37{letter-spacing:0.298667pt;}
.ls44{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.373333pt;}
.ls31{letter-spacing:0.426667pt;}
.ls69{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls6c{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.586667pt;}
.ls39{letter-spacing:0.597333pt;}
.ls27{letter-spacing:0.640000pt;}
.ls67{letter-spacing:0.682667pt;}
.ls1b{letter-spacing:0.693333pt;}
.lse{letter-spacing:0.746667pt;}
.lsf{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls2a{letter-spacing:0.875200pt;}
.ls68{letter-spacing:0.896000pt;}
.ls3c{letter-spacing:0.906667pt;}
.ls6d{letter-spacing:0.938667pt;}
.lsc{letter-spacing:0.960000pt;}
.ls3a{letter-spacing:1.013333pt;}
.ls9{letter-spacing:1.066667pt;}
.ls42{letter-spacing:1.120000pt;}
.ls66{letter-spacing:1.152000pt;}
.ls35{letter-spacing:1.173333pt;}
.ls17{letter-spacing:1.226667pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls70{letter-spacing:1.322667pt;}
.ls2f{letter-spacing:1.333333pt;}
.ls3f{letter-spacing:1.386667pt;}
.ls6b{letter-spacing:1.408000pt;}
.ls12{letter-spacing:1.440000pt;}
.ls15{letter-spacing:1.493333pt;}
.ls75{letter-spacing:1.536000pt;}
.ls30{letter-spacing:1.546667pt;}
.ls6a{letter-spacing:1.578667pt;}
.ls33{letter-spacing:1.600000pt;}
.ls19{letter-spacing:1.653333pt;}
.ls28{letter-spacing:1.706667pt;}
.ls55{letter-spacing:1.760000pt;}
.ls3b{letter-spacing:1.813333pt;}
.ls53{letter-spacing:1.866667pt;}
.ls71{letter-spacing:1.877333pt;}
.ls8{letter-spacing:1.920000pt;}
.ls29{letter-spacing:1.973333pt;}
.ls13{letter-spacing:2.026667pt;}
.ls43{letter-spacing:2.080000pt;}
.ls20{letter-spacing:2.133333pt;}
.ls26{letter-spacing:2.186667pt;}
.ls59{letter-spacing:2.240000pt;}
.ls2b{letter-spacing:2.293333pt;}
.ls2{letter-spacing:2.346667pt;}
.ls6{letter-spacing:2.400000pt;}
.ls7{letter-spacing:2.453333pt;}
.ls18{letter-spacing:2.506667pt;}
.ls3e{letter-spacing:2.560000pt;}
.ls74{letter-spacing:2.602667pt;}
.ls54{letter-spacing:2.613333pt;}
.ls46{letter-spacing:2.666667pt;}
.ls41{letter-spacing:2.720000pt;}
.ls4f{letter-spacing:2.773333pt;}
.ls40{letter-spacing:2.826667pt;}
.ls63{letter-spacing:2.880000pt;}
.ls1a{letter-spacing:2.933333pt;}
.lsd{letter-spacing:2.986667pt;}
.ls5a{letter-spacing:3.040000pt;}
.ls45{letter-spacing:3.146667pt;}
.ls57{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.253333pt;}
.ls58{letter-spacing:3.306667pt;}
.ls60{letter-spacing:3.360000pt;}
.ls14{letter-spacing:3.413333pt;}
.ls23{letter-spacing:3.466667pt;}
.ls61{letter-spacing:3.520000pt;}
.ls50{letter-spacing:3.626667pt;}
.ls56{letter-spacing:3.733333pt;}
.ls65{letter-spacing:3.786667pt;}
.ls32{letter-spacing:3.840000pt;}
.ls6f{letter-spacing:4.010667pt;}
.ls72{letter-spacing:4.053333pt;}
.ls5d{letter-spacing:4.160000pt;}
.ls4b{letter-spacing:4.213333pt;}
.ls52{letter-spacing:4.266667pt;}
.ls5{letter-spacing:4.640000pt;}
.ls3d{letter-spacing:4.746667pt;}
.ls34{letter-spacing:4.906667pt;}
.ls64{letter-spacing:5.173333pt;}
.ls62{letter-spacing:5.333333pt;}
.ls4c{letter-spacing:5.440000pt;}
.ls5e{letter-spacing:5.600000pt;}
.ls2d{letter-spacing:5.645867pt;}
.ls4d{letter-spacing:5.653333pt;}
.ls4e{letter-spacing:6.453333pt;}
.ls22{letter-spacing:7.840000pt;}
.ls5f{letter-spacing:8.586667pt;}
.ls0{letter-spacing:52.922133pt;}
.ws0{word-spacing:-31.284267pt;}
.ws9a{word-spacing:-18.933333pt;}
.ws80{word-spacing:-17.546667pt;}
.ws81{word-spacing:-16.960000pt;}
.ws3d{word-spacing:-16.800000pt;}
.wsc{word-spacing:-16.746667pt;}
.wsa{word-spacing:-16.586667pt;}
.ws3f{word-spacing:-16.320000pt;}
.ws15{word-spacing:-16.266667pt;}
.ws89{word-spacing:-16.053333pt;}
.ws13{word-spacing:-15.840000pt;}
.ws5{word-spacing:-15.786667pt;}
.ws4{word-spacing:-15.733333pt;}
.wsa1{word-spacing:-15.573333pt;}
.ws41{word-spacing:-15.520000pt;}
.ws3b{word-spacing:-15.466667pt;}
.wsb{word-spacing:-15.360000pt;}
.ws14{word-spacing:-14.986667pt;}
.ws45{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws3a{word-spacing:-14.773333pt;}
.wsad{word-spacing:-14.720000pt;}
.ws44{word-spacing:-14.613333pt;}
.ws12{word-spacing:-14.560000pt;}
.ws8{word-spacing:-14.400000pt;}
.ws10{word-spacing:-14.186667pt;}
.ws7{word-spacing:-14.133333pt;}
.ws6{word-spacing:-14.080000pt;}
.ws16{word-spacing:-14.026667pt;}
.ws47{word-spacing:-13.973333pt;}
.ws9{word-spacing:-13.920000pt;}
.ws69{word-spacing:-13.866667pt;}
.ws3c{word-spacing:-13.813333pt;}
.ws46{word-spacing:-13.760000pt;}
.ws40{word-spacing:-13.706667pt;}
.ws11{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.546667pt;}
.ws3e{word-spacing:-13.493333pt;}
.wsf{word-spacing:-13.440000pt;}
.ws42{word-spacing:-13.386667pt;}
.wse{word-spacing:-13.333333pt;}
.ws99{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.173333pt;}
.ws93{word-spacing:-13.120000pt;}
.ws94{word-spacing:-13.066667pt;}
.wsa6{word-spacing:-13.013333pt;}
.ws6a{word-spacing:-12.906667pt;}
.wsac{word-spacing:-12.544000pt;}
.wsa9{word-spacing:-12.160000pt;}
.wsa8{word-spacing:-12.074667pt;}
.ws43{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.861333pt;}
.wsaa{word-spacing:-11.178667pt;}
.ws17{word-spacing:-11.120000pt;}
.wsab{word-spacing:-10.922667pt;}
.wsa7{word-spacing:-10.752000pt;}
.ws7c{word-spacing:-10.666667pt;}
.ws60{word-spacing:-10.581333pt;}
.ws1{word-spacing:-9.076144pt;}
.wsa5{word-spacing:-7.773333pt;}
.ws84{word-spacing:-6.453333pt;}
.ws7d{word-spacing:-6.218667pt;}
.ws83{word-spacing:-5.653333pt;}
.ws9d{word-spacing:-5.600000pt;}
.ws6d{word-spacing:-4.746667pt;}
.ws82{word-spacing:-4.266667pt;}
.ws1b{word-spacing:-4.163733pt;}
.ws9b{word-spacing:-4.160000pt;}
.wsbe{word-spacing:-4.053333pt;}
.ws9c{word-spacing:-3.840000pt;}
.wsae{word-spacing:-3.786667pt;}
.ws8f{word-spacing:-3.733333pt;}
.ws86{word-spacing:-3.626667pt;}
.ws4b{word-spacing:-3.466667pt;}
.ws2f{word-spacing:-3.413333pt;}
.ws92{word-spacing:-3.306667pt;}
.ws2c{word-spacing:-3.253333pt;}
.ws90{word-spacing:-3.200000pt;}
.ws7a{word-spacing:-3.146667pt;}
.ws8e{word-spacing:-3.040000pt;}
.ws28{word-spacing:-2.986667pt;}
.ws38{word-spacing:-2.933333pt;}
.wsa4{word-spacing:-2.880000pt;}
.ws73{word-spacing:-2.826667pt;}
.ws85{word-spacing:-2.773333pt;}
.ws74{word-spacing:-2.720000pt;}
.ws7b{word-spacing:-2.666667pt;}
.ws8d{word-spacing:-2.613333pt;}
.wsb3{word-spacing:-2.602667pt;}
.ws1a{word-spacing:-2.565333pt;}
.ws70{word-spacing:-2.560000pt;}
.ws91{word-spacing:-2.506667pt;}
.ws2d{word-spacing:-2.453333pt;}
.ws52{word-spacing:-2.400000pt;}
.ws1d{word-spacing:-2.346667pt;}
.ws55{word-spacing:-2.293333pt;}
.ws8b{word-spacing:-2.240000pt;}
.ws4f{word-spacing:-2.186667pt;}
.ws49{word-spacing:-2.133333pt;}
.ws76{word-spacing:-2.080000pt;}
.ws71{word-spacing:-2.026667pt;}
.ws54{word-spacing:-1.973333pt;}
.ws24{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.866667pt;}
.ws6b{word-spacing:-1.813333pt;}
.ws5a{word-spacing:-1.760000pt;}
.ws53{word-spacing:-1.706667pt;}
.ws37{word-spacing:-1.653333pt;}
.ws5e{word-spacing:-1.600000pt;}
.wsb7{word-spacing:-1.578667pt;}
.ws5f{word-spacing:-1.546667pt;}
.ws2e{word-spacing:-1.493333pt;}
.ws48{word-spacing:-1.440000pt;}
.wsb9{word-spacing:-1.408000pt;}
.ws6e{word-spacing:-1.386667pt;}
.ws59{word-spacing:-1.333333pt;}
.wsbd{word-spacing:-1.322667pt;}
.ws57{word-spacing:-1.280000pt;}
.ws35{word-spacing:-1.226667pt;}
.ws50{word-spacing:-1.173333pt;}
.wsb0{word-spacing:-1.152000pt;}
.ws75{word-spacing:-1.120000pt;}
.ws25{word-spacing:-1.066667pt;}
.ws78{word-spacing:-1.013333pt;}
.ws31{word-spacing:-0.960000pt;}
.wsbb{word-spacing:-0.938667pt;}
.ws72{word-spacing:-0.906667pt;}
.wsb4{word-spacing:-0.896000pt;}
.ws33{word-spacing:-0.853333pt;}
.ws2a{word-spacing:-0.800000pt;}
.ws58{word-spacing:-0.746667pt;}
.ws39{word-spacing:-0.693333pt;}
.wsb1{word-spacing:-0.682667pt;}
.ws51{word-spacing:-0.640000pt;}
.ws68{word-spacing:-0.597333pt;}
.ws2b{word-spacing:-0.586667pt;}
.ws5c{word-spacing:-0.533333pt;}
.wsba{word-spacing:-0.512000pt;}
.ws5b{word-spacing:-0.480000pt;}
.wsb6{word-spacing:-0.469333pt;}
.ws4c{word-spacing:-0.426667pt;}
.ws4e{word-spacing:-0.373333pt;}
.ws77{word-spacing:-0.320000pt;}
.ws65{word-spacing:-0.298667pt;}
.ws1f{word-spacing:-0.266667pt;}
.wsbc{word-spacing:-0.256000pt;}
.ws21{word-spacing:-0.213333pt;}
.ws56{word-spacing:-0.160000pt;}
.ws7f{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.106667pt;}
.wsb8{word-spacing:-0.085333pt;}
.ws34{word-spacing:-0.053333pt;}
.ws19{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.042667pt;}
.ws6c{word-spacing:0.053333pt;}
.ws62{word-spacing:0.085333pt;}
.ws1c{word-spacing:0.106667pt;}
.ws30{word-spacing:0.160000pt;}
.ws66{word-spacing:0.213333pt;}
.ws98{word-spacing:0.266667pt;}
.ws4d{word-spacing:0.426667pt;}
.ws95{word-spacing:0.533333pt;}
.ws32{word-spacing:0.746667pt;}
.wsb5{word-spacing:0.768000pt;}
.ws7e{word-spacing:0.981333pt;}
.ws97{word-spacing:1.066667pt;}
.ws79{word-spacing:1.173333pt;}
.ws63{word-spacing:1.237333pt;}
.wsa3{word-spacing:1.280000pt;}
.ws9f{word-spacing:1.333333pt;}
.ws4a{word-spacing:1.440000pt;}
.ws87{word-spacing:1.920000pt;}
.ws1e{word-spacing:2.186667pt;}
.ws8a{word-spacing:2.293333pt;}
.ws26{word-spacing:2.400000pt;}
.ws61{word-spacing:2.730667pt;}
.wsa2{word-spacing:3.093333pt;}
.ws96{word-spacing:3.253333pt;}
.ws23{word-spacing:3.413333pt;}
.ws29{word-spacing:3.466667pt;}
.ws67{word-spacing:3.498667pt;}
.ws64{word-spacing:3.541333pt;}
.ws5d{word-spacing:3.680000pt;}
.wsa0{word-spacing:3.893333pt;}
.ws88{word-spacing:3.925333pt;}
.ws6f{word-spacing:4.106667pt;}
.ws22{word-spacing:4.373333pt;}
.ws20{word-spacing:4.426667pt;}
.ws9e{word-spacing:4.800000pt;}
.wsaf{word-spacing:4.906667pt;}
.ws36{word-spacing:7.840000pt;}
._e{margin-left:-2576.085333pt;}
._f{margin-left:-2554.922667pt;}
._7{margin-left:-6.933333pt;}
._d{margin-left:-6.000000pt;}
._1{margin-left:-4.778667pt;}
._9{margin-left:-3.866667pt;}
._2{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.960000pt;}
._c{width:0.933333pt;}
._4{width:1.973333pt;}
._6{width:2.960000pt;}
._8{width:4.693333pt;}
._a{width:5.600000pt;}
._5{width:6.773333pt;}
._b{width:7.946667pt;}
._10{width:9.120000pt;}
._11{width:10.080000pt;}
._12{width:11.680000pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.yba{bottom:74.271067pt;}
.ye2{bottom:74.281467pt;}
.y9a{bottom:74.344400pt;}
.y14f{bottom:74.355867pt;}
.yb6{bottom:74.462533pt;}
.ya0{bottom:74.659333pt;}
.y9d{bottom:74.942933pt;}
.y95{bottom:75.121467pt;}
.y2b{bottom:78.246000pt;}
.y91{bottom:78.855200pt;}
.y104{bottom:80.988533pt;}
.yb9{bottom:88.265733pt;}
.ye1{bottom:88.276133pt;}
.y99{bottom:88.349733pt;}
.y9f{bottom:88.654000pt;}
.y9c{bottom:88.937600pt;}
.y94{bottom:89.116133pt;}
.y14e{bottom:90.355867pt;}
.yb5{bottom:90.462533pt;}
.y2a{bottom:91.576000pt;}
.y90{bottom:94.855200pt;}
.y103{bottom:96.988533pt;}
.yb8{bottom:102.260400pt;}
.y98{bottom:102.344400pt;}
.y93{bottom:103.110800pt;}
.y14d{bottom:106.355867pt;}
.yb4{bottom:106.462533pt;}
.y8f{bottom:110.855200pt;}
.y102{bottom:112.988533pt;}
.y97{bottom:116.339067pt;}
.y14c{bottom:122.355867pt;}
.yb3{bottom:122.462533pt;}
.y8e{bottom:126.855200pt;}
.y10c{bottom:127.957867pt;}
.y101{bottom:128.988533pt;}
.y14b{bottom:137.995867pt;}
.y5d{bottom:138.336533pt;}
.yb2{bottom:138.462533pt;}
.y125{bottom:138.468533pt;}
.y10b{bottom:141.829867pt;}
.y8d{bottom:142.855200pt;}
.y27{bottom:144.950800pt;}
.y100{bottom:144.988533pt;}
.y5c{bottom:154.336533pt;}
.yb1{bottom:154.462533pt;}
.y124{bottom:154.468533pt;}
.y10a{bottom:154.595867pt;}
.y8c{bottom:158.855200pt;}
.y26{bottom:160.950800pt;}
.yff{bottom:160.988533pt;}
.y109{bottom:170.235867pt;}
.y5b{bottom:170.336533pt;}
.y14a{bottom:170.355867pt;}
.yb0{bottom:170.462533pt;}
.y123{bottom:170.468533pt;}
.y8b{bottom:174.855200pt;}
.y25{bottom:176.950800pt;}
.yfe{bottom:176.988533pt;}
.y5a{bottom:186.342533pt;}
.y149{bottom:186.355867pt;}
.yaf{bottom:186.462533pt;}
.y122{bottom:186.468533pt;}
.y8a{bottom:190.855200pt;}
.y24{bottom:192.950800pt;}
.yfd{bottom:192.988533pt;}
.y59{bottom:202.342533pt;}
.y148{bottom:202.355867pt;}
.yae{bottom:202.462533pt;}
.y121{bottom:202.468533pt;}
.y89{bottom:206.855200pt;}
.y23{bottom:208.950800pt;}
.yfc{bottom:208.988533pt;}
.y58{bottom:218.342533pt;}
.y147{bottom:218.355867pt;}
.yad{bottom:218.462533pt;}
.y120{bottom:218.468533pt;}
.y88{bottom:222.855200pt;}
.y22{bottom:224.950800pt;}
.yfb{bottom:224.988533pt;}
.y57{bottom:234.342533pt;}
.y146{bottom:234.355867pt;}
.yac{bottom:234.462533pt;}
.y11f{bottom:234.468533pt;}
.y87{bottom:238.855200pt;}
.y21{bottom:240.950800pt;}
.yfa{bottom:240.988533pt;}
.y56{bottom:250.342533pt;}
.y145{bottom:250.355867pt;}
.yab{bottom:250.462533pt;}
.y11e{bottom:250.468533pt;}
.y86{bottom:254.855200pt;}
.y20{bottom:256.950800pt;}
.yf9{bottom:256.988533pt;}
.y55{bottom:266.342533pt;}
.y144{bottom:266.355867pt;}
.yaa{bottom:266.462533pt;}
.y11d{bottom:266.468533pt;}
.y85{bottom:270.855200pt;}
.y1f{bottom:272.950800pt;}
.yf8{bottom:272.988533pt;}
.y54{bottom:282.342533pt;}
.y143{bottom:282.355867pt;}
.ya9{bottom:282.462533pt;}
.y11c{bottom:282.468533pt;}
.y84{bottom:286.855200pt;}
.y1e{bottom:288.950800pt;}
.yf7{bottom:288.988533pt;}
.y53{bottom:298.342533pt;}
.y142{bottom:298.355867pt;}
.ya8{bottom:298.462533pt;}
.y11b{bottom:298.468533pt;}
.y83{bottom:302.855200pt;}
.y1d{bottom:304.950800pt;}
.yf6{bottom:304.988533pt;}
.y52{bottom:314.342533pt;}
.y141{bottom:314.355867pt;}
.ya7{bottom:314.462533pt;}
.y11a{bottom:314.468533pt;}
.y82{bottom:318.855200pt;}
.y1c{bottom:320.950800pt;}
.yf5{bottom:320.988533pt;}
.y51{bottom:330.342533pt;}
.y140{bottom:330.355867pt;}
.ya6{bottom:330.462533pt;}
.y119{bottom:330.468533pt;}
.y81{bottom:334.855200pt;}
.y1b{bottom:336.950800pt;}
.yf4{bottom:336.988533pt;}
.y13f{bottom:346.355867pt;}
.ya5{bottom:346.462533pt;}
.y118{bottom:346.468533pt;}
.y80{bottom:350.855200pt;}
.y1a{bottom:352.950800pt;}
.yf3{bottom:352.988533pt;}
.y50{bottom:361.982533pt;}
.y13e{bottom:362.355867pt;}
.ya4{bottom:362.462533pt;}
.y117{bottom:362.468533pt;}
.y7f{bottom:366.855200pt;}
.y19{bottom:368.950800pt;}
.yf2{bottom:368.988533pt;}
.ya3{bottom:378.462533pt;}
.y116{bottom:378.468533pt;}
.y7e{bottom:382.855200pt;}
.y18{bottom:384.950800pt;}
.yf1{bottom:384.988533pt;}
.y13d{bottom:393.995867pt;}
.ya2{bottom:394.462533pt;}
.y115{bottom:394.468533pt;}
.y7d{bottom:398.855200pt;}
.y17b{bottom:399.345333pt;}
.y17{bottom:400.950800pt;}
.yf0{bottom:400.988533pt;}
.y4f{bottom:410.462533pt;}
.y114{bottom:410.468533pt;}
.y17a{bottom:412.678667pt;}
.y7c{bottom:414.855200pt;}
.y16{bottom:416.950800pt;}
.yef{bottom:416.988533pt;}
.y179{bottom:426.012000pt;}
.y13c{bottom:426.222533pt;}
.y4e{bottom:426.462533pt;}
.y113{bottom:426.468533pt;}
.y7b{bottom:430.855200pt;}
.y15{bottom:432.950800pt;}
.yee{bottom:432.988533pt;}
.y178{bottom:439.345333pt;}
.y13b{bottom:442.222533pt;}
.y4d{bottom:442.462533pt;}
.y112{bottom:442.468533pt;}
.y7a{bottom:446.855200pt;}
.y29{bottom:448.950800pt;}
.yed{bottom:448.988533pt;}
.y177{bottom:452.678667pt;}
.y13a{bottom:458.222533pt;}
.y4c{bottom:458.462533pt;}
.y111{bottom:458.468533pt;}
.y79{bottom:462.855200pt;}
.y14{bottom:464.592667pt;}
.y28{bottom:464.950800pt;}
.yec{bottom:464.988533pt;}
.y176{bottom:466.012000pt;}
.y139{bottom:474.222533pt;}
.y4b{bottom:474.462533pt;}
.y110{bottom:474.468533pt;}
.y78{bottom:478.855200pt;}
.y175{bottom:479.345333pt;}
.y108{bottom:479.958000pt;}
.yeb{bottom:480.988533pt;}
.y138{bottom:490.222533pt;}
.y4a{bottom:490.462533pt;}
.y10f{bottom:490.468533pt;}
.y174{bottom:492.678667pt;}
.y107{bottom:493.830000pt;}
.y77{bottom:494.855200pt;}
.yea{bottom:496.988533pt;}
.y173{bottom:506.012000pt;}
.y154{bottom:506.102533pt;}
.y137{bottom:506.222533pt;}
.y49{bottom:506.462533pt;}
.y10e{bottom:506.468533pt;}
.y106{bottom:506.595867pt;}
.y76{bottom:510.855200pt;}
.ye9{bottom:512.988533pt;}
.y172{bottom:519.345333pt;}
.y136{bottom:522.222533pt;}
.y105{bottom:522.235867pt;}
.y48{bottom:522.462533pt;}
.y10d{bottom:522.468533pt;}
.y75{bottom:526.855200pt;}
.ye8{bottom:528.988533pt;}
.y13{bottom:531.123733pt;}
.y171{bottom:532.678667pt;}
.y153{bottom:538.102533pt;}
.y135{bottom:538.222533pt;}
.y47{bottom:538.462533pt;}
.ye0{bottom:538.468533pt;}
.y74{bottom:542.855200pt;}
.yc7{bottom:544.988533pt;}
.y170{bottom:546.012000pt;}
.y46{bottom:554.462533pt;}
.ydf{bottom:554.468533pt;}
.y12{bottom:555.430400pt;}
.y73{bottom:558.855200pt;}
.y16f{bottom:559.345333pt;}
.ye7{bottom:559.958000pt;}
.yc6{bottom:560.988533pt;}
.y134{bottom:569.862533pt;}
.y45{bottom:570.462533pt;}
.yde{bottom:570.468533pt;}
.y11{bottom:571.430400pt;}
.y16e{bottom:572.678667pt;}
.ye6{bottom:573.830000pt;}
.y72{bottom:574.855200pt;}
.yc5{bottom:576.988533pt;}
.y16d{bottom:586.012000pt;}
.y44{bottom:586.462533pt;}
.ydd{bottom:586.468533pt;}
.ye5{bottom:586.595867pt;}
.y10{bottom:587.430400pt;}
.y71{bottom:590.855200pt;}
.yc4{bottom:592.988533pt;}
.y16c{bottom:599.345333pt;}
.ye4{bottom:602.235867pt;}
.y43{bottom:602.462533pt;}
.ydc{bottom:602.468533pt;}
.yf{bottom:603.430400pt;}
.y70{bottom:606.855200pt;}
.yc3{bottom:608.988533pt;}
.y16b{bottom:612.678667pt;}
.y133{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.ydb{bottom:618.468533pt;}
.ye{bottom:619.430400pt;}
.y6f{bottom:622.855200pt;}
.yc2{bottom:624.988533pt;}
.y16a{bottom:626.012000pt;}
.y132{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.yda{bottom:634.468533pt;}
.yd{bottom:635.430400pt;}
.y6e{bottom:638.855200pt;}
.y169{bottom:639.345333pt;}
.yc1{bottom:640.988533pt;}
.y131{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.yd9{bottom:650.468533pt;}
.yc{bottom:651.430400pt;}
.y168{bottom:652.678667pt;}
.y6d{bottom:654.855200pt;}
.yc0{bottom:656.988533pt;}
.y167{bottom:666.012000pt;}
.y152{bottom:666.102533pt;}
.y130{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.yd8{bottom:666.468533pt;}
.yb{bottom:667.430400pt;}
.y6c{bottom:670.855200pt;}
.y166{bottom:679.345333pt;}
.y12f{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.yd7{bottom:682.468533pt;}
.y6b{bottom:686.855200pt;}
.ybf{bottom:687.957867pt;}
.y165{bottom:692.678667pt;}
.y12e{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.yd6{bottom:698.468533pt;}
.ybe{bottom:701.829867pt;}
.y6a{bottom:702.855200pt;}
.y164{bottom:706.012000pt;}
.ya{bottom:707.571067pt;}
.y151{bottom:714.102533pt;}
.y12d{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.yd5{bottom:714.468533pt;}
.ybd{bottom:714.595867pt;}
.y9{bottom:718.638400pt;}
.y69{bottom:718.855200pt;}
.y163{bottom:719.345333pt;}
.ybc{bottom:730.235867pt;}
.y12c{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.yd4{bottom:730.468533pt;}
.y162{bottom:732.678667pt;}
.y68{bottom:734.855200pt;}
.y161{bottom:746.012000pt;}
.y12b{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.yd3{bottom:746.468533pt;}
.y67{bottom:750.855200pt;}
.y8{bottom:751.652400pt;}
.y160{bottom:759.345333pt;}
.y12a{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.yd2{bottom:762.468533pt;}
.y7{bottom:763.652400pt;}
.y66{bottom:766.855200pt;}
.y15f{bottom:772.678667pt;}
.y129{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.yd1{bottom:778.468533pt;}
.y65{bottom:782.855200pt;}
.y15e{bottom:786.012000pt;}
.y6{bottom:789.183067pt;}
.y128{bottom:794.342533pt;}
.y37{bottom:794.462533pt;}
.yd0{bottom:794.468533pt;}
.y64{bottom:798.855200pt;}
.y15d{bottom:799.345333pt;}
.y127{bottom:810.342533pt;}
.y36{bottom:810.462533pt;}
.ycf{bottom:810.468533pt;}
.y15c{bottom:812.678667pt;}
.y63{bottom:814.855200pt;}
.y15b{bottom:826.012000pt;}
.y150{bottom:826.102533pt;}
.y35{bottom:826.462533pt;}
.yce{bottom:826.468533pt;}
.y5{bottom:830.232933pt;}
.y62{bottom:830.855200pt;}
.y15a{bottom:839.345333pt;}
.y126{bottom:841.982533pt;}
.y34{bottom:842.462533pt;}
.ycd{bottom:842.468533pt;}
.y159{bottom:852.678667pt;}
.y33{bottom:858.462533pt;}
.ycc{bottom:858.468533pt;}
.y61{bottom:861.824667pt;}
.y4{bottom:862.642533pt;}
.y158{bottom:866.012000pt;}
.y32{bottom:874.462533pt;}
.ycb{bottom:874.468533pt;}
.y60{bottom:875.696667pt;}
.y157{bottom:879.345333pt;}
.y5f{bottom:890.229867pt;}
.y31{bottom:890.462533pt;}
.yca{bottom:890.468533pt;}
.y156{bottom:892.678667pt;}
.y3{bottom:895.052133pt;}
.y30{bottom:906.462533pt;}
.yc9{bottom:906.468533pt;}
.y155{bottom:922.102533pt;}
.y5e{bottom:922.109867pt;}
.y2f{bottom:922.462533pt;}
.yc8{bottom:922.468533pt;}
.y2{bottom:950.489200pt;}
.yb7{bottom:1006.590000pt;}
.y92{bottom:1006.594400pt;}
.ya1{bottom:1006.595333pt;}
.y17c{bottom:1006.598667pt;}
.y9b{bottom:1006.600400pt;}
.ye3{bottom:1006.601467pt;}
.y9e{bottom:1006.601600pt;}
.ybb{bottom:1006.601733pt;}
.y96{bottom:1006.609467pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h7{height:25.238281pt;}
.h2{height:27.179688pt;}
.hd{height:29.121094pt;}
.h14{height:29.625000pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.hc{height:35.742188pt;}
.ha{height:37.031250pt;}
.h15{height:37.326842pt;}
.h16{height:37.348175pt;}
.h13{height:37.354167pt;}
.h17{height:37.369508pt;}
.h9{height:38.828125pt;}
.h8{height:38.880208pt;}
.h12{height:42.023438pt;}
.h10{height:46.687885pt;}
.hb{height:46.692708pt;}
.h18{height:46.711885pt;}
.h11{height:48.203125pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:68.031467pt;}
.x19{left:82.561600pt;}
.x7{left:85.417333pt;}
.x1{left:86.929067pt;}
.x17{left:89.591467pt;}
.x3{left:94.488133pt;}
.xa{left:98.271467pt;}
.x22{left:101.799200pt;}
.x5{left:117.165333pt;}
.xb{left:128.658133pt;}
.x18{left:152.338133pt;}
.x21{left:172.352000pt;}
.x1a{left:175.705600pt;}
.x4{left:187.371333pt;}
.x23{left:194.499200pt;}
.x8{left:404.481333pt;}
.x11{left:406.295467pt;}
.x20{left:415.244800pt;}
.xd{left:416.359733pt;}
.xe{left:420.492400pt;}
.x15{left:425.182533pt;}
.x6{left:427.098667pt;}
.x10{left:436.535467pt;}
.x1c{left:440.075867pt;}
.x27{left:447.874133pt;}
.x16{left:455.422533pt;}
.x25{left:507.298133pt;}
.x24{left:515.058133pt;}
.xf{left:516.192400pt;}
.x1d{left:518.022533pt;}
.xc{left:525.906400pt;}
.x26{left:529.881600pt;}
.x1e{left:536.202000pt;}
.x13{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1b{left:641.523600pt;}
.x12{left:647.459200pt;}
.x1f{left:661.216133pt;}
.x14{left:666.353867pt;}
}




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