
    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_9b1c3642e50f40d536200cb2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_d3e622fc0ec17b6b73132dee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_8293c8e39ca7ea8569365f41.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_3d8e1afc2dff9f1e164f293c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_ae4d1ce514bf9b300ef8f297.woff')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_8133e374ad17f29edda77880.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_0697c628b77b32bc973dab6e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_d1838af9735e0e9cfe646a0d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_125633e1dd7466e3e8de0cec.woff')format("woff");}.ff9{font-family:ff9;line-height:1.068848;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_efc1a3f3984cf548c619f55e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.820000;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_592e9c4b71dd99b6481cbc34.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_d1b7b18bbafe7d46fc8d5809.woff')format("woff");}.ffc{font-family:ffc;line-height:0.944336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e44dcbc9e26101240607244f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899902;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:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls1a{letter-spacing:-6.552000px;}
.ls23{letter-spacing:-5.760000px;}
.ls31{letter-spacing:-4.902000px;}
.ls41{letter-spacing:-4.680000px;}
.ls43{letter-spacing:-4.464000px;}
.ls4c{letter-spacing:-4.176000px;}
.ls37{letter-spacing:-4.020000px;}
.ls2a{letter-spacing:-3.672000px;}
.ls49{letter-spacing:-3.528000px;}
.ls3e{letter-spacing:-3.240000px;}
.ls12{letter-spacing:-2.736000px;}
.ls46{letter-spacing:-2.592000px;}
.ls1d{letter-spacing:-2.376000px;}
.ls20{letter-spacing:-2.304000px;}
.ls5e{letter-spacing:-2.208000px;}
.ls3{letter-spacing:-2.040000px;}
.ls5{letter-spacing:-1.920000px;}
.ls13{letter-spacing:-1.800000px;}
.ls42{letter-spacing:-1.680000px;}
.ls14{letter-spacing:-1.584000px;}
.ls1c{letter-spacing:-1.512000px;}
.ls32{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-1.368000px;}
.ls7{letter-spacing:-1.296000px;}
.ls17{letter-spacing:-1.248000px;}
.ls9{letter-spacing:-1.200000px;}
.ls44{letter-spacing:-1.152000px;}
.ls26{letter-spacing:-1.080000px;}
.ls3c{letter-spacing:-1.056000px;}
.ls21{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.969000px;}
.ls5c{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls5b{letter-spacing:-0.912000px;}
.ls25{letter-spacing:-0.864000px;}
.ls33{letter-spacing:-0.840000px;}
.ls30{letter-spacing:-0.798000px;}
.ls22{letter-spacing:-0.792000px;}
.ls2d{letter-spacing:-0.741000px;}
.ls24{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.648000px;}
.ls3f{letter-spacing:-0.576000px;}
.ls2c{letter-spacing:-0.570000px;}
.ls5a{letter-spacing:-0.528000px;}
.ls2e{letter-spacing:-0.513000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls58{letter-spacing:-0.480000px;}
.ls3a{letter-spacing:-0.420000px;}
.ls5f{letter-spacing:-0.384000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.288000px;}
.ls48{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.210000px;}
.ls4d{letter-spacing:-0.144000px;}
.ls38{letter-spacing:-0.120000px;}
.ls40{letter-spacing:-0.072000px;}
.ls35{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.015000px;}
.ls28{letter-spacing:0.038400px;}
.ls2{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.075000px;}
.ls4b{letter-spacing:0.075600px;}
.ls16{letter-spacing:0.096000px;}
.ls63{letter-spacing:0.144000px;}
.ls57{letter-spacing:0.192000px;}
.ls27{letter-spacing:0.198000px;}
.ls55{letter-spacing:0.216000px;}
.ls60{letter-spacing:0.288000px;}
.ls51{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.435000px;}
.ls59{letter-spacing:0.576000px;}
.ls5d{letter-spacing:0.624000px;}
.ls62{letter-spacing:0.768000px;}
.lse{letter-spacing:0.840000px;}
.ls4a{letter-spacing:0.864000px;}
.ls39{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.008000px;}
.lsb{letter-spacing:1.260000px;}
.ls4{letter-spacing:1.320000px;}
.ls61{letter-spacing:1.392000px;}
.ls52{letter-spacing:1.440000px;}
.ls19{letter-spacing:1.512000px;}
.ls45{letter-spacing:1.728000px;}
.ls36{letter-spacing:1.740000px;}
.ls50{letter-spacing:1.867200px;}
.ls64{letter-spacing:4.704000px;}
.ls56{letter-spacing:4.752000px;}
.ls65{letter-spacing:4.980000px;}
.ls53{letter-spacing:5.328000px;}
.ls4f{letter-spacing:5.364600px;}
.lsd{letter-spacing:5.568000px;}
.lsa{letter-spacing:5.664000px;}
.ls3b{letter-spacing:5.880000px;}
.lsf{letter-spacing:6.000000px;}
.ls18{letter-spacing:8.352000px;}
.ls4e{letter-spacing:9.746400px;}
.ls6{letter-spacing:10.560000px;}
.ls8{letter-spacing:10.962000px;}
.lsc{letter-spacing:12.474000px;}
.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;}
}
.wsb{word-spacing:-27.648000px;}
.ws2{word-spacing:-26.136000px;}
.ws9e{word-spacing:-21.840000px;}
.ws21{word-spacing:-20.232000px;}
.ws36{word-spacing:-19.152000px;}
.ws0{word-spacing:-18.546000px;}
.wsc{word-spacing:-18.120000px;}
.ws39{word-spacing:-18.018000px;}
.ws45{word-spacing:-17.760000px;}
.ws58{word-spacing:-16.992000px;}
.ws2f{word-spacing:-16.860000px;}
.ws41{word-spacing:-16.800000px;}
.ws44{word-spacing:-16.740000px;}
.ws42{word-spacing:-16.500000px;}
.ws46{word-spacing:-16.440000px;}
.ws35{word-spacing:-16.416000px;}
.ws40{word-spacing:-15.360000px;}
.ws1{word-spacing:-15.228000px;}
.ws66{word-spacing:-15.192000px;}
.ws13{word-spacing:-15.048000px;}
.ws96{word-spacing:-14.880000px;}
.ws3f{word-spacing:-14.760000px;}
.ws97{word-spacing:-14.256000px;}
.ws47{word-spacing:-14.162400px;}
.ws93{word-spacing:-14.112000px;}
.ws8f{word-spacing:-14.064000px;}
.ws95{word-spacing:-13.776000px;}
.ws8e{word-spacing:-13.680000px;}
.ws9d{word-spacing:-13.632000px;}
.ws14{word-spacing:-13.584000px;}
.ws92{word-spacing:-12.912000px;}
.ws91{word-spacing:-12.576000px;}
.ws8d{word-spacing:-12.432000px;}
.ws8a{word-spacing:-12.336000px;}
.ws15{word-spacing:-12.240000px;}
.ws43{word-spacing:-12.180000px;}
.ws8b{word-spacing:-12.048000px;}
.ws3{word-spacing:-11.802000px;}
.ws12{word-spacing:-11.795256px;}
.ws8c{word-spacing:-11.568000px;}
.ws90{word-spacing:-11.328000px;}
.ws94{word-spacing:-11.280000px;}
.ws56{word-spacing:-6.552000px;}
.ws16{word-spacing:-6.000000px;}
.ws87{word-spacing:-5.880000px;}
.wse{word-spacing:-5.664000px;}
.ws84{word-spacing:-5.328000px;}
.ws63{word-spacing:-4.032000px;}
.ws2e{word-spacing:-3.888000px;}
.ws69{word-spacing:-3.456000px;}
.ws5f{word-spacing:-3.240000px;}
.ws89{word-spacing:-3.096000px;}
.ws68{word-spacing:-3.024000px;}
.ws3c{word-spacing:-2.592000px;}
.ws79{word-spacing:-2.448000px;}
.ws3b{word-spacing:-2.160000px;}
.ws60{word-spacing:-2.088000px;}
.ws6c{word-spacing:-2.016000px;}
.ws2d{word-spacing:-1.872000px;}
.ws52{word-spacing:-1.740000px;}
.ws67{word-spacing:-1.728000px;}
.ws83{word-spacing:-1.440000px;}
.ws6{word-spacing:-1.320000px;}
.wsf{word-spacing:-1.260000px;}
.ws70{word-spacing:-1.080000px;}
.ws1f{word-spacing:-1.008000px;}
.ws73{word-spacing:-0.864000px;}
.ws11{word-spacing:-0.840000px;}
.ws10{word-spacing:-0.768000px;}
.ws31{word-spacing:-0.720000px;}
.wsa0{word-spacing:-0.672000px;}
.ws2b{word-spacing:-0.648000px;}
.ws9f{word-spacing:-0.624000px;}
.ws5b{word-spacing:-0.576000px;}
.ws74{word-spacing:-0.432000px;}
.ws7f{word-spacing:-0.360000px;}
.ws7d{word-spacing:-0.216000px;}
.ws99{word-spacing:-0.192000px;}
.ws33{word-spacing:-0.144000px;}
.ws5c{word-spacing:-0.072000px;}
.ws9{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws53{word-spacing:0.060000px;}
.ws5d{word-spacing:0.072000px;}
.ws54{word-spacing:0.120000px;}
.ws78{word-spacing:0.144000px;}
.ws6e{word-spacing:0.210000px;}
.ws1d{word-spacing:0.216000px;}
.ws4f{word-spacing:0.228000px;}
.ws6f{word-spacing:0.240000px;}
.ws19{word-spacing:0.288000px;}
.ws51{word-spacing:0.300000px;}
.ws4a{word-spacing:0.360000px;}
.ws9c{word-spacing:0.384000px;}
.ws9a{word-spacing:0.480000px;}
.ws29{word-spacing:0.504000px;}
.ws4e{word-spacing:0.513000px;}
.ws4c{word-spacing:0.570000px;}
.ws5a{word-spacing:0.576000px;}
.ws85{word-spacing:0.648000px;}
.ws1e{word-spacing:0.720000px;}
.ws4d{word-spacing:0.741000px;}
.ws32{word-spacing:0.792000px;}
.ws37{word-spacing:0.864000px;}
.ws25{word-spacing:0.936000px;}
.ws9b{word-spacing:0.960000px;}
.ws30{word-spacing:1.008000px;}
.ws55{word-spacing:1.056000px;}
.ws61{word-spacing:1.080000px;}
.ws65{word-spacing:1.152000px;}
.wsd{word-spacing:1.200000px;}
.ws8{word-spacing:1.296000px;}
.ws28{word-spacing:1.368000px;}
.ws22{word-spacing:1.440000px;}
.ws6a{word-spacing:1.512000px;}
.ws1c{word-spacing:1.584000px;}
.ws88{word-spacing:1.656000px;}
.ws62{word-spacing:1.680000px;}
.ws1b{word-spacing:1.800000px;}
.ws7{word-spacing:1.920000px;}
.ws5{word-spacing:2.040000px;}
.ws82{word-spacing:2.088000px;}
.ws2c{word-spacing:2.304000px;}
.ws27{word-spacing:2.376000px;}
.ws7e{word-spacing:2.448000px;}
.ws6d{word-spacing:2.952000px;}
.ws7c{word-spacing:3.024000px;}
.ws80{word-spacing:3.096000px;}
.ws7b{word-spacing:3.240000px;}
.ws72{word-spacing:3.528000px;}
.ws49{word-spacing:3.672000px;}
.ws3e{word-spacing:3.744000px;}
.ws77{word-spacing:4.176000px;}
.ws64{word-spacing:4.464000px;}
.ws75{word-spacing:4.536000px;}
.ws98{word-spacing:4.608000px;}
.ws26{word-spacing:4.680000px;}
.ws50{word-spacing:4.902000px;}
.ws7a{word-spacing:4.968000px;}
.ws76{word-spacing:5.400000px;}
.ws34{word-spacing:5.760000px;}
.ws3a{word-spacing:5.832000px;}
.ws23{word-spacing:6.552000px;}
.ws5e{word-spacing:6.624000px;}
.ws2a{word-spacing:7.056000px;}
.ws3d{word-spacing:7.272000px;}
.ws81{word-spacing:7.344000px;}
.ws86{word-spacing:7.920000px;}
.ws57{word-spacing:8.352000px;}
.ws4b{word-spacing:8.424000px;}
.ws38{word-spacing:9.144000px;}
.ws71{word-spacing:9.216000px;}
.ws17{word-spacing:10.224000px;}
.ws24{word-spacing:10.512000px;}
.ws48{word-spacing:10.584000px;}
.ws59{word-spacing:10.872000px;}
.ws18{word-spacing:10.944000px;}
.ws1a{word-spacing:11.448000px;}
.ws6b{word-spacing:11.520000px;}
.ws20{word-spacing:674.346000px;}
.wsa{word-spacing:699.624000px;}
._13{margin-left:-867.331800px;}
._0{margin-left:-865.107600px;}
._1d{margin-left:-862.784400px;}
._16{margin-left:-861.583200px;}
._b{margin-left:-860.401800px;}
._12{margin-left:-714.532200px;}
._9{margin-left:-706.810200px;}
._7{margin-left:-12.739200px;}
._1c{margin-left:-7.499400px;}
._d{margin-left:-6.489000px;}
._1{margin-left:-5.367600px;}
._a{margin-left:-4.259400px;}
._6{margin-left:-3.242400px;}
._3{margin-left:-1.857600px;}
._2{width:1.188000px;}
._4{width:2.921400px;}
._5{width:4.332000px;}
._11{width:5.793600px;}
._c{width:6.813600px;}
._f{width:8.231400px;}
._10{width:9.905400px;}
._e{width:11.332800px;}
._17{width:12.445800px;}
._18{width:13.742400px;}
._1e{width:15.746400px;}
._1a{width:16.921800px;}
._19{width:17.997600px;}
._1b{width:19.186200px;}
._8{width:27.198000px;}
._15{width:31.791600px;}
._14{width:37.118400px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:41.976000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsa{font-size:50.400000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:55.524900px;}
.y1{bottom:72.000000px;}
.y7f{bottom:117.000000px;}
.y23{bottom:117.000150px;}
.ybe{bottom:117.150000px;}
.yed{bottom:117.750000px;}
.ye5{bottom:120.000000px;}
.y128{bottom:121.500000px;}
.y9a{bottom:124.500000px;}
.yda{bottom:131.221950px;}
.y100{bottom:132.000000px;}
.y22{bottom:132.000150px;}
.yfe{bottom:136.500000px;}
.y7e{bottom:139.500000px;}
.ybd{bottom:139.650000px;}
.y99{bottom:142.500000px;}
.yff{bottom:147.000000px;}
.y68{bottom:147.000150px;}
.y127{bottom:151.500000px;}
.yd9{bottom:153.721950px;}
.yfd{bottom:159.000000px;}
.y7d{bottom:162.000000px;}
.y10b{bottom:162.000150px;}
.ybc{bottom:162.060000px;}
.ye4{bottom:165.000000px;}
.y126{bottom:166.500000px;}
.y67{bottom:169.500300px;}
.y98{bottom:171.750000px;}
.yd8{bottom:176.221950px;}
.y21{bottom:177.750000px;}
.y147{bottom:180.000000px;}
.yfc{bottom:181.500000px;}
.ybb{bottom:184.470000px;}
.y7c{bottom:184.500000px;}
.y66{bottom:184.500300px;}
.ye3{bottom:187.500000px;}
.y97{bottom:189.750000px;}
.y20{bottom:196.500000px;}
.yd7{bottom:198.722100px;}
.y146{bottom:198.750000px;}
.y65{bottom:199.500300px;}
.yfb{bottom:204.000000px;}
.yba{bottom:206.880000px;}
.y7b{bottom:207.000000px;}
.y96{bottom:207.750000px;}
.ye2{bottom:210.000000px;}
.y125{bottom:211.500000px;}
.y1f{bottom:215.250000px;}
.y145{bottom:217.500000px;}
.yd6{bottom:221.222100px;}
.y95{bottom:225.750000px;}
.yfa{bottom:226.500000px;}
.yb9{bottom:229.290000px;}
.y7a{bottom:229.500000px;}
.ye1{bottom:232.500000px;}
.y1e{bottom:234.000000px;}
.y46{bottom:241.500000px;}
.y94{bottom:243.750000px;}
.y64{bottom:246.000000px;}
.yd5{bottom:246.722100px;}
.y144{bottom:247.500000px;}
.yf9{bottom:249.000000px;}
.yb8{bottom:251.700000px;}
.y79{bottom:252.000000px;}
.y1d{bottom:252.750000px;}
.ye0{bottom:255.000000px;}
.y124{bottom:256.500000px;}
.y45{bottom:260.250000px;}
.y93{bottom:261.750000px;}
.y63{bottom:268.500000px;}
.y1c{bottom:271.500000px;}
.yb7{bottom:274.110000px;}
.y78{bottom:274.500000px;}
.ydf{bottom:277.500000px;}
.y44{bottom:279.000000px;}
.y92{bottom:279.750000px;}
.yd4{bottom:285.722100px;}
.y123{bottom:286.500000px;}
.y143{bottom:288.750000px;}
.y1b{bottom:290.250000px;}
.y62{bottom:291.000000px;}
.yf8{bottom:294.000000px;}
.yb6{bottom:296.520000px;}
.y77{bottom:297.000000px;}
.y91{bottom:297.750000px;}
.yde{bottom:300.000000px;}
.y122{bottom:301.500000px;}
.y43{bottom:306.750000px;}
.y142{bottom:307.500000px;}
.yd3{bottom:308.222100px;}
.y1a{bottom:309.000000px;}
.y61{bottom:313.500000px;}
.y90{bottom:315.750000px;}
.yf7{bottom:316.500000px;}
.yb5{bottom:318.930000px;}
.y76{bottom:319.500000px;}
.ydd{bottom:322.500000px;}
.y42{bottom:325.500000px;}
.y141{bottom:326.250000px;}
.y19{bottom:327.750000px;}
.yd2{bottom:330.722100px;}
.y121{bottom:331.500000px;}
.y60{bottom:336.000000px;}
.yf6{bottom:339.000000px;}
.yb4{bottom:341.340000px;}
.y75{bottom:342.000000px;}
.y41{bottom:344.250000px;}
.y8f{bottom:345.000000px;}
.y18{bottom:346.500000px;}
.yd1{bottom:353.222100px;}
.y5f{bottom:358.500000px;}
.yf5{bottom:361.500000px;}
.y40{bottom:363.000000px;}
.yb3{bottom:363.750000px;}
.y74{bottom:364.500000px;}
.y17{bottom:365.250000px;}
.y8e{bottom:367.500000px;}
.yd0{bottom:375.722100px;}
.y120{bottom:376.500000px;}
.y3f{bottom:381.750000px;}
.y140{bottom:382.500000px;}
.y16{bottom:384.000000px;}
.yb2{bottom:386.160000px;}
.y5e{bottom:387.000000px;}
.y8d{bottom:390.000000px;}
.y11f{bottom:391.500000px;}
.ycf{bottom:398.222100px;}
.y3e{bottom:400.500000px;}
.y13f{bottom:401.250000px;}
.y15{bottom:402.750000px;}
.yf4{bottom:406.500000px;}
.yb1{bottom:408.570000px;}
.y73{bottom:409.500000px;}
.y8c{bottom:412.500000px;}
.y3d{bottom:419.250000px;}
.y13e{bottom:420.000000px;}
.yce{bottom:420.722100px;}
.y14{bottom:421.500000px;}
.y5d{bottom:426.000000px;}
.yf3{bottom:429.000000px;}
.yb0{bottom:430.980000px;}
.y72{bottom:432.000000px;}
.ydc{bottom:435.000000px;}
.y11e{bottom:436.500000px;}
.y3c{bottom:438.000000px;}
.y13d{bottom:438.750000px;}
.y13{bottom:440.250000px;}
.ycd{bottom:443.222100px;}
.y5c{bottom:448.500000px;}
.yf2{bottom:451.500000px;}
.yaf{bottom:453.390000px;}
.y71{bottom:454.500000px;}
.y3b{bottom:456.750000px;}
.y13c{bottom:457.500000px;}
.y12{bottom:459.000000px;}
.ydb{bottom:460.500000px;}
.y11d{bottom:466.500000px;}
.y5b{bottom:471.000000px;}
.ycc{bottom:471.722550px;}
.yf1{bottom:474.000000px;}
.y3a{bottom:475.500000px;}
.yae{bottom:475.800000px;}
.y13b{bottom:476.250000px;}
.y70{bottom:477.000000px;}
.y11{bottom:477.750000px;}
.y11c{bottom:481.500000px;}
.y5a{bottom:493.500000px;}
.y39{bottom:494.250000px;}
.y13a{bottom:495.000000px;}
.y10{bottom:496.500000px;}
.yad{bottom:498.210000px;}
.y6f{bottom:499.500000px;}
.ycb{bottom:511.022550px;}
.y11b{bottom:511.500000px;}
.y38{bottom:513.000000px;}
.y139{bottom:513.750000px;}
.yf{bottom:515.250000px;}
.y59{bottom:516.000000px;}
.yec{bottom:519.000000px;}
.yac{bottom:520.620000px;}
.y6e{bottom:522.000000px;}
.y11a{bottom:526.500000px;}
.yca{bottom:529.022550px;}
.y37{bottom:531.750000px;}
.y138{bottom:532.500000px;}
.ye{bottom:534.000000px;}
.y58{bottom:538.500000px;}
.yeb{bottom:541.500000px;}
.yab{bottom:543.030000px;}
.y6d{bottom:544.500000px;}
.yc9{bottom:547.022550px;}
.y36{bottom:550.500000px;}
.y137{bottom:551.250000px;}
.yd{bottom:552.750000px;}
.y119{bottom:556.500000px;}
.y57{bottom:561.000000px;}
.yea{bottom:564.000000px;}
.yc8{bottom:565.022550px;}
.yaa{bottom:565.440000px;}
.y6c{bottom:567.000000px;}
.y35{bottom:569.250000px;}
.y136{bottom:570.000000px;}
.yc{bottom:571.500000px;}
.yc7{bottom:583.022550px;}
.y56{bottom:583.500000px;}
.ye9{bottom:586.500000px;}
.ya9{bottom:587.850000px;}
.y34{bottom:588.000000px;}
.y135{bottom:588.750000px;}
.y6b{bottom:589.500000px;}
.yb{bottom:599.253000px;}
.y118{bottom:601.500000px;}
.yc6{bottom:604.997550px;}
.y55{bottom:606.000000px;}
.y33{bottom:606.750000px;}
.y134{bottom:607.500000px;}
.ye8{bottom:609.000000px;}
.ya8{bottom:610.260000px;}
.y6a{bottom:612.000000px;}
.y117{bottom:616.500000px;}
.yc5{bottom:622.997550px;}
.y32{bottom:625.500000px;}
.y133{bottom:626.250000px;}
.y54{bottom:628.500000px;}
.ye7{bottom:631.500000px;}
.ya7{bottom:632.670000px;}
.y69{bottom:634.500000px;}
.yc4{bottom:640.997550px;}
.ya{bottom:642.750000px;}
.y31{bottom:644.250000px;}
.y132{bottom:645.000000px;}
.y116{bottom:646.500000px;}
.y53{bottom:651.000000px;}
.ye6{bottom:654.000000px;}
.ya6{bottom:655.080000px;}
.y8b{bottom:657.000000px;}
.y115{bottom:661.500000px;}
.y9{bottom:662.250000px;}
.yc3{bottom:662.979900px;}
.y30{bottom:663.000000px;}
.y131{bottom:663.750000px;}
.y52{bottom:673.500000px;}
.yf0{bottom:676.500000px;}
.ya5{bottom:677.490000px;}
.y8a{bottom:679.500000px;}
.yc2{bottom:680.977650px;}
.y2f{bottom:681.750000px;}
.y130{bottom:682.500000px;}
.y80{bottom:685.997850px;}
.y114{bottom:691.500000px;}
.y8{bottom:692.250000px;}
.y51{bottom:696.000000px;}
.yc1{bottom:698.975400px;}
.y10a{bottom:699.000000px;}
.ya4{bottom:699.900000px;}
.y2e{bottom:700.500000px;}
.y12f{bottom:701.250000px;}
.y89{bottom:702.000000px;}
.y113{bottom:706.500000px;}
.yc0{bottom:716.973150px;}
.y50{bottom:718.500000px;}
.y2d{bottom:719.250000px;}
.y109{bottom:721.500000px;}
.ya3{bottom:722.310000px;}
.y88{bottom:724.500000px;}
.y10d{bottom:730.500000px;}
.yee{bottom:731.250000px;}
.y12e{bottom:733.500000px;}
.y112{bottom:736.500000px;}
.y2c{bottom:738.000000px;}
.y4f{bottom:741.000000px;}
.y108{bottom:744.000000px;}
.ya2{bottom:744.720000px;}
.y87{bottom:747.000000px;}
.ybf{bottom:750.000000px;}
.y111{bottom:751.500000px;}
.y10c{bottom:753.000000px;}
.y2b{bottom:756.750000px;}
.y7{bottom:759.750000px;}
.y4e{bottom:763.500000px;}
.y107{bottom:766.500000px;}
.ya1{bottom:767.130000px;}
.y86{bottom:769.500000px;}
.y2a{bottom:775.500000px;}
.y110{bottom:781.500000px;}
.y6{bottom:783.750000px;}
.y4d{bottom:786.000000px;}
.y106{bottom:789.000000px;}
.ya0{bottom:789.540000px;}
.y85{bottom:792.000000px;}
.y10f{bottom:796.500000px;}
.y29{bottom:803.250000px;}
.y4c{bottom:808.500000px;}
.y105{bottom:811.500000px;}
.y9f{bottom:811.950000px;}
.y84{bottom:814.500000px;}
.y5{bottom:816.750000px;}
.y10e{bottom:819.000000px;}
.y4b{bottom:831.000000px;}
.y104{bottom:834.000000px;}
.y9e{bottom:834.360000px;}
.y83{bottom:837.000000px;}
.y12d{bottom:844.500000px;}
.y4{bottom:846.750000px;}
.y4a{bottom:853.500000px;}
.y103{bottom:856.500000px;}
.y9d{bottom:856.770000px;}
.y82{bottom:859.500000px;}
.y28{bottom:865.500000px;}
.y12c{bottom:874.500000px;}
.y49{bottom:876.000000px;}
.y3{bottom:876.750000px;}
.y102{bottom:879.000000px;}
.y9c{bottom:879.180000px;}
.y81{bottom:882.000000px;}
.y12b{bottom:889.500000px;}
.y27{bottom:893.250000px;}
.yef{bottom:898.500000px;}
.y101{bottom:901.500000px;}
.y9b{bottom:901.590000px;}
.y48{bottom:904.500000px;}
.y26{bottom:912.000000px;}
.y12a{bottom:919.500000px;}
.y47{bottom:927.000000px;}
.y2{bottom:929.250000px;}
.y25{bottom:930.750000px;}
.y129{bottom:934.500000px;}
.hb{height:33.117188px;}
.hd{height:35.991211px;}
.h2{height:37.256836px;}
.h19{height:39.072000px;}
.h16{height:39.326660px;}
.h11{height:39.726562px;}
.h17{height:39.990234px;}
.h1a{height:40.464000px;}
.ha{height:40.757812px;}
.h8{height:41.396484px;}
.h18{height:42.685547px;}
.h1{height:45.536133px;}
.h7{height:45.852539px;}
.h13{height:46.954102px;}
.h15{height:48.399902px;}
.h12{height:48.840000px;}
.h14{height:49.658203px;}
.he{height:49.675781px;}
.h9{height:50.947266px;}
.h6{height:52.936980px;}
.h5{height:55.638000px;}
.hc{height:56.041992px;}
.h10{height:59.589844px;}
.hf{height:61.136719px;}
.h4{height:81.515625px;}
.h3{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x9{left:67.620000px;}
.x13{left:73.800000px;}
.x10{left:82.500000px;}
.xe{left:90.000000px;}
.x8{left:99.000000px;}
.x2{left:112.500000px;}
.x3{left:114.164850px;}
.x6{left:115.719450px;}
.xf{left:117.000000px;}
.x5{left:127.500000px;}
.xc{left:135.000000px;}
.x1b{left:136.500000px;}
.x4{left:144.000000px;}
.x14{left:159.300000px;}
.xd{left:160.500000px;}
.x12{left:162.000000px;}
.x17{left:231.300000px;}
.x7{left:263.250000px;}
.x18{left:303.300000px;}
.x15{left:375.301500px;}
.x19{left:435.300000px;}
.x16{left:495.300750px;}
.x1a{left:555.300000px;}
.x11{left:627.952950px;}
.xb{left:629.390100px;}
.xa{left:635.907600px;}
.x1{left:637.084050px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls1a{letter-spacing:-5.824000pt;}
.ls23{letter-spacing:-5.120000pt;}
.ls31{letter-spacing:-4.357333pt;}
.ls41{letter-spacing:-4.160000pt;}
.ls43{letter-spacing:-3.968000pt;}
.ls4c{letter-spacing:-3.712000pt;}
.ls37{letter-spacing:-3.573333pt;}
.ls2a{letter-spacing:-3.264000pt;}
.ls49{letter-spacing:-3.136000pt;}
.ls3e{letter-spacing:-2.880000pt;}
.ls12{letter-spacing:-2.432000pt;}
.ls46{letter-spacing:-2.304000pt;}
.ls1d{letter-spacing:-2.112000pt;}
.ls20{letter-spacing:-2.048000pt;}
.ls5e{letter-spacing:-1.962667pt;}
.ls3{letter-spacing:-1.813333pt;}
.ls5{letter-spacing:-1.706667pt;}
.ls13{letter-spacing:-1.600000pt;}
.ls42{letter-spacing:-1.493333pt;}
.ls14{letter-spacing:-1.408000pt;}
.ls1c{letter-spacing:-1.344000pt;}
.ls32{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-1.216000pt;}
.ls7{letter-spacing:-1.152000pt;}
.ls17{letter-spacing:-1.109333pt;}
.ls9{letter-spacing:-1.066667pt;}
.ls44{letter-spacing:-1.024000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls3c{letter-spacing:-0.938667pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.861333pt;}
.ls5c{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls5b{letter-spacing:-0.810667pt;}
.ls25{letter-spacing:-0.768000pt;}
.ls33{letter-spacing:-0.746667pt;}
.ls30{letter-spacing:-0.709333pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls2d{letter-spacing:-0.658667pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.576000pt;}
.ls3f{letter-spacing:-0.512000pt;}
.ls2c{letter-spacing:-0.506667pt;}
.ls5a{letter-spacing:-0.469333pt;}
.ls2e{letter-spacing:-0.456000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls58{letter-spacing:-0.426667pt;}
.ls3a{letter-spacing:-0.373333pt;}
.ls5f{letter-spacing:-0.341333pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls48{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.186667pt;}
.ls4d{letter-spacing:-0.128000pt;}
.ls38{letter-spacing:-0.106667pt;}
.ls40{letter-spacing:-0.064000pt;}
.ls35{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.013333pt;}
.ls28{letter-spacing:0.034133pt;}
.ls2{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.066667pt;}
.ls4b{letter-spacing:0.067200pt;}
.ls16{letter-spacing:0.085333pt;}
.ls63{letter-spacing:0.128000pt;}
.ls57{letter-spacing:0.170667pt;}
.ls27{letter-spacing:0.176000pt;}
.ls55{letter-spacing:0.192000pt;}
.ls60{letter-spacing:0.256000pt;}
.ls51{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.386667pt;}
.ls59{letter-spacing:0.512000pt;}
.ls5d{letter-spacing:0.554667pt;}
.ls62{letter-spacing:0.682667pt;}
.lse{letter-spacing:0.746667pt;}
.ls4a{letter-spacing:0.768000pt;}
.ls39{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.896000pt;}
.lsb{letter-spacing:1.120000pt;}
.ls4{letter-spacing:1.173333pt;}
.ls61{letter-spacing:1.237333pt;}
.ls52{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.344000pt;}
.ls45{letter-spacing:1.536000pt;}
.ls36{letter-spacing:1.546667pt;}
.ls50{letter-spacing:1.659733pt;}
.ls64{letter-spacing:4.181333pt;}
.ls56{letter-spacing:4.224000pt;}
.ls65{letter-spacing:4.426667pt;}
.ls53{letter-spacing:4.736000pt;}
.ls4f{letter-spacing:4.768533pt;}
.lsd{letter-spacing:4.949333pt;}
.lsa{letter-spacing:5.034667pt;}
.ls3b{letter-spacing:5.226667pt;}
.lsf{letter-spacing:5.333333pt;}
.ls18{letter-spacing:7.424000pt;}
.ls4e{letter-spacing:8.663467pt;}
.ls6{letter-spacing:9.386667pt;}
.ls8{letter-spacing:9.744000pt;}
.lsc{letter-spacing:11.088000pt;}
.wsb{word-spacing:-24.576000pt;}
.ws2{word-spacing:-23.232000pt;}
.ws9e{word-spacing:-19.413333pt;}
.ws21{word-spacing:-17.984000pt;}
.ws36{word-spacing:-17.024000pt;}
.ws0{word-spacing:-16.485333pt;}
.wsc{word-spacing:-16.106667pt;}
.ws39{word-spacing:-16.016000pt;}
.ws45{word-spacing:-15.786667pt;}
.ws58{word-spacing:-15.104000pt;}
.ws2f{word-spacing:-14.986667pt;}
.ws41{word-spacing:-14.933333pt;}
.ws44{word-spacing:-14.880000pt;}
.ws42{word-spacing:-14.666667pt;}
.ws46{word-spacing:-14.613333pt;}
.ws35{word-spacing:-14.592000pt;}
.ws40{word-spacing:-13.653333pt;}
.ws1{word-spacing:-13.536000pt;}
.ws66{word-spacing:-13.504000pt;}
.ws13{word-spacing:-13.376000pt;}
.ws96{word-spacing:-13.226667pt;}
.ws3f{word-spacing:-13.120000pt;}
.ws97{word-spacing:-12.672000pt;}
.ws47{word-spacing:-12.588800pt;}
.ws93{word-spacing:-12.544000pt;}
.ws8f{word-spacing:-12.501333pt;}
.ws95{word-spacing:-12.245333pt;}
.ws8e{word-spacing:-12.160000pt;}
.ws9d{word-spacing:-12.117333pt;}
.ws14{word-spacing:-12.074667pt;}
.ws92{word-spacing:-11.477333pt;}
.ws91{word-spacing:-11.178667pt;}
.ws8d{word-spacing:-11.050667pt;}
.ws8a{word-spacing:-10.965333pt;}
.ws15{word-spacing:-10.880000pt;}
.ws43{word-spacing:-10.826667pt;}
.ws8b{word-spacing:-10.709333pt;}
.ws3{word-spacing:-10.490667pt;}
.ws12{word-spacing:-10.484672pt;}
.ws8c{word-spacing:-10.282667pt;}
.ws90{word-spacing:-10.069333pt;}
.ws94{word-spacing:-10.026667pt;}
.ws56{word-spacing:-5.824000pt;}
.ws16{word-spacing:-5.333333pt;}
.ws87{word-spacing:-5.226667pt;}
.wse{word-spacing:-5.034667pt;}
.ws84{word-spacing:-4.736000pt;}
.ws63{word-spacing:-3.584000pt;}
.ws2e{word-spacing:-3.456000pt;}
.ws69{word-spacing:-3.072000pt;}
.ws5f{word-spacing:-2.880000pt;}
.ws89{word-spacing:-2.752000pt;}
.ws68{word-spacing:-2.688000pt;}
.ws3c{word-spacing:-2.304000pt;}
.ws79{word-spacing:-2.176000pt;}
.ws3b{word-spacing:-1.920000pt;}
.ws60{word-spacing:-1.856000pt;}
.ws6c{word-spacing:-1.792000pt;}
.ws2d{word-spacing:-1.664000pt;}
.ws52{word-spacing:-1.546667pt;}
.ws67{word-spacing:-1.536000pt;}
.ws83{word-spacing:-1.280000pt;}
.ws6{word-spacing:-1.173333pt;}
.wsf{word-spacing:-1.120000pt;}
.ws70{word-spacing:-0.960000pt;}
.ws1f{word-spacing:-0.896000pt;}
.ws73{word-spacing:-0.768000pt;}
.ws11{word-spacing:-0.746667pt;}
.ws10{word-spacing:-0.682667pt;}
.ws31{word-spacing:-0.640000pt;}
.wsa0{word-spacing:-0.597333pt;}
.ws2b{word-spacing:-0.576000pt;}
.ws9f{word-spacing:-0.554667pt;}
.ws5b{word-spacing:-0.512000pt;}
.ws74{word-spacing:-0.384000pt;}
.ws7f{word-spacing:-0.320000pt;}
.ws7d{word-spacing:-0.192000pt;}
.ws99{word-spacing:-0.170667pt;}
.ws33{word-spacing:-0.128000pt;}
.ws5c{word-spacing:-0.064000pt;}
.ws9{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws53{word-spacing:0.053333pt;}
.ws5d{word-spacing:0.064000pt;}
.ws54{word-spacing:0.106667pt;}
.ws78{word-spacing:0.128000pt;}
.ws6e{word-spacing:0.186667pt;}
.ws1d{word-spacing:0.192000pt;}
.ws4f{word-spacing:0.202667pt;}
.ws6f{word-spacing:0.213333pt;}
.ws19{word-spacing:0.256000pt;}
.ws51{word-spacing:0.266667pt;}
.ws4a{word-spacing:0.320000pt;}
.ws9c{word-spacing:0.341333pt;}
.ws9a{word-spacing:0.426667pt;}
.ws29{word-spacing:0.448000pt;}
.ws4e{word-spacing:0.456000pt;}
.ws4c{word-spacing:0.506667pt;}
.ws5a{word-spacing:0.512000pt;}
.ws85{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.658667pt;}
.ws32{word-spacing:0.704000pt;}
.ws37{word-spacing:0.768000pt;}
.ws25{word-spacing:0.832000pt;}
.ws9b{word-spacing:0.853333pt;}
.ws30{word-spacing:0.896000pt;}
.ws55{word-spacing:0.938667pt;}
.ws61{word-spacing:0.960000pt;}
.ws65{word-spacing:1.024000pt;}
.wsd{word-spacing:1.066667pt;}
.ws8{word-spacing:1.152000pt;}
.ws28{word-spacing:1.216000pt;}
.ws22{word-spacing:1.280000pt;}
.ws6a{word-spacing:1.344000pt;}
.ws1c{word-spacing:1.408000pt;}
.ws88{word-spacing:1.472000pt;}
.ws62{word-spacing:1.493333pt;}
.ws1b{word-spacing:1.600000pt;}
.ws7{word-spacing:1.706667pt;}
.ws5{word-spacing:1.813333pt;}
.ws82{word-spacing:1.856000pt;}
.ws2c{word-spacing:2.048000pt;}
.ws27{word-spacing:2.112000pt;}
.ws7e{word-spacing:2.176000pt;}
.ws6d{word-spacing:2.624000pt;}
.ws7c{word-spacing:2.688000pt;}
.ws80{word-spacing:2.752000pt;}
.ws7b{word-spacing:2.880000pt;}
.ws72{word-spacing:3.136000pt;}
.ws49{word-spacing:3.264000pt;}
.ws3e{word-spacing:3.328000pt;}
.ws77{word-spacing:3.712000pt;}
.ws64{word-spacing:3.968000pt;}
.ws75{word-spacing:4.032000pt;}
.ws98{word-spacing:4.096000pt;}
.ws26{word-spacing:4.160000pt;}
.ws50{word-spacing:4.357333pt;}
.ws7a{word-spacing:4.416000pt;}
.ws76{word-spacing:4.800000pt;}
.ws34{word-spacing:5.120000pt;}
.ws3a{word-spacing:5.184000pt;}
.ws23{word-spacing:5.824000pt;}
.ws5e{word-spacing:5.888000pt;}
.ws2a{word-spacing:6.272000pt;}
.ws3d{word-spacing:6.464000pt;}
.ws81{word-spacing:6.528000pt;}
.ws86{word-spacing:7.040000pt;}
.ws57{word-spacing:7.424000pt;}
.ws4b{word-spacing:7.488000pt;}
.ws38{word-spacing:8.128000pt;}
.ws71{word-spacing:8.192000pt;}
.ws17{word-spacing:9.088000pt;}
.ws24{word-spacing:9.344000pt;}
.ws48{word-spacing:9.408000pt;}
.ws59{word-spacing:9.664000pt;}
.ws18{word-spacing:9.728000pt;}
.ws1a{word-spacing:10.176000pt;}
.ws6b{word-spacing:10.240000pt;}
.ws20{word-spacing:599.418667pt;}
.wsa{word-spacing:621.888000pt;}
._13{margin-left:-770.961600pt;}
._0{margin-left:-768.984533pt;}
._1d{margin-left:-766.919467pt;}
._16{margin-left:-765.851733pt;}
._b{margin-left:-764.801600pt;}
._12{margin-left:-635.139733pt;}
._9{margin-left:-628.275733pt;}
._7{margin-left:-11.323733pt;}
._1c{margin-left:-6.666133pt;}
._d{margin-left:-5.768000pt;}
._1{margin-left:-4.771200pt;}
._a{margin-left:-3.786133pt;}
._6{margin-left:-2.882133pt;}
._3{margin-left:-1.651200pt;}
._2{width:1.056000pt;}
._4{width:2.596800pt;}
._5{width:3.850667pt;}
._11{width:5.149867pt;}
._c{width:6.056533pt;}
._f{width:7.316800pt;}
._10{width:8.804800pt;}
._e{width:10.073600pt;}
._17{width:11.062933pt;}
._18{width:12.215467pt;}
._1e{width:13.996800pt;}
._1a{width:15.041600pt;}
._19{width:15.997867pt;}
._1b{width:17.054400pt;}
._8{width:24.176000pt;}
._15{width:28.259200pt;}
._14{width:32.994133pt;}
.fs5{font-size:37.312000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsa{font-size:44.800000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:49.355467pt;}
.y1{bottom:64.000000pt;}
.y7f{bottom:104.000000pt;}
.y23{bottom:104.000133pt;}
.ybe{bottom:104.133333pt;}
.yed{bottom:104.666667pt;}
.ye5{bottom:106.666667pt;}
.y128{bottom:108.000000pt;}
.y9a{bottom:110.666667pt;}
.yda{bottom:116.641733pt;}
.y100{bottom:117.333333pt;}
.y22{bottom:117.333467pt;}
.yfe{bottom:121.333333pt;}
.y7e{bottom:124.000000pt;}
.ybd{bottom:124.133333pt;}
.y99{bottom:126.666667pt;}
.yff{bottom:130.666667pt;}
.y68{bottom:130.666800pt;}
.y127{bottom:134.666667pt;}
.yd9{bottom:136.641733pt;}
.yfd{bottom:141.333333pt;}
.y7d{bottom:144.000000pt;}
.y10b{bottom:144.000133pt;}
.ybc{bottom:144.053333pt;}
.ye4{bottom:146.666667pt;}
.y126{bottom:148.000000pt;}
.y67{bottom:150.666933pt;}
.y98{bottom:152.666667pt;}
.yd8{bottom:156.641733pt;}
.y21{bottom:158.000000pt;}
.y147{bottom:160.000000pt;}
.yfc{bottom:161.333333pt;}
.ybb{bottom:163.973333pt;}
.y7c{bottom:164.000000pt;}
.y66{bottom:164.000267pt;}
.ye3{bottom:166.666667pt;}
.y97{bottom:168.666667pt;}
.y20{bottom:174.666667pt;}
.yd7{bottom:176.641867pt;}
.y146{bottom:176.666667pt;}
.y65{bottom:177.333600pt;}
.yfb{bottom:181.333333pt;}
.yba{bottom:183.893333pt;}
.y7b{bottom:184.000000pt;}
.y96{bottom:184.666667pt;}
.ye2{bottom:186.666667pt;}
.y125{bottom:188.000000pt;}
.y1f{bottom:191.333333pt;}
.y145{bottom:193.333333pt;}
.yd6{bottom:196.641867pt;}
.y95{bottom:200.666667pt;}
.yfa{bottom:201.333333pt;}
.yb9{bottom:203.813333pt;}
.y7a{bottom:204.000000pt;}
.ye1{bottom:206.666667pt;}
.y1e{bottom:208.000000pt;}
.y46{bottom:214.666667pt;}
.y94{bottom:216.666667pt;}
.y64{bottom:218.666667pt;}
.yd5{bottom:219.308533pt;}
.y144{bottom:220.000000pt;}
.yf9{bottom:221.333333pt;}
.yb8{bottom:223.733333pt;}
.y79{bottom:224.000000pt;}
.y1d{bottom:224.666667pt;}
.ye0{bottom:226.666667pt;}
.y124{bottom:228.000000pt;}
.y45{bottom:231.333333pt;}
.y93{bottom:232.666667pt;}
.y63{bottom:238.666667pt;}
.y1c{bottom:241.333333pt;}
.yb7{bottom:243.653333pt;}
.y78{bottom:244.000000pt;}
.ydf{bottom:246.666667pt;}
.y44{bottom:248.000000pt;}
.y92{bottom:248.666667pt;}
.yd4{bottom:253.975200pt;}
.y123{bottom:254.666667pt;}
.y143{bottom:256.666667pt;}
.y1b{bottom:258.000000pt;}
.y62{bottom:258.666667pt;}
.yf8{bottom:261.333333pt;}
.yb6{bottom:263.573333pt;}
.y77{bottom:264.000000pt;}
.y91{bottom:264.666667pt;}
.yde{bottom:266.666667pt;}
.y122{bottom:268.000000pt;}
.y43{bottom:272.666667pt;}
.y142{bottom:273.333333pt;}
.yd3{bottom:273.975200pt;}
.y1a{bottom:274.666667pt;}
.y61{bottom:278.666667pt;}
.y90{bottom:280.666667pt;}
.yf7{bottom:281.333333pt;}
.yb5{bottom:283.493333pt;}
.y76{bottom:284.000000pt;}
.ydd{bottom:286.666667pt;}
.y42{bottom:289.333333pt;}
.y141{bottom:290.000000pt;}
.y19{bottom:291.333333pt;}
.yd2{bottom:293.975200pt;}
.y121{bottom:294.666667pt;}
.y60{bottom:298.666667pt;}
.yf6{bottom:301.333333pt;}
.yb4{bottom:303.413333pt;}
.y75{bottom:304.000000pt;}
.y41{bottom:306.000000pt;}
.y8f{bottom:306.666667pt;}
.y18{bottom:308.000000pt;}
.yd1{bottom:313.975200pt;}
.y5f{bottom:318.666667pt;}
.yf5{bottom:321.333333pt;}
.y40{bottom:322.666667pt;}
.yb3{bottom:323.333333pt;}
.y74{bottom:324.000000pt;}
.y17{bottom:324.666667pt;}
.y8e{bottom:326.666667pt;}
.yd0{bottom:333.975200pt;}
.y120{bottom:334.666667pt;}
.y3f{bottom:339.333333pt;}
.y140{bottom:340.000000pt;}
.y16{bottom:341.333333pt;}
.yb2{bottom:343.253333pt;}
.y5e{bottom:344.000000pt;}
.y8d{bottom:346.666667pt;}
.y11f{bottom:348.000000pt;}
.ycf{bottom:353.975200pt;}
.y3e{bottom:356.000000pt;}
.y13f{bottom:356.666667pt;}
.y15{bottom:358.000000pt;}
.yf4{bottom:361.333333pt;}
.yb1{bottom:363.173333pt;}
.y73{bottom:364.000000pt;}
.y8c{bottom:366.666667pt;}
.y3d{bottom:372.666667pt;}
.y13e{bottom:373.333333pt;}
.yce{bottom:373.975200pt;}
.y14{bottom:374.666667pt;}
.y5d{bottom:378.666667pt;}
.yf3{bottom:381.333333pt;}
.yb0{bottom:383.093333pt;}
.y72{bottom:384.000000pt;}
.ydc{bottom:386.666667pt;}
.y11e{bottom:388.000000pt;}
.y3c{bottom:389.333333pt;}
.y13d{bottom:390.000000pt;}
.y13{bottom:391.333333pt;}
.ycd{bottom:393.975200pt;}
.y5c{bottom:398.666667pt;}
.yf2{bottom:401.333333pt;}
.yaf{bottom:403.013333pt;}
.y71{bottom:404.000000pt;}
.y3b{bottom:406.000000pt;}
.y13c{bottom:406.666667pt;}
.y12{bottom:408.000000pt;}
.ydb{bottom:409.333333pt;}
.y11d{bottom:414.666667pt;}
.y5b{bottom:418.666667pt;}
.ycc{bottom:419.308933pt;}
.yf1{bottom:421.333333pt;}
.y3a{bottom:422.666667pt;}
.yae{bottom:422.933333pt;}
.y13b{bottom:423.333333pt;}
.y70{bottom:424.000000pt;}
.y11{bottom:424.666667pt;}
.y11c{bottom:428.000000pt;}
.y5a{bottom:438.666667pt;}
.y39{bottom:439.333333pt;}
.y13a{bottom:440.000000pt;}
.y10{bottom:441.333333pt;}
.yad{bottom:442.853333pt;}
.y6f{bottom:444.000000pt;}
.ycb{bottom:454.242267pt;}
.y11b{bottom:454.666667pt;}
.y38{bottom:456.000000pt;}
.y139{bottom:456.666667pt;}
.yf{bottom:458.000000pt;}
.y59{bottom:458.666667pt;}
.yec{bottom:461.333333pt;}
.yac{bottom:462.773333pt;}
.y6e{bottom:464.000000pt;}
.y11a{bottom:468.000000pt;}
.yca{bottom:470.242267pt;}
.y37{bottom:472.666667pt;}
.y138{bottom:473.333333pt;}
.ye{bottom:474.666667pt;}
.y58{bottom:478.666667pt;}
.yeb{bottom:481.333333pt;}
.yab{bottom:482.693333pt;}
.y6d{bottom:484.000000pt;}
.yc9{bottom:486.242267pt;}
.y36{bottom:489.333333pt;}
.y137{bottom:490.000000pt;}
.yd{bottom:491.333333pt;}
.y119{bottom:494.666667pt;}
.y57{bottom:498.666667pt;}
.yea{bottom:501.333333pt;}
.yc8{bottom:502.242267pt;}
.yaa{bottom:502.613333pt;}
.y6c{bottom:504.000000pt;}
.y35{bottom:506.000000pt;}
.y136{bottom:506.666667pt;}
.yc{bottom:508.000000pt;}
.yc7{bottom:518.242267pt;}
.y56{bottom:518.666667pt;}
.ye9{bottom:521.333333pt;}
.ya9{bottom:522.533333pt;}
.y34{bottom:522.666667pt;}
.y135{bottom:523.333333pt;}
.y6b{bottom:524.000000pt;}
.yb{bottom:532.669333pt;}
.y118{bottom:534.666667pt;}
.yc6{bottom:537.775600pt;}
.y55{bottom:538.666667pt;}
.y33{bottom:539.333333pt;}
.y134{bottom:540.000000pt;}
.ye8{bottom:541.333333pt;}
.ya8{bottom:542.453333pt;}
.y6a{bottom:544.000000pt;}
.y117{bottom:548.000000pt;}
.yc5{bottom:553.775600pt;}
.y32{bottom:556.000000pt;}
.y133{bottom:556.666667pt;}
.y54{bottom:558.666667pt;}
.ye7{bottom:561.333333pt;}
.ya7{bottom:562.373333pt;}
.y69{bottom:564.000000pt;}
.yc4{bottom:569.775600pt;}
.ya{bottom:571.333333pt;}
.y31{bottom:572.666667pt;}
.y132{bottom:573.333333pt;}
.y116{bottom:574.666667pt;}
.y53{bottom:578.666667pt;}
.ye6{bottom:581.333333pt;}
.ya6{bottom:582.293333pt;}
.y8b{bottom:584.000000pt;}
.y115{bottom:588.000000pt;}
.y9{bottom:588.666667pt;}
.yc3{bottom:589.315467pt;}
.y30{bottom:589.333333pt;}
.y131{bottom:590.000000pt;}
.y52{bottom:598.666667pt;}
.yf0{bottom:601.333333pt;}
.ya5{bottom:602.213333pt;}
.y8a{bottom:604.000000pt;}
.yc2{bottom:605.313467pt;}
.y2f{bottom:606.000000pt;}
.y130{bottom:606.666667pt;}
.y80{bottom:609.775867pt;}
.y114{bottom:614.666667pt;}
.y8{bottom:615.333333pt;}
.y51{bottom:618.666667pt;}
.yc1{bottom:621.311467pt;}
.y10a{bottom:621.333333pt;}
.ya4{bottom:622.133333pt;}
.y2e{bottom:622.666667pt;}
.y12f{bottom:623.333333pt;}
.y89{bottom:624.000000pt;}
.y113{bottom:628.000000pt;}
.yc0{bottom:637.309467pt;}
.y50{bottom:638.666667pt;}
.y2d{bottom:639.333333pt;}
.y109{bottom:641.333333pt;}
.ya3{bottom:642.053333pt;}
.y88{bottom:644.000000pt;}
.y10d{bottom:649.333333pt;}
.yee{bottom:650.000000pt;}
.y12e{bottom:652.000000pt;}
.y112{bottom:654.666667pt;}
.y2c{bottom:656.000000pt;}
.y4f{bottom:658.666667pt;}
.y108{bottom:661.333333pt;}
.ya2{bottom:661.973333pt;}
.y87{bottom:664.000000pt;}
.ybf{bottom:666.666667pt;}
.y111{bottom:668.000000pt;}
.y10c{bottom:669.333333pt;}
.y2b{bottom:672.666667pt;}
.y7{bottom:675.333333pt;}
.y4e{bottom:678.666667pt;}
.y107{bottom:681.333333pt;}
.ya1{bottom:681.893333pt;}
.y86{bottom:684.000000pt;}
.y2a{bottom:689.333333pt;}
.y110{bottom:694.666667pt;}
.y6{bottom:696.666667pt;}
.y4d{bottom:698.666667pt;}
.y106{bottom:701.333333pt;}
.ya0{bottom:701.813333pt;}
.y85{bottom:704.000000pt;}
.y10f{bottom:708.000000pt;}
.y29{bottom:714.000000pt;}
.y4c{bottom:718.666667pt;}
.y105{bottom:721.333333pt;}
.y9f{bottom:721.733333pt;}
.y84{bottom:724.000000pt;}
.y5{bottom:726.000000pt;}
.y10e{bottom:728.000000pt;}
.y4b{bottom:738.666667pt;}
.y104{bottom:741.333333pt;}
.y9e{bottom:741.653333pt;}
.y83{bottom:744.000000pt;}
.y12d{bottom:750.666667pt;}
.y4{bottom:752.666667pt;}
.y4a{bottom:758.666667pt;}
.y103{bottom:761.333333pt;}
.y9d{bottom:761.573333pt;}
.y82{bottom:764.000000pt;}
.y28{bottom:769.333333pt;}
.y12c{bottom:777.333333pt;}
.y49{bottom:778.666667pt;}
.y3{bottom:779.333333pt;}
.y102{bottom:781.333333pt;}
.y9c{bottom:781.493333pt;}
.y81{bottom:784.000000pt;}
.y12b{bottom:790.666667pt;}
.y27{bottom:794.000000pt;}
.yef{bottom:798.666667pt;}
.y101{bottom:801.333333pt;}
.y9b{bottom:801.413333pt;}
.y48{bottom:804.000000pt;}
.y26{bottom:810.666667pt;}
.y12a{bottom:817.333333pt;}
.y47{bottom:824.000000pt;}
.y2{bottom:826.000000pt;}
.y25{bottom:827.333333pt;}
.y129{bottom:830.666667pt;}
.hb{height:29.437500pt;}
.hd{height:31.992188pt;}
.h2{height:33.117188pt;}
.h19{height:34.730667pt;}
.h16{height:34.957031pt;}
.h11{height:35.312500pt;}
.h17{height:35.546875pt;}
.h1a{height:35.968000pt;}
.ha{height:36.229167pt;}
.h8{height:36.796875pt;}
.h18{height:37.942708pt;}
.h1{height:40.476562pt;}
.h7{height:40.757812pt;}
.h13{height:41.736979pt;}
.h15{height:43.022135pt;}
.h12{height:43.413333pt;}
.h14{height:44.140625pt;}
.he{height:44.156250pt;}
.h9{height:45.286458pt;}
.h6{height:47.055094pt;}
.h5{height:49.456000pt;}
.hc{height:49.815104pt;}
.h10{height:52.968750pt;}
.hf{height:54.343750pt;}
.h4{height:72.458333pt;}
.h3{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x9{left:60.106667pt;}
.x13{left:65.600000pt;}
.x10{left:73.333333pt;}
.xe{left:80.000000pt;}
.x8{left:88.000000pt;}
.x2{left:100.000000pt;}
.x3{left:101.479867pt;}
.x6{left:102.861733pt;}
.xf{left:104.000000pt;}
.x5{left:113.333333pt;}
.xc{left:120.000000pt;}
.x1b{left:121.333333pt;}
.x4{left:128.000000pt;}
.x14{left:141.600000pt;}
.xd{left:142.666667pt;}
.x12{left:144.000000pt;}
.x17{left:205.600000pt;}
.x7{left:234.000000pt;}
.x18{left:269.600000pt;}
.x15{left:333.601333pt;}
.x19{left:386.933333pt;}
.x16{left:440.267333pt;}
.x1a{left:493.600000pt;}
.x11{left:558.180400pt;}
.xb{left:559.457867pt;}
.xa{left:565.251200pt;}
.x1{left:566.296933pt;}
}




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