
    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_84f3ea728932d25f33e9fd8a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904000;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_60a7a03ab824a8079634532f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_35fd6777f686f47ee24e6fd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_572dbb8d939c8a0fbd313d14.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_1ef08e29a95a5f4044fcb4b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_38bc5e706f5dbb28302627e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_90d1d54de23b01245ef4fcae.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_0ed1934e3f0d24dc9c35c25a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_a0bab361cf5e2563afc9d9b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.896000;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_c404a5cd94f8ce960823792f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.106000;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_82850b60aed94e8683f419df.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.688000;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_dd5c19c5bea3001f515b92a0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.115000;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_01ac8e7734f0565437d2b758.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.106000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_788b4a8008eb166827582cde.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5b45eaa167d08a53c8223334.woff2')format("woff");}.fff{font-family:fff;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f08caadc1d65a77cec02a26f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_89b15011e1dd0668b5c04926.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_524031c087603d6dcdb672a7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_27a5e69cf1bf02c2353c657f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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);}
.v4{vertical-align:-14.940000px;}
.v1{vertical-align:-8.964000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.108000px;}
.v6{vertical-align:21.690000px;}
.v5{vertical-align:24.684000px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.003008px;}
.ls4f{letter-spacing:0.005978px;}
.lsb{letter-spacing:0.009008px;}
.ls1{letter-spacing:0.010760px;}
.ls3d{letter-spacing:0.011291px;}
.ls2e{letter-spacing:0.012553px;}
.ls44{letter-spacing:0.012914px;}
.ls18{letter-spacing:0.016111px;}
.ls2f{letter-spacing:0.016737px;}
.ls2d{letter-spacing:0.016825px;}
.ls4e{letter-spacing:0.017933px;}
.ls36{letter-spacing:0.018914px;}
.ls1a{letter-spacing:0.019753px;}
.ls4{letter-spacing:0.020921px;}
.ls7{letter-spacing:0.022082px;}
.ls23{letter-spacing:0.022111px;}
.ls34{letter-spacing:0.022424px;}
.ls37{letter-spacing:0.022825px;}
.ls10{letter-spacing:0.023447px;}
.ls2a{letter-spacing:0.023910px;}
.ls1b{letter-spacing:0.025753px;}
.ls2{letter-spacing:0.026899px;}
.ls12{letter-spacing:0.028082px;}
.ls2b{letter-spacing:0.028424px;}
.ls24{letter-spacing:0.029708px;}
.ls31{letter-spacing:0.029888px;}
.ls22{letter-spacing:0.032222px;}
.ls15{letter-spacing:0.032346px;}
.ls9{letter-spacing:0.033474px;}
.ls19{letter-spacing:0.035708px;}
.ls8{letter-spacing:0.035865px;}
.ls0{letter-spacing:0.037659px;}
.ls16{letter-spacing:0.038222px;}
.ls21{letter-spacing:0.038346px;}
.ls6{letter-spacing:0.047759px;}
.ls5{letter-spacing:0.047820px;}
.ls39{letter-spacing:0.053798px;}
.ls20{letter-spacing:0.057067px;}
.ls3c{letter-spacing:2.948747px;}
.ls1c{letter-spacing:3.004296px;}
.ls2c{letter-spacing:3.004750px;}
.ls1e{letter-spacing:3.005447px;}
.ls25{letter-spacing:3.010111px;}
.ls35{letter-spacing:3.010750px;}
.ls29{letter-spacing:3.011447px;}
.ls45{letter-spacing:3.023708px;}
.ls26{letter-spacing:5.998296px;}
.ls17{letter-spacing:6.455813px;}
.ls30{letter-spacing:8.314786px;}
.lse{letter-spacing:10.030346px;}
.ls3b{letter-spacing:13.287008px;}
.ls48{letter-spacing:13.290268px;}
.ls49{letter-spacing:13.310132px;}
.ls4c{letter-spacing:13.316132px;}
.ls4d{letter-spacing:13.326359px;}
.ls27{letter-spacing:13.332359px;}
.ls4a{letter-spacing:16.614268px;}
.ls13{letter-spacing:16.650359px;}
.ls32{letter-spacing:16.671415px;}
.ls40{letter-spacing:19.426800px;}
.ls33{letter-spacing:19.625708px;}
.ls3f{letter-spacing:19.905000px;}
.ls3e{letter-spacing:19.934825px;}
.ls1f{letter-spacing:19.976159px;}
.ls14{letter-spacing:22.600296px;}
.ls41{letter-spacing:22.774200px;}
.ls38{letter-spacing:22.943708px;}
.ls43{letter-spacing:22.949708px;}
.ls42{letter-spacing:71.730720px;}
.ls3a{letter-spacing:95.405708px;}
.ls4b{letter-spacing:96.657145px;}
.ls46{letter-spacing:110.345708px;}
.ls47{letter-spacing:110.351708px;}
.lsf{letter-spacing:125.278200px;}
.ls11{letter-spacing:135.598296px;}
.lsa{letter-spacing:154.840259px;}
.lsd{letter-spacing:162.947447px;}
.lsc{letter-spacing:193.289447px;}
.ls1d{letter-spacing:657.124111px;}
.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;}
}
.ws85{word-spacing:-53.538752px;}
.ws7c{word-spacing:-53.532752px;}
.ws42{word-spacing:-16.731190px;}
.ws35{word-spacing:-10.090121px;}
.ws40{word-spacing:-8.374562px;}
.ws2{word-spacing:-0.148723px;}
.ws6{word-spacing:-0.091457px;}
.ws93{word-spacing:-0.086077px;}
.ws3c{word-spacing:-0.075317px;}
.ws4e{word-spacing:-0.062764px;}
.ws19{word-spacing:-0.059776px;}
.ws3d{word-spacing:-0.058580px;}
.ws36{word-spacing:-0.054396px;}
.wsb{word-spacing:-0.053798px;}
.ws4f{word-spacing:-0.041843px;}
.ws10{word-spacing:0.000000px;}
.ws41{word-spacing:9.892862px;}
.wsd{word-spacing:12.222996px;}
.wsc{word-spacing:12.253853px;}
.wsb9{word-spacing:13.987490px;}
.ws6f{word-spacing:14.047266px;}
.ws98{word-spacing:14.142907px;}
.ws9a{word-spacing:14.214638px;}
.ws57{word-spacing:14.585246px;}
.wsa9{word-spacing:14.991720px;}
.ws6d{word-spacing:15.637297px;}
.ws33{word-spacing:15.661207px;}
.ws11{word-spacing:16.046714px;}
.ws99{word-spacing:16.079636px;}
.ws65{word-spacing:16.140523px;}
.ws9{word-spacing:16.483830px;}
.ws83{word-spacing:16.605662px;}
.ws9c{word-spacing:16.737168px;}
.wsb7{word-spacing:16.970293px;}
.ws76{word-spacing:17.036046px;}
.ws8b{word-spacing:17.454475px;}
.ws61{word-spacing:17.633802px;}
.wsb3{word-spacing:18.135917px;}
.ws90{word-spacing:18.147872px;}
.ws86{word-spacing:18.255468px;}
.ws97{word-spacing:18.279378px;}
.wsf{word-spacing:18.318355px;}
.ws9b{word-spacing:18.339154px;}
.ws5{word-spacing:18.356014px;}
.ws7{word-spacing:18.409812px;}
.wse{word-spacing:18.411059px;}
.ws13{word-spacing:18.434795px;}
.ws4{word-spacing:18.447471px;}
.wsa{word-spacing:18.517409px;}
.ws7f{word-spacing:18.530436px;}
.wsbc{word-spacing:18.697808px;}
.ws72{word-spacing:18.709763px;}
.ws58{word-spacing:18.948865px;}
.ws5b{word-spacing:18.972775px;}
.ws6e{word-spacing:19.391205px;}
.ws82{word-spacing:19.427070px;}
.ws28{word-spacing:19.450980px;}
.ws6b{word-spacing:19.510756px;}
.ws4d{word-spacing:19.522017px;}
.ws48{word-spacing:19.525337px;}
.ws3b{word-spacing:19.528855px;}
.ws15{word-spacing:19.546621px;}
.ws32{word-spacing:19.570531px;}
.wsa2{word-spacing:19.594442px;}
.wsb4{word-spacing:19.678128px;}
.ws1d{word-spacing:19.797679px;}
.ws5c{word-spacing:19.806056px;}
.ws30{word-spacing:19.809634px;}
.wsb1{word-spacing:19.833544px;}
.ws62{word-spacing:19.845339px;}
.ws80{word-spacing:19.845345px;}
.ws2e{word-spacing:19.845499px;}
.ws9d{word-spacing:19.853303px;}
.ws31{word-spacing:19.869409px;}
.ws23{word-spacing:19.881365px;}
.ws47{word-spacing:19.887342px;}
.ws2d{word-spacing:19.893320px;}
.ws64{word-spacing:19.899297px;}
.ws6c{word-spacing:19.905275px;}
.ws5e{word-spacing:19.907165px;}
.ws1c{word-spacing:19.929185px;}
.ws27{word-spacing:20.084602px;}
.ws5a{word-spacing:20.108512px;}
.ws87{word-spacing:20.168287px;}
.ws2c{word-spacing:20.263928px;}
.ws7a{word-spacing:20.323704px;}
.ws21{word-spacing:20.383480px;}
.ws78{word-spacing:20.574762px;}
.ws89{word-spacing:20.622582px;}
.ws77{word-spacing:20.646492px;}
.ws91{word-spacing:20.706268px;}
.ws2a{word-spacing:20.801909px;}
.ws26{word-spacing:20.825819px;}
.ws3e{word-spacing:20.885595px;}
.wsb2{word-spacing:20.957325px;}
.wsa3{word-spacing:21.023079px;}
.ws4c{word-spacing:21.064921px;}
.wsa6{word-spacing:21.076877px;}
.ws4a{word-spacing:21.124697px;}
.ws94{word-spacing:21.268158px;}
.ws6a{word-spacing:21.280114px;}
.wsb0{word-spacing:21.286091px;}
.ws9e{word-spacing:21.321957px;}
.ws79{word-spacing:21.327934px;}
.wsb8{word-spacing:21.333912px;}
.ws8e{word-spacing:21.339889px;}
.wsa4{word-spacing:21.345867px;}
.ws1b{word-spacing:21.531171px;}
.ws1a{word-spacing:21.590947px;}
.ws18{word-spacing:21.602902px;}
.wsab{word-spacing:21.861667px;}
.ws38{word-spacing:21.877870px;}
.wsac{word-spacing:21.925690px;}
.ws1e{word-spacing:22.081107px;}
.ws2b{word-spacing:22.176748px;}
.wsbe{word-spacing:22.288828px;}
.ws14{word-spacing:22.320209px;}
.wsbd{word-spacing:22.344119px;}
.ws92{word-spacing:22.379985px;}
.ws60{word-spacing:22.678863px;}
.ws70{word-spacing:22.714728px;}
.ws71{word-spacing:22.738638px;}
.ws5d{word-spacing:22.843337px;}
.ws2f{word-spacing:22.852855px;}
.wsa0{word-spacing:22.929920px;}
.ws17{word-spacing:22.953830px;}
.ws52{word-spacing:23.073382px;}
.ws29{word-spacing:23.157067px;}
.ws20{word-spacing:23.192933px;}
.ws75{word-spacing:23.312484px;}
.ws8a{word-spacing:23.336394px;}
.ws81{word-spacing:23.372260px;}
.ws8f{word-spacing:23.455945px;}
.ws55{word-spacing:23.527676px;}
.ws56{word-spacing:23.539631px;}
.wsbf{word-spacing:23.563542px;}
.ws22{word-spacing:23.635272px;}
.ws9f{word-spacing:23.778734px;}
.ws8{word-spacing:23.789652px;}
.ws4b{word-spacing:24.106017px;}
.wsa5{word-spacing:25.010111px;}
.wsc0{word-spacing:25.034021px;}
.wsc3{word-spacing:25.392675px;}
.wsba{word-spacing:25.464406px;}
.ws3a{word-spacing:25.524181px;}
.ws39{word-spacing:25.548091px;}
.ws16{word-spacing:25.763284px;}
.ws53{word-spacing:25.906745px;}
.wsc1{word-spacing:26.008364px;}
.wsc2{word-spacing:26.426793px;}
.wsbb{word-spacing:26.522434px;}
.wsb5{word-spacing:26.683828px;}
.ws54{word-spacing:26.779469px;}
.ws59{word-spacing:26.863334px;}
.ws8c{word-spacing:27.257674px;}
.wsaa{word-spacing:27.317449px;}
.ws3f{word-spacing:27.401135px;}
.ws1f{word-spacing:27.460911px;}
.ws88{word-spacing:27.580462px;}
.wsb6{word-spacing:27.610350px;}
.ws25{word-spacing:27.915205px;}
.wsa7{word-spacing:28.130397px;}
.ws8d{word-spacing:28.178218px;}
.ws46{word-spacing:28.249949px;}
.ws44{word-spacing:28.297769px;}
.wsae{word-spacing:28.847705px;}
.wsa8{word-spacing:28.985188px;}
.ws95{word-spacing:29.349820px;}
.ws24{word-spacing:29.409595px;}
.wsaf{word-spacing:29.565012px;}
.ws96{word-spacing:30.108970px;}
.ws45{word-spacing:31.234855px;}
.ws51{word-spacing:32.192873px;}
.wsad{word-spacing:37.036962px;}
.wsa1{word-spacing:37.048917px;}
.ws3{word-spacing:37.366065px;}
.ws1{word-spacing:55.622252px;}
.ws0{word-spacing:55.666869px;}
.ws7d{word-spacing:61.640599px;}
.ws5f{word-spacing:68.706075px;}
.ws67{word-spacing:71.669024px;}
.ws69{word-spacing:71.670944px;}
.ws73{word-spacing:71.675024px;}
.ws7e{word-spacing:74.121744px;}
.ws68{word-spacing:74.648527px;}
.ws43{word-spacing:80.661734px;}
.ws12{word-spacing:96.793811px;}
.ws74{word-spacing:121.346527px;}
.ws66{word-spacing:125.065337px;}
.ws37{word-spacing:148.853199px;}
.ws63{word-spacing:187.500241px;}
.ws7b{word-spacing:212.385100px;}
.ws84{word-spacing:212.391100px;}
.ws34{word-spacing:494.566370px;}
.ws50{word-spacing:559.118527px;}
.ws49{word-spacing:626.216527px;}
._3{margin-left:-82.466682px;}
._2b{margin-left:-61.688419px;}
._7{margin-left:-56.532600px;}
._14{margin-left:-48.539471px;}
._23{margin-left:-42.371620px;}
._32{margin-left:-40.040356px;}
._10{margin-left:-32.109574px;}
._16{margin-left:-30.575219px;}
._15{margin-left:-29.337864px;}
._a{margin-left:-27.489190px;}
._12{margin-left:-24.374297px;}
._13{margin-left:-23.302873px;}
._9{margin-left:-21.470941px;}
._0{margin-left:-13.920435px;}
._6{margin-left:-9.484087px;}
._1e{margin-left:-7.423162px;}
._8{margin-left:-6.045148px;}
._1a{margin-left:-4.949420px;}
._5{margin-left:-3.074580px;}
._2{margin-left:-1.115420px;}
._1{width:1.130292px;}
._c{width:2.130417px;}
._b{width:3.496896px;}
._21{width:5.922649px;}
._1b{width:8.572542px;}
._4{width:10.053648px;}
._f{width:13.288205px;}
._e{width:15.932398px;}
._1f{width:18.291111px;}
._d{width:19.593377px;}
._18{width:20.980703px;}
._11{width:22.164941px;}
._17{width:24.754241px;}
._41{width:27.084163px;}
._19{width:28.996078px;}
._40{width:35.236096px;}
._3f{width:59.587946px;}
._28{width:71.730720px;}
._22{width:80.841062px;}
._2d{width:93.010834px;}
._20{width:96.922927px;}
._1c{width:115.008254px;}
._29{width:124.919049px;}
._36{width:127.104066px;}
._2a{width:131.506320px;}
._1d{width:144.178747px;}
._2c{width:149.056436px;}
._37{width:167.072802px;}
._38{width:175.381610px;}
._3e{width:177.790505px;}
._2f{width:192.390977px;}
._25{width:195.038875px;}
._3a{width:204.563517px;}
._24{width:208.302300px;}
._31{width:215.789916px;}
._2e{width:221.528374px;}
._39{width:222.783661px;}
._33{width:257.355943px;}
._27{width:270.692592px;}
._26{width:291.345217px;}
._35{width:304.076592px;}
._3c{width:310.594018px;}
._30{width:317.396592px;}
._3b{width:343.769476px;}
._3d{width:350.774592px;}
._34{width:380.379217px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs3{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs7{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y34{bottom:134.047500px;}
.y50{bottom:178.879500px;}
.y10{bottom:182.646000px;}
.y33{bottom:189.225000px;}
.yab{bottom:189.637500px;}
.y6b{bottom:198.789000px;}
.yf{bottom:200.728500px;}
.yc5{bottom:201.501000px;}
.yaa{bottom:209.364000px;}
.y4f{bottom:210.294000px;}
.y6a{bottom:218.515500px;}
.y8b{bottom:218.767500px;}
.ye{bottom:218.811000px;}
.yf6{bottom:220.266000px;}
.y32{bottom:220.905000px;}
.yc4{bottom:221.227500px;}
.y69{bottom:238.240500px;}
.y8a{bottom:238.492500px;}
.yf5{bottom:239.992500px;}
.yc3{bottom:240.952500px;}
.ya9{bottom:241.045500px;}
.y4e{bottom:241.440000px;}
.y31{bottom:252.586500px;}
.yd{bottom:254.976000px;}
.y68{bottom:257.967000px;}
.yd9{bottom:258.091500px;}
.y89{bottom:258.219000px;}
.yc2{bottom:260.679000px;}
.ya8{bottom:260.772000px;}
.y4d{bottom:269.733000px;}
.yf4{bottom:271.674000px;}
.yc{bottom:273.058500px;}
.yd8{bottom:277.818000px;}
.y88{bottom:277.945500px;}
.yc1{bottom:280.405500px;}
.ya7{bottom:280.498500px;}
.y30{bottom:284.268000px;}
.y67{bottom:287.344500px;}
.y4c{bottom:289.459500px;}
.yb{bottom:291.139500px;}
.yf3{bottom:291.400500px;}
.yd7{bottom:297.544500px;}
.y87{bottom:297.672000px;}
.yc0{bottom:300.132000px;}
.ya6{bottom:300.223500px;}
.y4b{bottom:309.184500px;}
.ya{bottom:309.222000px;}
.yf2{bottom:311.125500px;}
.y2f{bottom:315.949500px;}
.yd6{bottom:317.269500px;}
.y86{bottom:317.397000px;}
.ybf{bottom:319.857000px;}
.ya5{bottom:319.950000px;}
.y9{bottom:327.304500px;}
.y66{bottom:327.982500px;}
.y2e{bottom:335.676000px;}
.yd5{bottom:336.996000px;}
.y85{bottom:337.123500px;}
.y4a{bottom:338.562000px;}
.ybe{bottom:339.583500px;}
.yf1{bottom:342.807000px;}
.ya4{bottom:349.327500px;}
.y8{bottom:352.374000px;}
.y84{bottom:352.426500px;}
.ybd{bottom:354.886500px;}
.yd4{bottom:356.722500px;}
.y65{bottom:359.664000px;}
.yf0{bottom:362.533500px;}
.y2d{bottom:367.357500px;}
.yd3{bottom:376.449000px;}
.yef{bottom:382.260000px;}
.y49{bottom:382.372500px;}
.ya3{bottom:389.964000px;}
.y64{bottom:391.344000px;}
.yd2{bottom:396.174000px;}
.y2c{bottom:399.039000px;}
.y48{bottom:413.520000px;}
.yee{bottom:413.941500px;}
.yd1{bottom:415.900500px;}
.y83{bottom:419.532000px;}
.ybc{bottom:419.533500px;}
.ya2{bottom:421.645500px;}
.y63{bottom:423.025500px;}
.y2b{bottom:430.719000px;}
.y47{bottom:433.246500px;}
.yed{bottom:433.666500px;}
.yd0{bottom:435.627000px;}
.y82{bottom:439.257000px;}
.ybb{bottom:439.260000px;}
.y7{bottom:453.246000px;}
.ya1{bottom:453.327000px;}
.yec{bottom:453.393000px;}
.y62{bottom:454.707000px;}
.ycf{bottom:455.353500px;}
.y81{bottom:458.983500px;}
.yba{bottom:458.985000px;}
.y46{bottom:464.659500px;}
.y2a{bottom:465.244500px;}
.y6{bottom:471.327000px;}
.yeb{bottom:473.119500px;}
.y61{bottom:474.433500px;}
.yce{bottom:475.078500px;}
.y80{bottom:478.710000px;}
.yb9{bottom:478.711500px;}
.ya0{bottom:485.008500px;}
.ycd{bottom:494.805000px;}
.y45{bottom:495.807000px;}
.y7f{bottom:498.436500px;}
.yb8{bottom:498.438000px;}
.y5{bottom:500.211000px;}
.yea{bottom:504.801000px;}
.y60{bottom:513.885000px;}
.ycc{bottom:514.531500px;}
.y44{bottom:515.533500px;}
.y29{bottom:517.353000px;}
.y7e{bottom:518.161500px;}
.yb7{bottom:518.164500px;}
.y9f{bottom:519.678000px;}
.ye9{bottom:524.526000px;}
.y5f{bottom:533.611500px;}
.ycb{bottom:534.258000px;}
.y28{bottom:537.079500px;}
.y7d{bottom:537.888000px;}
.yb6{bottom:537.889500px;}
.y9e{bottom:539.404500px;}
.y43{bottom:543.825000px;}
.ye8{bottom:544.252500px;}
.y5e{bottom:553.338000px;}
.y7c{bottom:556.096500px;}
.y27{bottom:556.806000px;}
.yb5{bottom:557.616000px;}
.y9d{bottom:559.131000px;}
.yca{bottom:568.782000px;}
.yb4{bottom:575.824500px;}
.ye7{bottom:575.934000px;}
.y26{bottom:576.531000px;}
.y9c{bottom:578.857500px;}
.y5d{bottom:582.715500px;}
.y42{bottom:583.278000px;}
.y4{bottom:595.306500px;}
.ye6{bottom:595.660500px;}
.y25{bottom:596.257500px;}
.y41{bottom:603.004500px;}
.y9b{bottom:608.235000px;}
.y7b{bottom:614.212500px;}
.ye5{bottom:615.387000px;}
.y24{bottom:615.984000px;}
.yc9{bottom:619.531500px;}
.y40{bottom:622.729500px;}
.y5c{bottom:626.640000px;}
.yb3{bottom:631.083000px;}
.y3{bottom:631.471500px;}
.y7a{bottom:633.937500px;}
.y23{bottom:635.710500px;}
.yc8{bottom:639.258000px;}
.y5b{bottom:646.366500px;}
.ye4{bottom:647.067000px;}
.yb2{bottom:650.809500px;}
.y79{bottom:653.664000px;}
.y22{bottom:655.435500px;}
.y3f{bottom:657.255000px;}
.y9a{bottom:658.984500px;}
.y5a{bottom:666.093000px;}
.ye3{bottom:666.793500px;}
.y2{bottom:667.636500px;}
.yb1{bottom:670.536000px;}
.y21{bottom:675.162000px;}
.y99{bottom:678.711000px;}
.y102{bottom:681.592500px;}
.y78{bottom:685.345500px;}
.y59{bottom:685.818000px;}
.ye2{bottom:686.520000px;}
.y20{bottom:694.888500px;}
.y98{bottom:698.436000px;}
.yb0{bottom:700.987500px;}
.y101{bottom:701.319000px;}
.y1{bottom:703.800000px;}
.y58{bottom:705.544500px;}
.y1f{bottom:714.615000px;}
.y77{bottom:717.027000px;}
.y97{bottom:718.162500px;}
.ye1{bottom:718.201500px;}
.yaf{bottom:720.714000px;}
.y100{bottom:721.045500px;}
.y57{bottom:725.271000px;}
.y3e{bottom:730.524000px;}
.y1e{bottom:734.340000px;}
.y76{bottom:736.753500px;}
.y96{bottom:737.889000px;}
.ye0{bottom:737.928000px;}
.y56{bottom:744.997500px;}
.y3d{bottom:750.250500px;}
.yae{bottom:751.165500px;}
.yff{bottom:752.725500px;}
.y1d{bottom:754.066500px;}
.y95{bottom:757.615500px;}
.ydf{bottom:757.653000px;}
.y75{bottom:768.435000px;}
.y3c{bottom:769.977000px;}
.yad{bottom:770.892000px;}
.yfe{bottom:772.452000px;}
.yc7{bottom:772.917000px;}
.y1c{bottom:773.793000px;}
.y94{bottom:777.340500px;}
.y55{bottom:779.521500px;}
.y74{bottom:788.160000px;}
.yde{bottom:789.334500px;}
.y3b{bottom:789.703500px;}
.y93{bottom:792.643500px;}
.y1b{bottom:793.519500px;}
.yfd{bottom:804.133500px;}
.ydd{bottom:809.061000px;}
.y3a{bottom:810.027000px;}
.y1a{bottom:813.246000px;}
.yac{bottom:819.184500px;}
.yc6{bottom:822.090000px;}
.yfc{bottom:823.860000px;}
.ydc{bottom:828.787500px;}
.y39{bottom:830.350500px;}
.y54{bottom:831.630000px;}
.y19{bottom:832.971000px;}
.y73{bottom:838.909500px;}
.y92{bottom:841.816500px;}
.yfb{bottom:843.586500px;}
.y38{bottom:846.250500px;}
.y18{bottom:852.697500px;}
.y72{bottom:858.636000px;}
.ydb{bottom:860.469000px;}
.y91{bottom:861.541500px;}
.y53{bottom:871.083000px;}
.y17{bottom:872.424000px;}
.yfa{bottom:875.266500px;}
.y71{bottom:878.362500px;}
.yda{bottom:880.194000px;}
.y90{bottom:881.268000px;}
.y16{bottom:892.150500px;}
.yf9{bottom:894.993000px;}
.y70{bottom:898.089000px;}
.y8f{bottom:900.994500px;}
.y52{bottom:902.764500px;}
.y37{bottom:903.565500px;}
.y15{bottom:911.875500px;}
.yf8{bottom:914.719500px;}
.y6f{bottom:917.814000px;}
.y8e{bottom:920.721000px;}
.y14{bottom:931.602000px;}
.y51{bottom:934.446000px;}
.y36{bottom:934.980000px;}
.y6e{bottom:937.540500px;}
.y8d{bottom:940.446000px;}
.yf7{bottom:946.401000px;}
.y13{bottom:951.328500px;}
.y6d{bottom:957.267000px;}
.y8c{bottom:960.172500px;}
.y35{bottom:966.127500px;}
.y6c{bottom:975.475500px;}
.y12{bottom:985.852500px;}
.y11{bottom:1041.744000px;}
.h9{height:18.112007px;}
.h5{height:31.382100px;}
.h4{height:36.905702px;}
.h3{height:40.348800px;}
.he{height:41.544042px;}
.h7{height:44.831700px;}
.hc{height:50.498765px;}
.h10{height:51.105488px;}
.h11{height:51.111488px;}
.hb{height:53.072100px;}
.hf{height:53.078100px;}
.hd{height:56.060100px;}
.ha{height:56.066100px;}
.h8{height:59.939700px;}
.h6{height:60.598349px;}
.h2{height:87.650325px;}
.h1{height:104.700710px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:200.652000px;}
.x20{left:208.125000px;}
.x1e{left:215.956500px;}
.x1f{left:218.446500px;}
.x1d{left:222.183000px;}
.x19{left:227.631000px;}
.x1a{left:230.122500px;}
.x21{left:231.370500px;}
.x18{left:233.857500px;}
.x8{left:238.012500px;}
.x17{left:250.038000px;}
.x1c{left:253.813500px;}
.x2{left:255.031500px;}
.x5{left:257.886000px;}
.x9{left:260.083500px;}
.x13{left:261.712500px;}
.x1{left:264.768000px;}
.x16{left:275.442000px;}
.x4{left:287.371500px;}
.xd{left:291.324000px;}
.x10{left:298.485000px;}
.xe{left:304.503000px;}
.x22{left:332.221500px;}
.x1b{left:356.235000px;}
.x12{left:358.798500px;}
.x14{left:364.683000px;}
.x6{left:370.833000px;}
.xb{left:376.534500px;}
.x3{left:378.727500px;}
.x11{left:383.277000px;}
.x15{left:393.595500px;}
.x7{left:426.558000px;}
.x24{left:450.963000px;}
.xc{left:454.699500px;}
.xf{left:582.189000px;}
.x23{left:638.743500px;}
@media print{
.v4{vertical-align:-13.280000pt;}
.v1{vertical-align:-7.968000pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.429333pt;}
.v6{vertical-align:19.280000pt;}
.v5{vertical-align:21.941333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.002674pt;}
.ls4f{letter-spacing:0.005313pt;}
.lsb{letter-spacing:0.008007pt;}
.ls1{letter-spacing:0.009564pt;}
.ls3d{letter-spacing:0.010036pt;}
.ls2e{letter-spacing:0.011158pt;}
.ls44{letter-spacing:0.011479pt;}
.ls18{letter-spacing:0.014321pt;}
.ls2f{letter-spacing:0.014877pt;}
.ls2d{letter-spacing:0.014956pt;}
.ls4e{letter-spacing:0.015940pt;}
.ls36{letter-spacing:0.016813pt;}
.ls1a{letter-spacing:0.017558pt;}
.ls4{letter-spacing:0.018597pt;}
.ls7{letter-spacing:0.019629pt;}
.ls23{letter-spacing:0.019654pt;}
.ls34{letter-spacing:0.019933pt;}
.ls37{letter-spacing:0.020289pt;}
.ls10{letter-spacing:0.020842pt;}
.ls2a{letter-spacing:0.021254pt;}
.ls1b{letter-spacing:0.022892pt;}
.ls2{letter-spacing:0.023910pt;}
.ls12{letter-spacing:0.024962pt;}
.ls2b{letter-spacing:0.025266pt;}
.ls24{letter-spacing:0.026407pt;}
.ls31{letter-spacing:0.026567pt;}
.ls22{letter-spacing:0.028642pt;}
.ls15{letter-spacing:0.028752pt;}
.ls9{letter-spacing:0.029755pt;}
.ls19{letter-spacing:0.031741pt;}
.ls8{letter-spacing:0.031880pt;}
.ls0{letter-spacing:0.033475pt;}
.ls16{letter-spacing:0.033975pt;}
.ls21{letter-spacing:0.034085pt;}
.ls6{letter-spacing:0.042452pt;}
.ls5{letter-spacing:0.042507pt;}
.ls39{letter-spacing:0.047820pt;}
.ls20{letter-spacing:0.050726pt;}
.ls3c{letter-spacing:2.621108pt;}
.ls1c{letter-spacing:2.670485pt;}
.ls2c{letter-spacing:2.670889pt;}
.ls1e{letter-spacing:2.671508pt;}
.ls25{letter-spacing:2.675654pt;}
.ls35{letter-spacing:2.676222pt;}
.ls29{letter-spacing:2.676842pt;}
.ls45{letter-spacing:2.687741pt;}
.ls26{letter-spacing:5.331819pt;}
.ls17{letter-spacing:5.738500pt;}
.ls30{letter-spacing:7.390921pt;}
.lse{letter-spacing:8.915863pt;}
.ls3b{letter-spacing:11.810674pt;}
.ls48{letter-spacing:11.813571pt;}
.ls49{letter-spacing:11.831229pt;}
.ls4c{letter-spacing:11.836562pt;}
.ls4d{letter-spacing:11.845652pt;}
.ls27{letter-spacing:11.850986pt;}
.ls4a{letter-spacing:14.768238pt;}
.ls13{letter-spacing:14.800319pt;}
.ls32{letter-spacing:14.819035pt;}
.ls40{letter-spacing:17.268267pt;}
.ls33{letter-spacing:17.445074pt;}
.ls3f{letter-spacing:17.693333pt;}
.ls3e{letter-spacing:17.719844pt;}
.ls1f{letter-spacing:17.756586pt;}
.ls14{letter-spacing:20.089152pt;}
.ls41{letter-spacing:20.243733pt;}
.ls38{letter-spacing:20.394407pt;}
.ls43{letter-spacing:20.399741pt;}
.ls42{letter-spacing:63.760640pt;}
.ls3a{letter-spacing:84.805074pt;}
.ls4b{letter-spacing:85.917462pt;}
.ls46{letter-spacing:98.085074pt;}
.ls47{letter-spacing:98.090407pt;}
.lsf{letter-spacing:111.358400pt;}
.ls11{letter-spacing:120.531819pt;}
.lsa{letter-spacing:137.635786pt;}
.lsd{letter-spacing:144.842175pt;}
.lsc{letter-spacing:171.812842pt;}
.ls1d{letter-spacing:584.110321pt;}
.ws85{word-spacing:-47.590002pt;}
.ws7c{word-spacing:-47.584669pt;}
.ws42{word-spacing:-14.872169pt;}
.ws35{word-spacing:-8.968997pt;}
.ws40{word-spacing:-7.444055pt;}
.ws2{word-spacing:-0.132198pt;}
.ws6{word-spacing:-0.081295pt;}
.ws93{word-spacing:-0.076513pt;}
.ws3c{word-spacing:-0.066948pt;}
.ws4e{word-spacing:-0.055790pt;}
.ws19{word-spacing:-0.053134pt;}
.ws3d{word-spacing:-0.052071pt;}
.ws36{word-spacing:-0.048352pt;}
.wsb{word-spacing:-0.047821pt;}
.ws4f{word-spacing:-0.037194pt;}
.ws10{word-spacing:0.000000pt;}
.ws41{word-spacing:8.793655pt;}
.wsd{word-spacing:10.864886pt;}
.wsc{word-spacing:10.892314pt;}
.wsb9{word-spacing:12.433325pt;}
.ws6f{word-spacing:12.486459pt;}
.ws98{word-spacing:12.571473pt;}
.ws9a{word-spacing:12.635233pt;}
.ws57{word-spacing:12.964663pt;}
.wsa9{word-spacing:13.325974pt;}
.ws6d{word-spacing:13.899820pt;}
.ws33{word-spacing:13.921073pt;}
.ws11{word-spacing:14.263746pt;}
.ws99{word-spacing:14.293010pt;}
.ws65{word-spacing:14.347132pt;}
.ws9{word-spacing:14.652293pt;}
.ws83{word-spacing:14.760588pt;}
.ws9c{word-spacing:14.877483pt;}
.wsb7{word-spacing:15.084705pt;}
.ws76{word-spacing:15.143152pt;}
.ws8b{word-spacing:15.515089pt;}
.ws61{word-spacing:15.674491pt;}
.wsb3{word-spacing:16.120815pt;}
.ws90{word-spacing:16.131442pt;}
.ws86{word-spacing:16.227083pt;}
.ws97{word-spacing:16.248336pt;}
.wsf{word-spacing:16.282982pt;}
.ws9b{word-spacing:16.301470pt;}
.ws5{word-spacing:16.316457pt;}
.ws7{word-spacing:16.364278pt;}
.wse{word-spacing:16.365385pt;}
.ws13{word-spacing:16.386484pt;}
.ws4{word-spacing:16.397752pt;}
.wsa{word-spacing:16.459919pt;}
.ws7f{word-spacing:16.471499pt;}
.wsbc{word-spacing:16.620273pt;}
.ws72{word-spacing:16.630900pt;}
.ws58{word-spacing:16.843436pt;}
.ws5b{word-spacing:16.864689pt;}
.ws6e{word-spacing:17.236626pt;}
.ws82{word-spacing:17.268507pt;}
.ws28{word-spacing:17.289760pt;}
.ws6b{word-spacing:17.342894pt;}
.ws4d{word-spacing:17.352904pt;}
.ws48{word-spacing:17.355855pt;}
.ws3b{word-spacing:17.358983pt;}
.ws15{word-spacing:17.374774pt;}
.ws32{word-spacing:17.396028pt;}
.wsa2{word-spacing:17.417281pt;}
.wsb4{word-spacing:17.491669pt;}
.ws1d{word-spacing:17.597937pt;}
.ws5c{word-spacing:17.605383pt;}
.ws30{word-spacing:17.608563pt;}
.wsb1{word-spacing:17.629817pt;}
.ws62{word-spacing:17.640302pt;}
.ws80{word-spacing:17.640307pt;}
.ws2e{word-spacing:17.640444pt;}
.ws9d{word-spacing:17.647380pt;}
.ws31{word-spacing:17.661697pt;}
.ws23{word-spacing:17.672324pt;}
.ws47{word-spacing:17.677637pt;}
.ws2d{word-spacing:17.682951pt;}
.ws64{word-spacing:17.688264pt;}
.ws6c{word-spacing:17.693578pt;}
.ws5e{word-spacing:17.695258pt;}
.ws1c{word-spacing:17.714831pt;}
.ws27{word-spacing:17.852979pt;}
.ws5a{word-spacing:17.874233pt;}
.ws87{word-spacing:17.927367pt;}
.ws2c{word-spacing:18.012381pt;}
.ws7a{word-spacing:18.065515pt;}
.ws21{word-spacing:18.118649pt;}
.ws78{word-spacing:18.288677pt;}
.ws89{word-spacing:18.331184pt;}
.ws77{word-spacing:18.352438pt;}
.ws91{word-spacing:18.405571pt;}
.ws2a{word-spacing:18.490586pt;}
.ws26{word-spacing:18.511839pt;}
.ws3e{word-spacing:18.564973pt;}
.wsb2{word-spacing:18.628734pt;}
.wsa3{word-spacing:18.687181pt;}
.ws4c{word-spacing:18.724375pt;}
.wsa6{word-spacing:18.735001pt;}
.ws4a{word-spacing:18.777508pt;}
.ws94{word-spacing:18.905030pt;}
.ws6a{word-spacing:18.915657pt;}
.wsb0{word-spacing:18.920970pt;}
.ws9e{word-spacing:18.952850pt;}
.ws79{word-spacing:18.958164pt;}
.wsb8{word-spacing:18.963477pt;}
.ws8e{word-spacing:18.968790pt;}
.wsa4{word-spacing:18.974104pt;}
.ws1b{word-spacing:19.138819pt;}
.ws1a{word-spacing:19.191953pt;}
.ws18{word-spacing:19.202579pt;}
.wsab{word-spacing:19.432593pt;}
.ws38{word-spacing:19.446995pt;}
.wsac{word-spacing:19.489502pt;}
.ws1e{word-spacing:19.627650pt;}
.ws2b{word-spacing:19.712665pt;}
.wsbe{word-spacing:19.812292pt;}
.ws14{word-spacing:19.840186pt;}
.wsbd{word-spacing:19.861439pt;}
.ws92{word-spacing:19.893320pt;}
.ws60{word-spacing:20.158989pt;}
.ws70{word-spacing:20.190869pt;}
.ws71{word-spacing:20.212123pt;}
.ws5d{word-spacing:20.305189pt;}
.ws2f{word-spacing:20.313649pt;}
.wsa0{word-spacing:20.382151pt;}
.ws17{word-spacing:20.403405pt;}
.ws52{word-spacing:20.509673pt;}
.ws29{word-spacing:20.584060pt;}
.ws20{word-spacing:20.615940pt;}
.ws75{word-spacing:20.722208pt;}
.ws8a{word-spacing:20.743462pt;}
.ws81{word-spacing:20.775342pt;}
.ws8f{word-spacing:20.849729pt;}
.ws55{word-spacing:20.913490pt;}
.ws56{word-spacing:20.924117pt;}
.wsbf{word-spacing:20.945370pt;}
.ws22{word-spacing:21.009131pt;}
.ws9f{word-spacing:21.136652pt;}
.ws8{word-spacing:21.146358pt;}
.ws4b{word-spacing:21.427570pt;}
.wsa5{word-spacing:22.231210pt;}
.wsc0{word-spacing:22.252463pt;}
.wsc3{word-spacing:22.571267pt;}
.wsba{word-spacing:22.635027pt;}
.ws3a{word-spacing:22.688161pt;}
.ws39{word-spacing:22.709415pt;}
.ws16{word-spacing:22.900697pt;}
.ws53{word-spacing:23.028218pt;}
.wsc1{word-spacing:23.118545pt;}
.wsc2{word-spacing:23.490482pt;}
.wsbb{word-spacing:23.575497pt;}
.wsb5{word-spacing:23.718958pt;}
.ws54{word-spacing:23.803972pt;}
.ws59{word-spacing:23.878519pt;}
.ws8c{word-spacing:24.229043pt;}
.wsaa{word-spacing:24.282177pt;}
.ws3f{word-spacing:24.356564pt;}
.ws1f{word-spacing:24.409698pt;}
.ws88{word-spacing:24.515966pt;}
.wsb6{word-spacing:24.542533pt;}
.ws25{word-spacing:24.813516pt;}
.wsa7{word-spacing:25.004798pt;}
.ws8d{word-spacing:25.047305pt;}
.ws46{word-spacing:25.111065pt;}
.ws44{word-spacing:25.153572pt;}
.wsae{word-spacing:25.642404pt;}
.wsa8{word-spacing:25.764612pt;}
.ws95{word-spacing:26.088729pt;}
.ws24{word-spacing:26.141862pt;}
.wsaf{word-spacing:26.280010pt;}
.ws96{word-spacing:26.763529pt;}
.ws45{word-spacing:27.764316pt;}
.ws51{word-spacing:28.615887pt;}
.wsad{word-spacing:32.921744pt;}
.wsa1{word-spacing:32.932371pt;}
.ws3{word-spacing:33.214280pt;}
.ws1{word-spacing:49.442002pt;}
.ws0{word-spacing:49.481661pt;}
.ws7d{word-spacing:54.791643pt;}
.ws5f{word-spacing:61.072066pt;}
.ws67{word-spacing:63.705799pt;}
.ws69{word-spacing:63.707506pt;}
.ws73{word-spacing:63.711133pt;}
.ws7e{word-spacing:65.885995pt;}
.ws68{word-spacing:66.354246pt;}
.ws43{word-spacing:71.699319pt;}
.ws12{word-spacing:86.038943pt;}
.ws74{word-spacing:107.863580pt;}
.ws66{word-spacing:111.169189pt;}
.ws37{word-spacing:132.313955pt;}
.ws63{word-spacing:166.666881pt;}
.ws7b{word-spacing:188.786755pt;}
.ws84{word-spacing:188.792089pt;}
.ws34{word-spacing:439.614551pt;}
.ws50{word-spacing:496.994246pt;}
.ws49{word-spacing:556.636913pt;}
._3{margin-left:-73.303717pt;}
._2b{margin-left:-54.834150pt;}
._7{margin-left:-50.251200pt;}
._14{margin-left:-43.146196pt;}
._23{margin-left:-37.663662pt;}
._32{margin-left:-35.591427pt;}
._10{margin-left:-28.541843pt;}
._16{margin-left:-27.177973pt;}
._15{margin-left:-26.078102pt;}
._a{margin-left:-24.434835pt;}
._12{margin-left:-21.666042pt;}
._13{margin-left:-20.713665pt;}
._9{margin-left:-19.085281pt;}
._0{margin-left:-12.373720pt;}
._6{margin-left:-8.430300pt;}
._1e{margin-left:-6.598366pt;}
._8{margin-left:-5.373464pt;}
._1a{margin-left:-4.399484pt;}
._5{margin-left:-2.732960pt;}
._2{margin-left:-0.991484pt;}
._1{width:1.004704pt;}
._c{width:1.893704pt;}
._b{width:3.108352pt;}
._21{width:5.264577pt;}
._1b{width:7.620037pt;}
._4{width:8.936576pt;}
._f{width:11.811738pt;}
._e{width:14.162131pt;}
._1f{width:16.258765pt;}
._d{width:17.416335pt;}
._18{width:18.649513pt;}
._11{width:19.702170pt;}
._17{width:22.003769pt;}
._41{width:24.074811pt;}
._19{width:25.774291pt;}
._40{width:31.320974pt;}
._3f{width:52.967063pt;}
._28{width:63.760640pt;}
._22{width:71.858722pt;}
._2d{width:82.676297pt;}
._20{width:86.153713pt;}
._1c{width:102.229559pt;}
._29{width:111.039155pt;}
._36{width:112.981392pt;}
._2a{width:116.894507pt;}
._1d{width:128.158886pt;}
._2c{width:132.494610pt;}
._37{width:148.509157pt;}
._38{width:155.894765pt;}
._3e{width:158.036004pt;}
._2f{width:171.014202pt;}
._25{width:173.367889pt;}
._3a{width:181.834238pt;}
._24{width:185.157600pt;}
._31{width:191.813259pt;}
._2e{width:196.914110pt;}
._39{width:198.029921pt;}
._33{width:228.760838pt;}
._27{width:240.615637pt;}
._26{width:258.973526pt;}
._35{width:270.290304pt;}
._3c{width:276.083571pt;}
._30{width:282.130304pt;}
._3b{width:305.572867pt;}
._3d{width:311.799637pt;}
._34{width:338.114860pt;}
.fs6{font-size:26.566933pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs7{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:119.153333pt;}
.y50{bottom:159.004000pt;}
.y10{bottom:162.352000pt;}
.y33{bottom:168.200000pt;}
.yab{bottom:168.566667pt;}
.y6b{bottom:176.701333pt;}
.yf{bottom:178.425333pt;}
.yc5{bottom:179.112000pt;}
.yaa{bottom:186.101333pt;}
.y4f{bottom:186.928000pt;}
.y6a{bottom:194.236000pt;}
.y8b{bottom:194.460000pt;}
.ye{bottom:194.498667pt;}
.yf6{bottom:195.792000pt;}
.y32{bottom:196.360000pt;}
.yc4{bottom:196.646667pt;}
.y69{bottom:211.769333pt;}
.y8a{bottom:211.993333pt;}
.yf5{bottom:213.326667pt;}
.yc3{bottom:214.180000pt;}
.ya9{bottom:214.262667pt;}
.y4e{bottom:214.613333pt;}
.y31{bottom:224.521333pt;}
.yd{bottom:226.645333pt;}
.y68{bottom:229.304000pt;}
.yd9{bottom:229.414667pt;}
.y89{bottom:229.528000pt;}
.yc2{bottom:231.714667pt;}
.ya8{bottom:231.797333pt;}
.y4d{bottom:239.762667pt;}
.yf4{bottom:241.488000pt;}
.yc{bottom:242.718667pt;}
.yd8{bottom:246.949333pt;}
.y88{bottom:247.062667pt;}
.yc1{bottom:249.249333pt;}
.ya7{bottom:249.332000pt;}
.y30{bottom:252.682667pt;}
.y67{bottom:255.417333pt;}
.y4c{bottom:257.297333pt;}
.yb{bottom:258.790667pt;}
.yf3{bottom:259.022667pt;}
.yd7{bottom:264.484000pt;}
.y87{bottom:264.597333pt;}
.yc0{bottom:266.784000pt;}
.ya6{bottom:266.865333pt;}
.y4b{bottom:274.830667pt;}
.ya{bottom:274.864000pt;}
.yf2{bottom:276.556000pt;}
.y2f{bottom:280.844000pt;}
.yd6{bottom:282.017333pt;}
.y86{bottom:282.130667pt;}
.ybf{bottom:284.317333pt;}
.ya5{bottom:284.400000pt;}
.y9{bottom:290.937333pt;}
.y66{bottom:291.540000pt;}
.y2e{bottom:298.378667pt;}
.yd5{bottom:299.552000pt;}
.y85{bottom:299.665333pt;}
.y4a{bottom:300.944000pt;}
.ybe{bottom:301.852000pt;}
.yf1{bottom:304.717333pt;}
.ya4{bottom:310.513333pt;}
.y8{bottom:313.221333pt;}
.y84{bottom:313.268000pt;}
.ybd{bottom:315.454667pt;}
.yd4{bottom:317.086667pt;}
.y65{bottom:319.701333pt;}
.yf0{bottom:322.252000pt;}
.y2d{bottom:326.540000pt;}
.yd3{bottom:334.621333pt;}
.yef{bottom:339.786667pt;}
.y49{bottom:339.886667pt;}
.ya3{bottom:346.634667pt;}
.y64{bottom:347.861333pt;}
.yd2{bottom:352.154667pt;}
.y2c{bottom:354.701333pt;}
.y48{bottom:367.573333pt;}
.yee{bottom:367.948000pt;}
.yd1{bottom:369.689333pt;}
.y83{bottom:372.917333pt;}
.ybc{bottom:372.918667pt;}
.ya2{bottom:374.796000pt;}
.y63{bottom:376.022667pt;}
.y2b{bottom:382.861333pt;}
.y47{bottom:385.108000pt;}
.yed{bottom:385.481333pt;}
.yd0{bottom:387.224000pt;}
.y82{bottom:390.450667pt;}
.ybb{bottom:390.453333pt;}
.y7{bottom:402.885333pt;}
.ya1{bottom:402.957333pt;}
.yec{bottom:403.016000pt;}
.y62{bottom:404.184000pt;}
.ycf{bottom:404.758667pt;}
.y81{bottom:407.985333pt;}
.yba{bottom:407.986667pt;}
.y46{bottom:413.030667pt;}
.y2a{bottom:413.550667pt;}
.y6{bottom:418.957333pt;}
.yeb{bottom:420.550667pt;}
.y61{bottom:421.718667pt;}
.yce{bottom:422.292000pt;}
.y80{bottom:425.520000pt;}
.yb9{bottom:425.521333pt;}
.ya0{bottom:431.118667pt;}
.ycd{bottom:439.826667pt;}
.y45{bottom:440.717333pt;}
.y7f{bottom:443.054667pt;}
.yb8{bottom:443.056000pt;}
.y5{bottom:444.632000pt;}
.yea{bottom:448.712000pt;}
.y60{bottom:456.786667pt;}
.ycc{bottom:457.361333pt;}
.y44{bottom:458.252000pt;}
.y29{bottom:459.869333pt;}
.y7e{bottom:460.588000pt;}
.yb7{bottom:460.590667pt;}
.y9f{bottom:461.936000pt;}
.ye9{bottom:466.245333pt;}
.y5f{bottom:474.321333pt;}
.ycb{bottom:474.896000pt;}
.y28{bottom:477.404000pt;}
.y7d{bottom:478.122667pt;}
.yb6{bottom:478.124000pt;}
.y9e{bottom:479.470667pt;}
.y43{bottom:483.400000pt;}
.ye8{bottom:483.780000pt;}
.y5e{bottom:491.856000pt;}
.y7c{bottom:494.308000pt;}
.y27{bottom:494.938667pt;}
.yb5{bottom:495.658667pt;}
.y9d{bottom:497.005333pt;}
.yca{bottom:505.584000pt;}
.yb4{bottom:511.844000pt;}
.ye7{bottom:511.941333pt;}
.y26{bottom:512.472000pt;}
.y9c{bottom:514.540000pt;}
.y5d{bottom:517.969333pt;}
.y42{bottom:518.469333pt;}
.y4{bottom:529.161333pt;}
.ye6{bottom:529.476000pt;}
.y25{bottom:530.006667pt;}
.y41{bottom:536.004000pt;}
.y9b{bottom:540.653333pt;}
.y7b{bottom:545.966667pt;}
.ye5{bottom:547.010667pt;}
.y24{bottom:547.541333pt;}
.yc9{bottom:550.694667pt;}
.y40{bottom:553.537333pt;}
.y5c{bottom:557.013333pt;}
.yb3{bottom:560.962667pt;}
.y3{bottom:561.308000pt;}
.y7a{bottom:563.500000pt;}
.y23{bottom:565.076000pt;}
.yc8{bottom:568.229333pt;}
.y5b{bottom:574.548000pt;}
.ye4{bottom:575.170667pt;}
.yb2{bottom:578.497333pt;}
.y79{bottom:581.034667pt;}
.y22{bottom:582.609333pt;}
.y3f{bottom:584.226667pt;}
.y9a{bottom:585.764000pt;}
.y5a{bottom:592.082667pt;}
.ye3{bottom:592.705333pt;}
.y2{bottom:593.454667pt;}
.yb1{bottom:596.032000pt;}
.y21{bottom:600.144000pt;}
.y99{bottom:603.298667pt;}
.y102{bottom:605.860000pt;}
.y78{bottom:609.196000pt;}
.y59{bottom:609.616000pt;}
.ye2{bottom:610.240000pt;}
.y20{bottom:617.678667pt;}
.y98{bottom:620.832000pt;}
.yb0{bottom:623.100000pt;}
.y101{bottom:623.394667pt;}
.y1{bottom:625.600000pt;}
.y58{bottom:627.150667pt;}
.y1f{bottom:635.213333pt;}
.y77{bottom:637.357333pt;}
.y97{bottom:638.366667pt;}
.ye1{bottom:638.401333pt;}
.yaf{bottom:640.634667pt;}
.y100{bottom:640.929333pt;}
.y57{bottom:644.685333pt;}
.y3e{bottom:649.354667pt;}
.y1e{bottom:652.746667pt;}
.y76{bottom:654.892000pt;}
.y96{bottom:655.901333pt;}
.ye0{bottom:655.936000pt;}
.y56{bottom:662.220000pt;}
.y3d{bottom:666.889333pt;}
.yae{bottom:667.702667pt;}
.yff{bottom:669.089333pt;}
.y1d{bottom:670.281333pt;}
.y95{bottom:673.436000pt;}
.ydf{bottom:673.469333pt;}
.y75{bottom:683.053333pt;}
.y3c{bottom:684.424000pt;}
.yad{bottom:685.237333pt;}
.yfe{bottom:686.624000pt;}
.yc7{bottom:687.037333pt;}
.y1c{bottom:687.816000pt;}
.y94{bottom:690.969333pt;}
.y55{bottom:692.908000pt;}
.y74{bottom:700.586667pt;}
.yde{bottom:701.630667pt;}
.y3b{bottom:701.958667pt;}
.y93{bottom:704.572000pt;}
.y1b{bottom:705.350667pt;}
.yfd{bottom:714.785333pt;}
.ydd{bottom:719.165333pt;}
.y3a{bottom:720.024000pt;}
.y1a{bottom:722.885333pt;}
.yac{bottom:728.164000pt;}
.yc6{bottom:730.746667pt;}
.yfc{bottom:732.320000pt;}
.ydc{bottom:736.700000pt;}
.y39{bottom:738.089333pt;}
.y54{bottom:739.226667pt;}
.y19{bottom:740.418667pt;}
.y73{bottom:745.697333pt;}
.y92{bottom:748.281333pt;}
.yfb{bottom:749.854667pt;}
.y38{bottom:752.222667pt;}
.y18{bottom:757.953333pt;}
.y72{bottom:763.232000pt;}
.ydb{bottom:764.861333pt;}
.y91{bottom:765.814667pt;}
.y53{bottom:774.296000pt;}
.y17{bottom:775.488000pt;}
.yfa{bottom:778.014667pt;}
.y71{bottom:780.766667pt;}
.yda{bottom:782.394667pt;}
.y90{bottom:783.349333pt;}
.y16{bottom:793.022667pt;}
.yf9{bottom:795.549333pt;}
.y70{bottom:798.301333pt;}
.y8f{bottom:800.884000pt;}
.y52{bottom:802.457333pt;}
.y37{bottom:803.169333pt;}
.y15{bottom:810.556000pt;}
.yf8{bottom:813.084000pt;}
.y6f{bottom:815.834667pt;}
.y8e{bottom:818.418667pt;}
.y14{bottom:828.090667pt;}
.y51{bottom:830.618667pt;}
.y36{bottom:831.093333pt;}
.y6e{bottom:833.369333pt;}
.y8d{bottom:835.952000pt;}
.yf7{bottom:841.245333pt;}
.y13{bottom:845.625333pt;}
.y6d{bottom:850.904000pt;}
.y8c{bottom:853.486667pt;}
.y35{bottom:858.780000pt;}
.y6c{bottom:867.089333pt;}
.y12{bottom:876.313333pt;}
.y11{bottom:925.994667pt;}
.h9{height:16.099562pt;}
.h5{height:27.895200pt;}
.h4{height:32.805069pt;}
.h3{height:35.865600pt;}
.he{height:36.928037pt;}
.h7{height:39.850400pt;}
.hc{height:44.887791pt;}
.h10{height:45.427101pt;}
.h11{height:45.432434pt;}
.hb{height:47.175200pt;}
.hf{height:47.180533pt;}
.hd{height:49.831200pt;}
.ha{height:49.836533pt;}
.h8{height:53.279733pt;}
.h6{height:53.865199pt;}
.h2{height:77.911400pt;}
.h1{height:93.067298pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:178.357333pt;}
.x20{left:185.000000pt;}
.x1e{left:191.961333pt;}
.x1f{left:194.174667pt;}
.x1d{left:197.496000pt;}
.x19{left:202.338667pt;}
.x1a{left:204.553333pt;}
.x21{left:205.662667pt;}
.x18{left:207.873333pt;}
.x8{left:211.566667pt;}
.x17{left:222.256000pt;}
.x1c{left:225.612000pt;}
.x2{left:226.694667pt;}
.x5{left:229.232000pt;}
.x9{left:231.185333pt;}
.x13{left:232.633333pt;}
.x1{left:235.349333pt;}
.x16{left:244.837333pt;}
.x4{left:255.441333pt;}
.xd{left:258.954667pt;}
.x10{left:265.320000pt;}
.xe{left:270.669333pt;}
.x22{left:295.308000pt;}
.x1b{left:316.653333pt;}
.x12{left:318.932000pt;}
.x14{left:324.162667pt;}
.x6{left:329.629333pt;}
.xb{left:334.697333pt;}
.x3{left:336.646667pt;}
.x11{left:340.690667pt;}
.x15{left:349.862667pt;}
.x7{left:379.162667pt;}
.x24{left:400.856000pt;}
.xc{left:404.177333pt;}
.xf{left:517.501333pt;}
.x23{left:567.772000pt;}
}




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