
    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_c780f652582bd6601c8351b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_3a3b30f812048f85024c2dd6.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_06886c46bdcbad5128cd871b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a0a7a9ec92b4029bff560e5e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7e1531a6744130458e2abcf8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ad3201c0d897ffbc4d2a2680.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ddbd447487c5972b7bd5c32.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_68951a4272d012ff76e4d389.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_84710a4bb4d7d4cb9aa382ec.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.lsc{letter-spacing:-0.780000px;}
.ls3b{letter-spacing:-0.420000px;}
.ls2e{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.300000px;}
.ls3c{letter-spacing:-0.240000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.120000px;}
.ls68{letter-spacing:-0.096000px;}
.ls2f{letter-spacing:-0.060000px;}
.ls6b{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls42{letter-spacing:0.048000px;}
.ls2c{letter-spacing:0.060000px;}
.ls62{letter-spacing:0.096000px;}
.ls30{letter-spacing:0.120000px;}
.ls6c{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.240000px;}
.ls67{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls53{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.360000px;}
.ls51{letter-spacing:0.384000px;}
.ls2a{letter-spacing:0.420000px;}
.ls4d{letter-spacing:0.432000px;}
.lse{letter-spacing:0.480000px;}
.ls66{letter-spacing:0.528000px;}
.ls37{letter-spacing:0.540000px;}
.ls57{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.600000px;}
.ls4a{letter-spacing:0.624000px;}
.ls9{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.720000px;}
.ls69{letter-spacing:0.768000px;}
.ls5{letter-spacing:0.780000px;}
.ls55{letter-spacing:0.816000px;}
.ls1f{letter-spacing:0.840000px;}
.ls65{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.900000px;}
.ls61{letter-spacing:0.912000px;}
.ls16{letter-spacing:0.960000px;}
.ls1a{letter-spacing:1.020000px;}
.ls50{letter-spacing:1.056000px;}
.ls2d{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.140000px;}
.ls5c{letter-spacing:1.152000px;}
.ls1d{letter-spacing:1.200000px;}
.ls6a{letter-spacing:1.248000px;}
.ls14{letter-spacing:1.260000px;}
.ls18{letter-spacing:1.320000px;}
.ls21{letter-spacing:1.380000px;}
.ls25{letter-spacing:1.440000px;}
.ls64{letter-spacing:1.488000px;}
.ls4b{letter-spacing:1.500000px;}
.ls58{letter-spacing:1.536000px;}
.ls4{letter-spacing:1.560000px;}
.ls63{letter-spacing:1.584000px;}
.ls8{letter-spacing:1.620000px;}
.ls11{letter-spacing:1.680000px;}
.ls1c{letter-spacing:1.740000px;}
.ls5a{letter-spacing:1.776000px;}
.ls4c{letter-spacing:1.800000px;}
.ls5d{letter-spacing:1.824000px;}
.ls38{letter-spacing:1.860000px;}
.ls17{letter-spacing:1.920000px;}
.ls1b{letter-spacing:1.980000px;}
.ls5e{letter-spacing:2.016000px;}
.ls22{letter-spacing:2.040000px;}
.ls59{letter-spacing:2.064000px;}
.ls1e{letter-spacing:2.100000px;}
.ls34{letter-spacing:2.160000px;}
.ls56{letter-spacing:2.208000px;}
.ls36{letter-spacing:2.220000px;}
.ls7{letter-spacing:2.280000px;}
.ls5b{letter-spacing:2.304000px;}
.ls20{letter-spacing:2.340000px;}
.ls49{letter-spacing:2.400000px;}
.ls26{letter-spacing:2.460000px;}
.ls2b{letter-spacing:2.520000px;}
.ls15{letter-spacing:2.580000px;}
.ls35{letter-spacing:2.700000px;}
.ls60{letter-spacing:2.736000px;}
.ls6{letter-spacing:2.760000px;}
.ls27{letter-spacing:2.820000px;}
.ls3f{letter-spacing:2.880000px;}
.ls3{letter-spacing:2.940000px;}
.ls44{letter-spacing:3.060000px;}
.ls54{letter-spacing:3.072000px;}
.ls31{letter-spacing:3.120000px;}
.ls48{letter-spacing:3.300000px;}
.lsa{letter-spacing:3.360000px;}
.ls41{letter-spacing:3.420000px;}
.ls52{letter-spacing:3.552000px;}
.ls32{letter-spacing:3.600000px;}
.ls40{letter-spacing:3.720000px;}
.ls28{letter-spacing:4.020000px;}
.ls33{letter-spacing:4.080000px;}
.ls19{letter-spacing:4.200000px;}
.ls29{letter-spacing:4.440000px;}
.ls13{letter-spacing:4.740000px;}
.ls5f{letter-spacing:5.040000px;}
.ls4e{letter-spacing:5.160000px;}
.ls46{letter-spacing:5.220000px;}
.ls45{letter-spacing:5.340000px;}
.ls47{letter-spacing:6.240000px;}
.ls43{letter-spacing:6.420000px;}
.ls4f{letter-spacing:7.620000px;}
.ls0{letter-spacing:59.533476px;}
.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;}
}
.ws42{word-spacing:-18.120000px;}
.ws70{word-spacing:-17.880000px;}
.ws14{word-spacing:-17.760000px;}
.ws43{word-spacing:-17.580000px;}
.ws6e{word-spacing:-17.520000px;}
.ws15{word-spacing:-17.460000px;}
.ws74{word-spacing:-17.280000px;}
.ws60{word-spacing:-17.160000px;}
.ws62{word-spacing:-17.040000px;}
.ws6f{word-spacing:-16.980000px;}
.ws6c{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws5c{word-spacing:-16.440000px;}
.ws73{word-spacing:-16.200000px;}
.ws72{word-spacing:-16.080000px;}
.ws17{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.720000px;}
.ws71{word-spacing:-15.540000px;}
.ws18{word-spacing:-15.420000px;}
.ws68{word-spacing:-15.360000px;}
.ws6d{word-spacing:-15.240000px;}
.ws61{word-spacing:-15.180000px;}
.ws1a{word-spacing:-15.060000px;}
.ws19{word-spacing:-15.000000px;}
.ws16{word-spacing:-14.940000px;}
.ws41{word-spacing:-14.880000px;}
.ws63{word-spacing:-14.640000px;}
.ws13{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.344000px;}
.ws79{word-spacing:-13.056000px;}
.ws7d{word-spacing:-12.864000px;}
.ws7e{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.ws7a{word-spacing:-12.432000px;}
.ws7f{word-spacing:-12.288000px;}
.ws77{word-spacing:-12.240000px;}
.ws7b{word-spacing:-12.096000px;}
.ws7c{word-spacing:-12.048000px;}
.ws78{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.210662px;}
.ws66{word-spacing:-6.240000px;}
.ws65{word-spacing:-5.220000px;}
.ws21{word-spacing:-4.800000px;}
.ws3c{word-spacing:-4.440000px;}
.ws28{word-spacing:-4.200000px;}
.ws4c{word-spacing:-4.080000px;}
.ws38{word-spacing:-4.020000px;}
.ws58{word-spacing:-3.720000px;}
.ws4b{word-spacing:-3.600000px;}
.ws85{word-spacing:-3.552000px;}
.ws11{word-spacing:-3.360000px;}
.ws67{word-spacing:-3.300000px;}
.ws4a{word-spacing:-3.120000px;}
.ws87{word-spacing:-3.072000px;}
.ws64{word-spacing:-3.060000px;}
.ws9{word-spacing:-2.940000px;}
.ws6{word-spacing:-2.886000px;}
.ws57{word-spacing:-2.880000px;}
.ws37{word-spacing:-2.820000px;}
.wsd{word-spacing:-2.760000px;}
.ws97{word-spacing:-2.736000px;}
.ws51{word-spacing:-2.700000px;}
.ws25{word-spacing:-2.580000px;}
.ws3e{word-spacing:-2.520000px;}
.ws36{word-spacing:-2.460000px;}
.ws69{word-spacing:-2.400000px;}
.ws2e{word-spacing:-2.340000px;}
.ws90{word-spacing:-2.304000px;}
.wse{word-spacing:-2.280000px;}
.ws20{word-spacing:-2.220000px;}
.ws8a{word-spacing:-2.208000px;}
.ws4e{word-spacing:-2.160000px;}
.ws2d{word-spacing:-2.100000px;}
.ws8d{word-spacing:-2.064000px;}
.ws30{word-spacing:-2.040000px;}
.ws96{word-spacing:-2.016000px;}
.ws2b{word-spacing:-1.980000px;}
.ws27{word-spacing:-1.920000px;}
.ws94{word-spacing:-1.872000px;}
.ws50{word-spacing:-1.860000px;}
.ws8e{word-spacing:-1.824000px;}
.ws75{word-spacing:-1.800000px;}
.ws92{word-spacing:-1.776000px;}
.ws2c{word-spacing:-1.740000px;}
.wsf{word-spacing:-1.680000px;}
.ws45{word-spacing:-1.620000px;}
.ws9a{word-spacing:-1.584000px;}
.wsb{word-spacing:-1.560000px;}
.ws8b{word-spacing:-1.536000px;}
.ws5d{word-spacing:-1.500000px;}
.ws9b{word-spacing:-1.488000px;}
.ws34{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.380000px;}
.ws32{word-spacing:-1.320000px;}
.ws24{word-spacing:-1.260000px;}
.ws93{word-spacing:-1.248000px;}
.ws1c{word-spacing:-1.200000px;}
.ws91{word-spacing:-1.152000px;}
.ws2f{word-spacing:-1.140000px;}
.ws22{word-spacing:-1.080000px;}
.ws83{word-spacing:-1.056000px;}
.ws53{word-spacing:-1.020000px;}
.ws23{word-spacing:-0.960000px;}
.ws98{word-spacing:-0.912000px;}
.ws4f{word-spacing:-0.900000px;}
.ws3a{word-spacing:-0.840000px;}
.ws88{word-spacing:-0.816000px;}
.wsc{word-spacing:-0.780000px;}
.ws8f{word-spacing:-0.768000px;}
.ws29{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.660000px;}
.ws6b{word-spacing:-0.624000px;}
.ws31{word-spacing:-0.600000px;}
.ws89{word-spacing:-0.576000px;}
.ws55{word-spacing:-0.540000px;}
.ws9c{word-spacing:-0.528000px;}
.ws1b{word-spacing:-0.480000px;}
.ws76{word-spacing:-0.432000px;}
.ws3d{word-spacing:-0.420000px;}
.ws84{word-spacing:-0.384000px;}
.ws1d{word-spacing:-0.360000px;}
.ws86{word-spacing:-0.336000px;}
.ws8{word-spacing:-0.300000px;}
.ws9d{word-spacing:-0.288000px;}
.ws33{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.180000px;}
.ws99{word-spacing:-0.144000px;}
.ws44{word-spacing:-0.120000px;}
.ws40{word-spacing:-0.060000px;}
.ws5b{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws95{word-spacing:0.048000px;}
.ws39{word-spacing:0.060000px;}
.ws8c{word-spacing:0.096000px;}
.ws46{word-spacing:0.120000px;}
.ws49{word-spacing:0.180000px;}
.ws52{word-spacing:0.240000px;}
.ws54{word-spacing:0.300000px;}
.ws35{word-spacing:0.360000px;}
.ws4d{word-spacing:0.420000px;}
.ws47{word-spacing:0.780000px;}
.ws56{word-spacing:1.824000px;}
.ws5f{word-spacing:2.016000px;}
.ws1f{word-spacing:2.040000px;}
.ws5e{word-spacing:2.640000px;}
.ws7{word-spacing:2.940000px;}
.ws3b{word-spacing:3.300000px;}
.ws80{word-spacing:3.420000px;}
.ws59{word-spacing:3.936000px;}
.ws5a{word-spacing:3.984000px;}
.ws48{word-spacing:4.380000px;}
.ws6a{word-spacing:4.608000px;}
.ws3f{word-spacing:4.680000px;}
.ws1e{word-spacing:4.920000px;}
.ws2a{word-spacing:4.980000px;}
.ws81{word-spacing:5.460000px;}
.ws82{word-spacing:5.520000px;}
.ws0{word-spacing:49.322028px;}
._e{margin-left:-2898.096000px;}
._f{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._5{margin-left:-6.531600px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.050000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._6{width:1.063200px;}
._a{width:2.370000px;}
._7{width:3.480000px;}
._8{width:5.220000px;}
._b{width:6.480000px;}
._9{width:7.920000px;}
._c{width:9.216000px;}
._d{width:10.524000px;}
._10{width:11.796000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.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;}
.fsa{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;}
.yca{bottom:83.129700px;}
.ye9{bottom:83.661150px;}
.y91{bottom:83.770350px;}
.yc1{bottom:83.777100px;}
.yc2{bottom:83.790900px;}
.yc6{bottom:83.991750px;}
.ydb{bottom:84.109800px;}
.ye6{bottom:84.322500px;}
.yde{bottom:84.724200px;}
.ycc{bottom:84.842250px;}
.y2b{bottom:88.026750px;}
.y5b{bottom:88.712100px;}
.ybe{bottom:91.112100px;}
.yc9{bottom:98.873700px;}
.ye8{bottom:99.405150px;}
.yc5{bottom:99.735750px;}
.ydd{bottom:100.468200px;}
.ycb{bottom:100.586250px;}
.y90{bottom:101.770350px;}
.yc0{bottom:101.777100px;}
.y2a{bottom:103.023000px;}
.y11a{bottom:104.121900px;}
.y5a{bottom:106.712100px;}
.ybd{bottom:109.112100px;}
.yc8{bottom:114.617700px;}
.ye7{bottom:115.149150px;}
.ydc{bottom:116.212200px;}
.y119{bottom:119.121900px;}
.y8f{bottom:119.770350px;}
.ybf{bottom:119.777100px;}
.y59{bottom:124.712100px;}
.y158{bottom:125.263500px;}
.ybc{bottom:127.112100px;}
.y118{bottom:134.121900px;}
.y8e{bottom:137.777100px;}
.y157{bottom:140.263500px;}
.y58{bottom:142.712100px;}
.ybb{bottom:145.112100px;}
.y117{bottom:149.121900px;}
.y156{bottom:155.263500px;}
.y8d{bottom:155.777100px;}
.y57{bottom:160.712100px;}
.y27{bottom:160.908300px;}
.yba{bottom:163.112100px;}
.y116{bottom:164.121900px;}
.y155{bottom:170.263500px;}
.y8c{bottom:173.777100px;}
.y56{bottom:178.712100px;}
.y26{bottom:178.908300px;}
.y115{bottom:179.121900px;}
.yb9{bottom:181.112100px;}
.y154{bottom:185.263500px;}
.y8b{bottom:191.777100px;}
.y114{bottom:194.121900px;}
.y55{bottom:196.712100px;}
.y25{bottom:196.908300px;}
.yb8{bottom:199.112100px;}
.y153{bottom:200.263500px;}
.y113{bottom:209.121900px;}
.y8a{bottom:209.777100px;}
.y54{bottom:214.712100px;}
.y24{bottom:214.908300px;}
.y152{bottom:215.263500px;}
.yb7{bottom:217.112100px;}
.y112{bottom:224.121900px;}
.y89{bottom:227.777100px;}
.y151{bottom:230.263500px;}
.y53{bottom:232.712100px;}
.y23{bottom:232.908300px;}
.yb6{bottom:235.112100px;}
.y111{bottom:239.121900px;}
.y150{bottom:245.263500px;}
.y88{bottom:245.777100px;}
.y52{bottom:250.712100px;}
.y22{bottom:250.908300px;}
.yb5{bottom:253.112100px;}
.y110{bottom:254.121900px;}
.y14f{bottom:260.263500px;}
.y87{bottom:263.777100px;}
.y51{bottom:268.712100px;}
.y21{bottom:268.908300px;}
.y10f{bottom:269.121900px;}
.yb4{bottom:271.112100px;}
.y14e{bottom:275.263500px;}
.y86{bottom:281.777100px;}
.y10e{bottom:284.121900px;}
.y50{bottom:286.712100px;}
.y20{bottom:286.908300px;}
.yb3{bottom:289.112100px;}
.y14d{bottom:290.263500px;}
.y10d{bottom:299.121900px;}
.y85{bottom:299.777100px;}
.y4f{bottom:304.712100px;}
.y1f{bottom:304.908300px;}
.y14c{bottom:305.263500px;}
.yb2{bottom:307.112100px;}
.y10c{bottom:314.121900px;}
.y84{bottom:317.777100px;}
.y14b{bottom:320.263500px;}
.y4e{bottom:322.712100px;}
.y1e{bottom:322.908300px;}
.yb1{bottom:325.112100px;}
.y10b{bottom:329.121900px;}
.y14a{bottom:335.263500px;}
.y83{bottom:335.777100px;}
.y4d{bottom:340.712100px;}
.y1d{bottom:340.908300px;}
.yb0{bottom:343.112100px;}
.y10a{bottom:344.121900px;}
.y149{bottom:350.263500px;}
.y82{bottom:353.777100px;}
.y4c{bottom:358.712100px;}
.y29{bottom:358.908300px;}
.y109{bottom:359.121900px;}
.yaf{bottom:361.112100px;}
.y148{bottom:365.263500px;}
.y81{bottom:371.777100px;}
.y108{bottom:374.121900px;}
.y1c{bottom:376.505400px;}
.y4b{bottom:376.712100px;}
.y28{bottom:376.908300px;}
.yae{bottom:379.112100px;}
.y147{bottom:380.263500px;}
.y80{bottom:389.777100px;}
.y146{bottom:395.263500px;}
.yad{bottom:397.112100px;}
.y107{bottom:407.232600px;}
.y7f{bottom:407.777100px;}
.y145{bottom:410.263500px;}
.y4a{bottom:411.552750px;}
.yac{bottom:415.112100px;}
.y144{bottom:425.263500px;}
.y7e{bottom:425.777100px;}
.y49{bottom:427.158750px;}
.yab{bottom:433.112100px;}
.y143{bottom:440.263500px;}
.y48{bottom:443.515350px;}
.y7d{bottom:443.777100px;}
.yaa{bottom:451.112100px;}
.y1b{bottom:453.058500px;}
.y142{bottom:455.265900px;}
.y106{bottom:461.772600px;}
.y7c{bottom:461.777100px;}
.ya9{bottom:469.112100px;}
.y141{bottom:470.265900px;}
.y1a{bottom:471.064200px;}
.y47{bottom:479.365350px;}
.y105{bottom:479.367600px;}
.y7b{bottom:479.777100px;}
.y140{bottom:485.265900px;}
.ya8{bottom:487.112100px;}
.y46{bottom:497.365350px;}
.y7a{bottom:497.777100px;}
.y19{bottom:498.409200px;}
.y13f{bottom:500.265900px;}
.ya7{bottom:505.112100px;}
.y13e{bottom:515.265900px;}
.y104{bottom:515.367600px;}
.y79{bottom:515.777100px;}
.y18{bottom:516.409200px;}
.ya6{bottom:523.112100px;}
.y13d{bottom:530.265900px;}
.y45{bottom:533.230350px;}
.ye4{bottom:533.635350px;}
.y78{bottom:533.777100px;}
.y17{bottom:534.409200px;}
.ya5{bottom:541.112100px;}
.y13c{bottom:545.265900px;}
.y103{bottom:551.367600px;}
.ye3{bottom:551.635350px;}
.y77{bottom:551.777100px;}
.y16{bottom:552.409200px;}
.y13b{bottom:560.265900px;}
.y44{bottom:569.095350px;}
.ye2{bottom:569.635350px;}
.y76{bottom:569.777100px;}
.y15{bottom:570.409200px;}
.y13a{bottom:575.265900px;}
.ya4{bottom:575.952750px;}
.ye1{bottom:587.635350px;}
.y102{bottom:587.772600px;}
.y75{bottom:587.777100px;}
.y14{bottom:588.409200px;}
.y139{bottom:590.265900px;}
.ya3{bottom:591.558750px;}
.y138{bottom:605.265900px;}
.y101{bottom:605.367600px;}
.ye0{bottom:605.635350px;}
.y74{bottom:605.777100px;}
.ya2{bottom:605.920350px;}
.y13{bottom:606.409200px;}
.y137{bottom:620.265900px;}
.ya1{bottom:623.515350px;}
.y43{bottom:623.635350px;}
.y73{bottom:623.777100px;}
.y12{bottom:624.409200px;}
.y136{bottom:635.265900px;}
.y42{bottom:641.635350px;}
.ycd{bottom:641.770350px;}
.y100{bottom:641.772600px;}
.y72{bottom:641.777100px;}
.y11{bottom:642.409200px;}
.yda{bottom:649.112100px;}
.y135{bottom:650.265900px;}
.y41{bottom:659.635350px;}
.ya0{bottom:659.770350px;}
.yff{bottom:659.772600px;}
.y71{bottom:659.777100px;}
.y10{bottom:660.409200px;}
.y134{bottom:665.265900px;}
.yd9{bottom:667.112100px;}
.y40{bottom:677.635350px;}
.y9f{bottom:677.770350px;}
.yfe{bottom:677.772600px;}
.y70{bottom:677.777100px;}
.y133{bottom:680.265900px;}
.yd8{bottom:685.112100px;}
.ye5{bottom:695.230350px;}
.y132{bottom:695.265900px;}
.y3f{bottom:695.635350px;}
.y9e{bottom:695.770350px;}
.yfd{bottom:695.772600px;}
.y6f{bottom:695.777100px;}
.yd7{bottom:703.112100px;}
.yf{bottom:705.567300px;}
.y131{bottom:710.265900px;}
.y3e{bottom:713.635350px;}
.y9d{bottom:713.770350px;}
.yfc{bottom:713.772600px;}
.y6e{bottom:713.777100px;}
.ye{bottom:718.018050px;}
.yd6{bottom:721.112100px;}
.y130{bottom:725.265900px;}
.ydf{bottom:731.230350px;}
.y3d{bottom:731.635350px;}
.y9c{bottom:731.770350px;}
.yfb{bottom:731.772600px;}
.y6d{bottom:731.777100px;}
.yd5{bottom:739.112100px;}
.y12f{bottom:740.265900px;}
.yfa{bottom:749.367600px;}
.y3c{bottom:749.635350px;}
.yd{bottom:749.733600px;}
.y9b{bottom:749.770350px;}
.y6c{bottom:749.777100px;}
.y12e{bottom:755.265900px;}
.yd4{bottom:757.112100px;}
.y3b{bottom:767.635350px;}
.y9a{bottom:767.770350px;}
.y6b{bottom:767.777100px;}
.yc{bottom:768.658950px;}
.y12d{bottom:770.265900px;}
.yd3{bottom:775.112100px;}
.yb{bottom:776.733600px;}
.y12c{bottom:785.265900px;}
.y3a{bottom:785.635350px;}
.y99{bottom:785.770350px;}
.yf9{bottom:785.772600px;}
.y6a{bottom:785.777100px;}
.yd2{bottom:793.112100px;}
.ya{bottom:795.658950px;}
.y12b{bottom:800.265900px;}
.y39{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y98{bottom:803.770350px;}
.yf8{bottom:803.772600px;}
.y69{bottom:803.777100px;}
.y12a{bottom:815.265900px;}
.y38{bottom:821.635350px;}
.y97{bottom:821.770350px;}
.yf7{bottom:821.772600px;}
.y68{bottom:821.777100px;}
.y8{bottom:822.658950px;}
.yd1{bottom:827.952600px;}
.y129{bottom:830.265900px;}
.y96{bottom:839.770350px;}
.yf6{bottom:839.772600px;}
.y67{bottom:839.777100px;}
.yd0{bottom:843.558600px;}
.y128{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.y37{bottom:857.230350px;}
.y95{bottom:857.770350px;}
.yf5{bottom:857.772600px;}
.y66{bottom:857.777100px;}
.ycf{bottom:857.920350px;}
.y127{bottom:860.265900px;}
.y126{bottom:875.265900px;}
.yce{bottom:875.515350px;}
.y94{bottom:875.770350px;}
.yf4{bottom:875.772600px;}
.y65{bottom:875.777100px;}
.y125{bottom:890.265900px;}
.y93{bottom:893.770350px;}
.yf3{bottom:893.772600px;}
.y64{bottom:893.777100px;}
.y6{bottom:897.543600px;}
.y124{bottom:905.265900px;}
.y36{bottom:911.770350px;}
.yf2{bottom:911.772600px;}
.y63{bottom:911.777100px;}
.y123{bottom:920.265900px;}
.y35{bottom:929.770350px;}
.yf1{bottom:929.772600px;}
.y62{bottom:929.777100px;}
.y5{bottom:934.004400px;}
.y122{bottom:935.265900px;}
.y34{bottom:947.770350px;}
.yf0{bottom:947.772600px;}
.y61{bottom:947.777100px;}
.y121{bottom:950.265900px;}
.y120{bottom:965.265900px;}
.y33{bottom:965.770350px;}
.yef{bottom:965.772600px;}
.y60{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.y11f{bottom:980.265900px;}
.y32{bottom:983.770350px;}
.yee{bottom:983.772600px;}
.y5f{bottom:983.777100px;}
.y11e{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.yed{bottom:1001.772600px;}
.y5e{bottom:1001.777100px;}
.y3{bottom:1006.926000px;}
.y11d{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.yec{bottom:1019.772600px;}
.y5d{bottom:1019.777100px;}
.y11c{bottom:1025.265900px;}
.yc3{bottom:1030.909200px;}
.yeb{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y5c{bottom:1037.777100px;}
.y11b{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.yea{bottom:1132.413150px;}
.yc4{bottom:1132.417200px;}
.y92{bottom:1132.418700px;}
.yc7{bottom:1132.421700px;}
.y159{bottom:1132.423500px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hf{height:32.783203px;}
.h7{height:32.805176px;}
.h14{height:33.328125px;}
.h13{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h12{height:37.520508px;}
.hd{height:41.660156px;}
.he{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.717434px;}
.h9{height:43.740234px;}
.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;}
.x1f{left:70.582650px;}
.xc{left:76.535400px;}
.x11{left:84.646200px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x4{left:106.299150px;}
.xd{left:110.551200px;}
.x19{left:117.506850px;}
.x29{left:123.307350px;}
.x3{left:125.439150px;}
.x1e{left:129.482550px;}
.x7{left:131.811000px;}
.xe{left:144.706200px;}
.x12{left:159.826200px;}
.x18{left:173.185350px;}
.x5{left:191.338050px;}
.x13{left:197.290050px;}
.x10{left:202.891200px;}
.xf{left:211.081200px;}
.x6{left:212.876400px;}
.x28{left:215.530350px;}
.x25{left:220.150350px;}
.x1a{left:222.928350px;}
.xb{left:455.041500px;}
.x14{left:457.096200px;}
.x1b{left:478.356000px;}
.x8{left:480.471000px;}
.x22{left:488.687700px;}
.x15{left:491.116200px;}
.x2a{left:503.875350px;}
.x1c{left:512.376000px;}
.x9{left:514.491000px;}
.x20{left:546.265350px;}
.x26{left:591.985350px;}
.x21{left:593.620350px;}
.x23{left:603.869700px;}
.x17{left:663.492300px;}
.x2{left:693.365400px;}
.x24{left:721.717650px;}
.x16{left:728.391600px;}
.x27{left:743.868150px;}
.x1d{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls3b{letter-spacing:-0.373333pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.266667pt;}
.ls3c{letter-spacing:-0.213333pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls68{letter-spacing:-0.085333pt;}
.ls2f{letter-spacing:-0.053333pt;}
.ls6b{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls42{letter-spacing:0.042667pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls62{letter-spacing:0.085333pt;}
.ls30{letter-spacing:0.106667pt;}
.ls6c{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.213333pt;}
.ls67{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls53{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.320000pt;}
.ls51{letter-spacing:0.341333pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls4d{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.426667pt;}
.ls66{letter-spacing:0.469333pt;}
.ls37{letter-spacing:0.480000pt;}
.ls57{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.533333pt;}
.ls4a{letter-spacing:0.554667pt;}
.ls9{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.640000pt;}
.ls69{letter-spacing:0.682667pt;}
.ls5{letter-spacing:0.693333pt;}
.ls55{letter-spacing:0.725333pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls65{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.800000pt;}
.ls61{letter-spacing:0.810667pt;}
.ls16{letter-spacing:0.853333pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls50{letter-spacing:0.938667pt;}
.ls2d{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.013333pt;}
.ls5c{letter-spacing:1.024000pt;}
.ls1d{letter-spacing:1.066667pt;}
.ls6a{letter-spacing:1.109333pt;}
.ls14{letter-spacing:1.120000pt;}
.ls18{letter-spacing:1.173333pt;}
.ls21{letter-spacing:1.226667pt;}
.ls25{letter-spacing:1.280000pt;}
.ls64{letter-spacing:1.322667pt;}
.ls4b{letter-spacing:1.333333pt;}
.ls58{letter-spacing:1.365333pt;}
.ls4{letter-spacing:1.386667pt;}
.ls63{letter-spacing:1.408000pt;}
.ls8{letter-spacing:1.440000pt;}
.ls11{letter-spacing:1.493333pt;}
.ls1c{letter-spacing:1.546667pt;}
.ls5a{letter-spacing:1.578667pt;}
.ls4c{letter-spacing:1.600000pt;}
.ls5d{letter-spacing:1.621333pt;}
.ls38{letter-spacing:1.653333pt;}
.ls17{letter-spacing:1.706667pt;}
.ls1b{letter-spacing:1.760000pt;}
.ls5e{letter-spacing:1.792000pt;}
.ls22{letter-spacing:1.813333pt;}
.ls59{letter-spacing:1.834667pt;}
.ls1e{letter-spacing:1.866667pt;}
.ls34{letter-spacing:1.920000pt;}
.ls56{letter-spacing:1.962667pt;}
.ls36{letter-spacing:1.973333pt;}
.ls7{letter-spacing:2.026667pt;}
.ls5b{letter-spacing:2.048000pt;}
.ls20{letter-spacing:2.080000pt;}
.ls49{letter-spacing:2.133333pt;}
.ls26{letter-spacing:2.186667pt;}
.ls2b{letter-spacing:2.240000pt;}
.ls15{letter-spacing:2.293333pt;}
.ls35{letter-spacing:2.400000pt;}
.ls60{letter-spacing:2.432000pt;}
.ls6{letter-spacing:2.453333pt;}
.ls27{letter-spacing:2.506667pt;}
.ls3f{letter-spacing:2.560000pt;}
.ls3{letter-spacing:2.613333pt;}
.ls44{letter-spacing:2.720000pt;}
.ls54{letter-spacing:2.730667pt;}
.ls31{letter-spacing:2.773333pt;}
.ls48{letter-spacing:2.933333pt;}
.lsa{letter-spacing:2.986667pt;}
.ls41{letter-spacing:3.040000pt;}
.ls52{letter-spacing:3.157333pt;}
.ls32{letter-spacing:3.200000pt;}
.ls40{letter-spacing:3.306667pt;}
.ls28{letter-spacing:3.573333pt;}
.ls33{letter-spacing:3.626667pt;}
.ls19{letter-spacing:3.733333pt;}
.ls29{letter-spacing:3.946667pt;}
.ls13{letter-spacing:4.213333pt;}
.ls5f{letter-spacing:4.480000pt;}
.ls4e{letter-spacing:4.586667pt;}
.ls46{letter-spacing:4.640000pt;}
.ls45{letter-spacing:4.746667pt;}
.ls47{letter-spacing:5.546667pt;}
.ls43{letter-spacing:5.706667pt;}
.ls4f{letter-spacing:6.773333pt;}
.ls0{letter-spacing:52.918645pt;}
.ws42{word-spacing:-16.106667pt;}
.ws70{word-spacing:-15.893333pt;}
.ws14{word-spacing:-15.786667pt;}
.ws43{word-spacing:-15.626667pt;}
.ws6e{word-spacing:-15.573333pt;}
.ws15{word-spacing:-15.520000pt;}
.ws74{word-spacing:-15.360000pt;}
.ws60{word-spacing:-15.253333pt;}
.ws62{word-spacing:-15.146667pt;}
.ws6f{word-spacing:-15.093333pt;}
.ws6c{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws5c{word-spacing:-14.613333pt;}
.ws73{word-spacing:-14.400000pt;}
.ws72{word-spacing:-14.293333pt;}
.ws17{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.973333pt;}
.ws71{word-spacing:-13.813333pt;}
.ws18{word-spacing:-13.706667pt;}
.ws68{word-spacing:-13.653333pt;}
.ws6d{word-spacing:-13.546667pt;}
.ws61{word-spacing:-13.493333pt;}
.ws1a{word-spacing:-13.386667pt;}
.ws19{word-spacing:-13.333333pt;}
.ws16{word-spacing:-13.280000pt;}
.ws41{word-spacing:-13.226667pt;}
.ws63{word-spacing:-13.013333pt;}
.ws13{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.861333pt;}
.ws79{word-spacing:-11.605333pt;}
.ws7d{word-spacing:-11.434667pt;}
.ws7e{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws7a{word-spacing:-11.050667pt;}
.ws7f{word-spacing:-10.922667pt;}
.ws77{word-spacing:-10.880000pt;}
.ws7b{word-spacing:-10.752000pt;}
.ws7c{word-spacing:-10.709333pt;}
.ws78{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.076144pt;}
.ws66{word-spacing:-5.546667pt;}
.ws65{word-spacing:-4.640000pt;}
.ws21{word-spacing:-4.266667pt;}
.ws3c{word-spacing:-3.946667pt;}
.ws28{word-spacing:-3.733333pt;}
.ws4c{word-spacing:-3.626667pt;}
.ws38{word-spacing:-3.573333pt;}
.ws58{word-spacing:-3.306667pt;}
.ws4b{word-spacing:-3.200000pt;}
.ws85{word-spacing:-3.157333pt;}
.ws11{word-spacing:-2.986667pt;}
.ws67{word-spacing:-2.933333pt;}
.ws4a{word-spacing:-2.773333pt;}
.ws87{word-spacing:-2.730667pt;}
.ws64{word-spacing:-2.720000pt;}
.ws9{word-spacing:-2.613333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws57{word-spacing:-2.560000pt;}
.ws37{word-spacing:-2.506667pt;}
.wsd{word-spacing:-2.453333pt;}
.ws97{word-spacing:-2.432000pt;}
.ws51{word-spacing:-2.400000pt;}
.ws25{word-spacing:-2.293333pt;}
.ws3e{word-spacing:-2.240000pt;}
.ws36{word-spacing:-2.186667pt;}
.ws69{word-spacing:-2.133333pt;}
.ws2e{word-spacing:-2.080000pt;}
.ws90{word-spacing:-2.048000pt;}
.wse{word-spacing:-2.026667pt;}
.ws20{word-spacing:-1.973333pt;}
.ws8a{word-spacing:-1.962667pt;}
.ws4e{word-spacing:-1.920000pt;}
.ws2d{word-spacing:-1.866667pt;}
.ws8d{word-spacing:-1.834667pt;}
.ws30{word-spacing:-1.813333pt;}
.ws96{word-spacing:-1.792000pt;}
.ws2b{word-spacing:-1.760000pt;}
.ws27{word-spacing:-1.706667pt;}
.ws94{word-spacing:-1.664000pt;}
.ws50{word-spacing:-1.653333pt;}
.ws8e{word-spacing:-1.621333pt;}
.ws75{word-spacing:-1.600000pt;}
.ws92{word-spacing:-1.578667pt;}
.ws2c{word-spacing:-1.546667pt;}
.wsf{word-spacing:-1.493333pt;}
.ws45{word-spacing:-1.440000pt;}
.ws9a{word-spacing:-1.408000pt;}
.wsb{word-spacing:-1.386667pt;}
.ws8b{word-spacing:-1.365333pt;}
.ws5d{word-spacing:-1.333333pt;}
.ws9b{word-spacing:-1.322667pt;}
.ws34{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.226667pt;}
.ws32{word-spacing:-1.173333pt;}
.ws24{word-spacing:-1.120000pt;}
.ws93{word-spacing:-1.109333pt;}
.ws1c{word-spacing:-1.066667pt;}
.ws91{word-spacing:-1.024000pt;}
.ws2f{word-spacing:-1.013333pt;}
.ws22{word-spacing:-0.960000pt;}
.ws83{word-spacing:-0.938667pt;}
.ws53{word-spacing:-0.906667pt;}
.ws23{word-spacing:-0.853333pt;}
.ws98{word-spacing:-0.810667pt;}
.ws4f{word-spacing:-0.800000pt;}
.ws3a{word-spacing:-0.746667pt;}
.ws88{word-spacing:-0.725333pt;}
.wsc{word-spacing:-0.693333pt;}
.ws8f{word-spacing:-0.682667pt;}
.ws29{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.586667pt;}
.ws6b{word-spacing:-0.554667pt;}
.ws31{word-spacing:-0.533333pt;}
.ws89{word-spacing:-0.512000pt;}
.ws55{word-spacing:-0.480000pt;}
.ws9c{word-spacing:-0.469333pt;}
.ws1b{word-spacing:-0.426667pt;}
.ws76{word-spacing:-0.384000pt;}
.ws3d{word-spacing:-0.373333pt;}
.ws84{word-spacing:-0.341333pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws86{word-spacing:-0.298667pt;}
.ws8{word-spacing:-0.266667pt;}
.ws9d{word-spacing:-0.256000pt;}
.ws33{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.160000pt;}
.ws99{word-spacing:-0.128000pt;}
.ws44{word-spacing:-0.106667pt;}
.ws40{word-spacing:-0.053333pt;}
.ws5b{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws95{word-spacing:0.042667pt;}
.ws39{word-spacing:0.053333pt;}
.ws8c{word-spacing:0.085333pt;}
.ws46{word-spacing:0.106667pt;}
.ws49{word-spacing:0.160000pt;}
.ws52{word-spacing:0.213333pt;}
.ws54{word-spacing:0.266667pt;}
.ws35{word-spacing:0.320000pt;}
.ws4d{word-spacing:0.373333pt;}
.ws47{word-spacing:0.693333pt;}
.ws56{word-spacing:1.621333pt;}
.ws5f{word-spacing:1.792000pt;}
.ws1f{word-spacing:1.813333pt;}
.ws5e{word-spacing:2.346667pt;}
.ws7{word-spacing:2.613333pt;}
.ws3b{word-spacing:2.933333pt;}
.ws80{word-spacing:3.040000pt;}
.ws59{word-spacing:3.498667pt;}
.ws5a{word-spacing:3.541333pt;}
.ws48{word-spacing:3.893333pt;}
.ws6a{word-spacing:4.096000pt;}
.ws3f{word-spacing:4.160000pt;}
.ws1e{word-spacing:4.373333pt;}
.ws2a{word-spacing:4.426667pt;}
.ws81{word-spacing:4.853333pt;}
.ws82{word-spacing:4.906667pt;}
.ws0{word-spacing:43.841803pt;}
._e{margin-left:-2576.085333pt;}
._f{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._5{margin-left:-5.805867pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.600000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._6{width:0.945067pt;}
._a{width:2.106667pt;}
._7{width:3.093333pt;}
._8{width:4.640000pt;}
._b{width:5.760000pt;}
._9{width:7.040000pt;}
._c{width:8.192000pt;}
._d{width:9.354667pt;}
._10{width:10.485333pt;}
.fs5{font-size:23.320000pt;}
.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;}
.fsa{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;}
.yca{bottom:73.893067pt;}
.ye9{bottom:74.365467pt;}
.y91{bottom:74.462533pt;}
.yc1{bottom:74.468533pt;}
.yc2{bottom:74.480800pt;}
.yc6{bottom:74.659333pt;}
.ydb{bottom:74.764267pt;}
.ye6{bottom:74.953333pt;}
.yde{bottom:75.310400pt;}
.ycc{bottom:75.415333pt;}
.y2b{bottom:78.246000pt;}
.y5b{bottom:78.855200pt;}
.ybe{bottom:80.988533pt;}
.yc9{bottom:87.887733pt;}
.ye8{bottom:88.360133pt;}
.yc5{bottom:88.654000pt;}
.ydd{bottom:89.305067pt;}
.ycb{bottom:89.410000pt;}
.y90{bottom:90.462533pt;}
.yc0{bottom:90.468533pt;}
.y2a{bottom:91.576000pt;}
.y11a{bottom:92.552800pt;}
.y5a{bottom:94.855200pt;}
.ybd{bottom:96.988533pt;}
.yc8{bottom:101.882400pt;}
.ye7{bottom:102.354800pt;}
.ydc{bottom:103.299733pt;}
.y119{bottom:105.886133pt;}
.y8f{bottom:106.462533pt;}
.ybf{bottom:106.468533pt;}
.y59{bottom:110.855200pt;}
.y158{bottom:111.345333pt;}
.ybc{bottom:112.988533pt;}
.y118{bottom:119.219467pt;}
.y8e{bottom:122.468533pt;}
.y157{bottom:124.678667pt;}
.y58{bottom:126.855200pt;}
.ybb{bottom:128.988533pt;}
.y117{bottom:132.552800pt;}
.y156{bottom:138.012000pt;}
.y8d{bottom:138.468533pt;}
.y57{bottom:142.855200pt;}
.y27{bottom:143.029600pt;}
.yba{bottom:144.988533pt;}
.y116{bottom:145.886133pt;}
.y155{bottom:151.345333pt;}
.y8c{bottom:154.468533pt;}
.y56{bottom:158.855200pt;}
.y26{bottom:159.029600pt;}
.y115{bottom:159.219467pt;}
.yb9{bottom:160.988533pt;}
.y154{bottom:164.678667pt;}
.y8b{bottom:170.468533pt;}
.y114{bottom:172.552800pt;}
.y55{bottom:174.855200pt;}
.y25{bottom:175.029600pt;}
.yb8{bottom:176.988533pt;}
.y153{bottom:178.012000pt;}
.y113{bottom:185.886133pt;}
.y8a{bottom:186.468533pt;}
.y54{bottom:190.855200pt;}
.y24{bottom:191.029600pt;}
.y152{bottom:191.345333pt;}
.yb7{bottom:192.988533pt;}
.y112{bottom:199.219467pt;}
.y89{bottom:202.468533pt;}
.y151{bottom:204.678667pt;}
.y53{bottom:206.855200pt;}
.y23{bottom:207.029600pt;}
.yb6{bottom:208.988533pt;}
.y111{bottom:212.552800pt;}
.y150{bottom:218.012000pt;}
.y88{bottom:218.468533pt;}
.y52{bottom:222.855200pt;}
.y22{bottom:223.029600pt;}
.yb5{bottom:224.988533pt;}
.y110{bottom:225.886133pt;}
.y14f{bottom:231.345333pt;}
.y87{bottom:234.468533pt;}
.y51{bottom:238.855200pt;}
.y21{bottom:239.029600pt;}
.y10f{bottom:239.219467pt;}
.yb4{bottom:240.988533pt;}
.y14e{bottom:244.678667pt;}
.y86{bottom:250.468533pt;}
.y10e{bottom:252.552800pt;}
.y50{bottom:254.855200pt;}
.y20{bottom:255.029600pt;}
.yb3{bottom:256.988533pt;}
.y14d{bottom:258.012000pt;}
.y10d{bottom:265.886133pt;}
.y85{bottom:266.468533pt;}
.y4f{bottom:270.855200pt;}
.y1f{bottom:271.029600pt;}
.y14c{bottom:271.345333pt;}
.yb2{bottom:272.988533pt;}
.y10c{bottom:279.219467pt;}
.y84{bottom:282.468533pt;}
.y14b{bottom:284.678667pt;}
.y4e{bottom:286.855200pt;}
.y1e{bottom:287.029600pt;}
.yb1{bottom:288.988533pt;}
.y10b{bottom:292.552800pt;}
.y14a{bottom:298.012000pt;}
.y83{bottom:298.468533pt;}
.y4d{bottom:302.855200pt;}
.y1d{bottom:303.029600pt;}
.yb0{bottom:304.988533pt;}
.y10a{bottom:305.886133pt;}
.y149{bottom:311.345333pt;}
.y82{bottom:314.468533pt;}
.y4c{bottom:318.855200pt;}
.y29{bottom:319.029600pt;}
.y109{bottom:319.219467pt;}
.yaf{bottom:320.988533pt;}
.y148{bottom:324.678667pt;}
.y81{bottom:330.468533pt;}
.y108{bottom:332.552800pt;}
.y1c{bottom:334.671467pt;}
.y4b{bottom:334.855200pt;}
.y28{bottom:335.029600pt;}
.yae{bottom:336.988533pt;}
.y147{bottom:338.012000pt;}
.y80{bottom:346.468533pt;}
.y146{bottom:351.345333pt;}
.yad{bottom:352.988533pt;}
.y107{bottom:361.984533pt;}
.y7f{bottom:362.468533pt;}
.y145{bottom:364.678667pt;}
.y4a{bottom:365.824667pt;}
.yac{bottom:368.988533pt;}
.y144{bottom:378.012000pt;}
.y7e{bottom:378.468533pt;}
.y49{bottom:379.696667pt;}
.yab{bottom:384.988533pt;}
.y143{bottom:391.345333pt;}
.y48{bottom:394.235867pt;}
.y7d{bottom:394.468533pt;}
.yaa{bottom:400.988533pt;}
.y1b{bottom:402.718667pt;}
.y142{bottom:404.680800pt;}
.y106{bottom:410.464533pt;}
.y7c{bottom:410.468533pt;}
.ya9{bottom:416.988533pt;}
.y141{bottom:418.014133pt;}
.y1a{bottom:418.723733pt;}
.y47{bottom:426.102533pt;}
.y105{bottom:426.104533pt;}
.y7b{bottom:426.468533pt;}
.y140{bottom:431.347467pt;}
.ya8{bottom:432.988533pt;}
.y46{bottom:442.102533pt;}
.y7a{bottom:442.468533pt;}
.y19{bottom:443.030400pt;}
.y13f{bottom:444.680800pt;}
.ya7{bottom:448.988533pt;}
.y13e{bottom:458.014133pt;}
.y104{bottom:458.104533pt;}
.y79{bottom:458.468533pt;}
.y18{bottom:459.030400pt;}
.ya6{bottom:464.988533pt;}
.y13d{bottom:471.347467pt;}
.y45{bottom:473.982533pt;}
.ye4{bottom:474.342533pt;}
.y78{bottom:474.468533pt;}
.y17{bottom:475.030400pt;}
.ya5{bottom:480.988533pt;}
.y13c{bottom:484.680800pt;}
.y103{bottom:490.104533pt;}
.ye3{bottom:490.342533pt;}
.y77{bottom:490.468533pt;}
.y16{bottom:491.030400pt;}
.y13b{bottom:498.014133pt;}
.y44{bottom:505.862533pt;}
.ye2{bottom:506.342533pt;}
.y76{bottom:506.468533pt;}
.y15{bottom:507.030400pt;}
.y13a{bottom:511.347467pt;}
.ya4{bottom:511.958000pt;}
.ye1{bottom:522.342533pt;}
.y102{bottom:522.464533pt;}
.y75{bottom:522.468533pt;}
.y14{bottom:523.030400pt;}
.y139{bottom:524.680800pt;}
.ya3{bottom:525.830000pt;}
.y138{bottom:538.014133pt;}
.y101{bottom:538.104533pt;}
.ye0{bottom:538.342533pt;}
.y74{bottom:538.468533pt;}
.ya2{bottom:538.595867pt;}
.y13{bottom:539.030400pt;}
.y137{bottom:551.347467pt;}
.ya1{bottom:554.235867pt;}
.y43{bottom:554.342533pt;}
.y73{bottom:554.468533pt;}
.y12{bottom:555.030400pt;}
.y136{bottom:564.680800pt;}
.y42{bottom:570.342533pt;}
.ycd{bottom:570.462533pt;}
.y100{bottom:570.464533pt;}
.y72{bottom:570.468533pt;}
.y11{bottom:571.030400pt;}
.yda{bottom:576.988533pt;}
.y135{bottom:578.014133pt;}
.y41{bottom:586.342533pt;}
.ya0{bottom:586.462533pt;}
.yff{bottom:586.464533pt;}
.y71{bottom:586.468533pt;}
.y10{bottom:587.030400pt;}
.y134{bottom:591.347467pt;}
.yd9{bottom:592.988533pt;}
.y40{bottom:602.342533pt;}
.y9f{bottom:602.462533pt;}
.yfe{bottom:602.464533pt;}
.y70{bottom:602.468533pt;}
.y133{bottom:604.680800pt;}
.yd8{bottom:608.988533pt;}
.ye5{bottom:617.982533pt;}
.y132{bottom:618.014133pt;}
.y3f{bottom:618.342533pt;}
.y9e{bottom:618.462533pt;}
.yfd{bottom:618.464533pt;}
.y6f{bottom:618.468533pt;}
.yd7{bottom:624.988533pt;}
.yf{bottom:627.170933pt;}
.y131{bottom:631.347467pt;}
.y3e{bottom:634.342533pt;}
.y9d{bottom:634.462533pt;}
.yfc{bottom:634.464533pt;}
.y6e{bottom:634.468533pt;}
.ye{bottom:638.238267pt;}
.yd6{bottom:640.988533pt;}
.y130{bottom:644.680800pt;}
.ydf{bottom:649.982533pt;}
.y3d{bottom:650.342533pt;}
.y9c{bottom:650.462533pt;}
.yfb{bottom:650.464533pt;}
.y6d{bottom:650.468533pt;}
.yd5{bottom:656.988533pt;}
.y12f{bottom:658.014133pt;}
.yfa{bottom:666.104533pt;}
.y3c{bottom:666.342533pt;}
.yd{bottom:666.429867pt;}
.y9b{bottom:666.462533pt;}
.y6c{bottom:666.468533pt;}
.y12e{bottom:671.347467pt;}
.yd4{bottom:672.988533pt;}
.y3b{bottom:682.342533pt;}
.y9a{bottom:682.462533pt;}
.y6b{bottom:682.468533pt;}
.yc{bottom:683.252400pt;}
.y12d{bottom:684.680800pt;}
.yd3{bottom:688.988533pt;}
.yb{bottom:690.429867pt;}
.y12c{bottom:698.014133pt;}
.y3a{bottom:698.342533pt;}
.y99{bottom:698.462533pt;}
.yf9{bottom:698.464533pt;}
.y6a{bottom:698.468533pt;}
.yd2{bottom:704.988533pt;}
.ya{bottom:707.252400pt;}
.y12b{bottom:711.347467pt;}
.y39{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y98{bottom:714.462533pt;}
.yf8{bottom:714.464533pt;}
.y69{bottom:714.468533pt;}
.y12a{bottom:724.680800pt;}
.y38{bottom:730.342533pt;}
.y97{bottom:730.462533pt;}
.yf7{bottom:730.464533pt;}
.y68{bottom:730.468533pt;}
.y8{bottom:731.252400pt;}
.yd1{bottom:735.957867pt;}
.y129{bottom:738.014133pt;}
.y96{bottom:746.462533pt;}
.yf6{bottom:746.464533pt;}
.y67{bottom:746.468533pt;}
.yd0{bottom:749.829867pt;}
.y128{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.y37{bottom:761.982533pt;}
.y95{bottom:762.462533pt;}
.yf5{bottom:762.464533pt;}
.y66{bottom:762.468533pt;}
.ycf{bottom:762.595867pt;}
.y127{bottom:764.680800pt;}
.y126{bottom:778.014133pt;}
.yce{bottom:778.235867pt;}
.y94{bottom:778.462533pt;}
.yf4{bottom:778.464533pt;}
.y65{bottom:778.468533pt;}
.y125{bottom:791.347467pt;}
.y93{bottom:794.462533pt;}
.yf3{bottom:794.464533pt;}
.y64{bottom:794.468533pt;}
.y6{bottom:797.816533pt;}
.y124{bottom:804.680800pt;}
.y36{bottom:810.462533pt;}
.yf2{bottom:810.464533pt;}
.y63{bottom:810.468533pt;}
.y123{bottom:818.014133pt;}
.y35{bottom:826.462533pt;}
.yf1{bottom:826.464533pt;}
.y62{bottom:826.468533pt;}
.y5{bottom:830.226133pt;}
.y122{bottom:831.347467pt;}
.y34{bottom:842.462533pt;}
.yf0{bottom:842.464533pt;}
.y61{bottom:842.468533pt;}
.y121{bottom:844.680800pt;}
.y120{bottom:858.014133pt;}
.y33{bottom:858.462533pt;}
.yef{bottom:858.464533pt;}
.y60{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.y11f{bottom:871.347467pt;}
.y32{bottom:874.462533pt;}
.yee{bottom:874.464533pt;}
.y5f{bottom:874.468533pt;}
.y11e{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.yed{bottom:890.464533pt;}
.y5e{bottom:890.468533pt;}
.y3{bottom:895.045333pt;}
.y11d{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.yec{bottom:906.464533pt;}
.y5d{bottom:906.468533pt;}
.y11c{bottom:911.347467pt;}
.yc3{bottom:916.363733pt;}
.yeb{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y5c{bottom:922.468533pt;}
.y11b{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.yea{bottom:1006.589467pt;}
.yc4{bottom:1006.593067pt;}
.y92{bottom:1006.594400pt;}
.yc7{bottom:1006.597067pt;}
.y159{bottom:1006.598667pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hf{height:29.140625pt;}
.h7{height:29.160156pt;}
.h14{height:29.625000pt;}
.h13{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h12{height:33.351562pt;}
.hd{height:37.031250pt;}
.he{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.859942pt;}
.h9{height:38.880208pt;}
.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;}
.x1f{left:62.740133pt;}
.xc{left:68.031467pt;}
.x11{left:75.241067pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x4{left:94.488133pt;}
.xd{left:98.267733pt;}
.x19{left:104.450533pt;}
.x29{left:109.606533pt;}
.x3{left:111.501467pt;}
.x1e{left:115.095600pt;}
.x7{left:117.165333pt;}
.xe{left:128.627733pt;}
.x12{left:142.067733pt;}
.x18{left:153.942533pt;}
.x5{left:170.078267pt;}
.x13{left:175.368933pt;}
.x10{left:180.347733pt;}
.xf{left:187.627733pt;}
.x6{left:189.223467pt;}
.x28{left:191.582533pt;}
.x25{left:195.689200pt;}
.x1a{left:198.158533pt;}
.xb{left:404.481333pt;}
.x14{left:406.307733pt;}
.x1b{left:425.205333pt;}
.x8{left:427.085333pt;}
.x22{left:434.389067pt;}
.x15{left:436.547733pt;}
.x2a{left:447.889200pt;}
.x1c{left:455.445333pt;}
.x9{left:457.325333pt;}
.x20{left:485.569200pt;}
.x26{left:526.209200pt;}
.x21{left:527.662533pt;}
.x23{left:536.773067pt;}
.x17{left:589.770933pt;}
.x2{left:616.324800pt;}
.x24{left:641.526800pt;}
.x16{left:647.459200pt;}
.x27{left:661.216133pt;}
.x1d{left:666.356800pt;}
}




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