
    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_f729a1c04ac0a931d64240e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_1efaab6109d2e436ab26e84f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_e00d95e272d4109badc837b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.887000;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_80fabc6d3673de9d485b5ee8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_8300702a24422d3fde057b09.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_af55615a7d36448c3e57b45d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_53279acec55b6b14be3daa8c.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_6e95af5ef23fc217954a4fbb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_d6fc13babae67d6a53bd2579.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_5490f49c3c729c6da67c1328.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.389000;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_53902ff769cbfb8044f5dbed.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e42255f55ae652ff90b4c3df.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.399000;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);}
.v15{vertical-align:-72.654000px;}
.v16{vertical-align:-60.576000px;}
.vf{vertical-align:-53.016000px;}
.v2{vertical-align:-23.754000px;}
.v12{vertical-align:-14.988000px;}
.v3{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:10.668000px;}
.v4{vertical-align:12.078000px;}
.vc{vertical-align:16.176000px;}
.v11{vertical-align:18.336000px;}
.v19{vertical-align:20.604000px;}
.v13{vertical-align:22.542000px;}
.v8{vertical-align:23.754000px;}
.vb{vertical-align:27.030000px;}
.v1{vertical-align:31.236000px;}
.v9{vertical-align:34.824000px;}
.v5{vertical-align:44.280000px;}
.v14{vertical-align:51.006000px;}
.v7{vertical-align:53.022000px;}
.v18{vertical-align:74.676000px;}
.v17{vertical-align:90.984000px;}
.v6{vertical-align:92.292000px;}
.vd{vertical-align:107.076000px;}
.v10{vertical-align:152.304000px;}
.ve{vertical-align:181.572000px;}
.ls2{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.001026px;}
.ls57{letter-spacing:0.001590px;}
.ls18{letter-spacing:0.001593px;}
.ls20{letter-spacing:0.002157px;}
.ls5b{letter-spacing:0.002238px;}
.ls3f{letter-spacing:0.002706px;}
.ls45{letter-spacing:0.004338px;}
.ls26{letter-spacing:0.004344px;}
.ls52{letter-spacing:0.010623px;}
.lse{letter-spacing:0.010726px;}
.lsd{letter-spacing:0.011257px;}
.ls59{letter-spacing:0.012890px;}
.ls4a{letter-spacing:0.013434px;}
.ls51{letter-spacing:0.015595px;}
.ls53{letter-spacing:0.016034px;}
.ls4d{letter-spacing:0.016040px;}
.ls4f{letter-spacing:0.016463px;}
.ls54{letter-spacing:0.016611px;}
.ls47{letter-spacing:0.019540px;}
.ls2d{letter-spacing:0.020006px;}
.ls55{letter-spacing:0.020803px;}
.ls31{letter-spacing:0.021111px;}
.ls10{letter-spacing:0.021313px;}
.ls5a{letter-spacing:0.023342px;}
.lsb{letter-spacing:0.024962px;}
.ls1{letter-spacing:0.025337px;}
.ls21{letter-spacing:0.027668px;}
.ls32{letter-spacing:0.029594px;}
.ls16{letter-spacing:0.030962px;}
.ls2f{letter-spacing:0.034778px;}
.ls2a{letter-spacing:0.047821px;}
.ls50{letter-spacing:0.211891px;}
.ls7{letter-spacing:0.904881px;}
.ls1f{letter-spacing:0.908706px;}
.ls14{letter-spacing:0.914682px;}
.ls44{letter-spacing:0.921173px;}
.lsf{letter-spacing:0.937593px;}
.ls24{letter-spacing:1.820137px;}
.ls40{letter-spacing:2.349242px;}
.ls25{letter-spacing:2.880002px;}
.ls2c{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.986053px;}
.ls38{letter-spacing:2.989289px;}
.ls33{letter-spacing:2.995289px;}
.ls34{letter-spacing:4.259644px;}
.ls39{letter-spacing:4.265644px;}
.ls2e{letter-spacing:5.825459px;}
.ls19{letter-spacing:6.484812px;}
.ls3b{letter-spacing:7.152445px;}
.ls35{letter-spacing:9.092147px;}
.ls4b{letter-spacing:9.098189px;}
.ls3e{letter-spacing:9.114423px;}
.ls1c{letter-spacing:10.906869px;}
.ls22{letter-spacing:10.910157px;}
.ls1b{letter-spacing:10.930918px;}
.lsa{letter-spacing:14.530921px;}
.ls43{letter-spacing:18.080700px;}
.ls3c{letter-spacing:18.086700px;}
.ls8{letter-spacing:18.196379px;}
.ls48{letter-spacing:19.622915px;}
.ls13{letter-spacing:21.796382px;}
.ls6{letter-spacing:21.861836px;}
.ls37{letter-spacing:22.445644px;}
.ls58{letter-spacing:24.087293px;}
.ls1e{letter-spacing:24.152747px;}
.ls56{letter-spacing:24.806915px;}
.ls4{letter-spacing:28.210933px;}
.ls12{letter-spacing:31.549117px;}
.ls3{letter-spacing:31.810936px;}
.ls5{letter-spacing:32.727300px;}
.ls11{letter-spacing:33.381846px;}
.ls3d{letter-spacing:68.455289px;}
.ls27{letter-spacing:71.261412px;}
.ls1a{letter-spacing:74.878869px;}
.ls15{letter-spacing:93.041377px;}
.ls9{letter-spacing:103.277377px;}
.ls36{letter-spacing:128.869289px;}
.ls41{letter-spacing:578.749573px;}
.ls46{letter-spacing:644.007809px;}
.ls30{letter-spacing:662.793280px;}
.ls3a{letter-spacing:677.258746px;}
.ls4e{letter-spacing:730.080608px;}
.ls1d{letter-spacing:808.495219px;}
.ls4c{letter-spacing:816.742499px;}
.ls23{letter-spacing:828.131599px;}
.ls2b{letter-spacing:864.458902px;}
.ls42{letter-spacing:906.218937px;}
.ls29{letter-spacing:952.953521px;}
.ls49{letter-spacing:967.549897px;}
.ls17{letter-spacing:974.749903px;}
.lsc{letter-spacing:984.960821px;}
.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;}
}
.ws4c{word-spacing:-65.454600px;}
.ws67{word-spacing:-51.820407px;}
.ws5e{word-spacing:-47.323676px;}
.ws27{word-spacing:-42.637126px;}
.ws44{word-spacing:-32.714209px;}
.ws5f{word-spacing:-18.183288px;}
.wsd{word-spacing:-14.111859px;}
.ws64{word-spacing:-7.252370px;}
.ws9{word-spacing:-3.325094px;}
.wsa0{word-spacing:-3.259639px;}
.ws8b{word-spacing:-2.736002px;}
.ws55{word-spacing:-2.539638px;}
.ws1a{word-spacing:-1.950547px;}
.ws6e{word-spacing:-1.557819px;}
.ws46{word-spacing:-1.492365px;}
.ws68{word-spacing:-1.426910px;}
.ws84{word-spacing:-1.361456px;}
.ws94{word-spacing:-1.034183px;}
.ws5d{word-spacing:-0.706910px;}
.ws5c{word-spacing:-0.641455px;}
.ws11{word-spacing:-0.510546px;}
.wsb{word-spacing:-0.445091px;}
.ws2d{word-spacing:-0.117818px;}
.ws73{word-spacing:-0.091636px;}
.ws13{word-spacing:-0.071731px;}
.wsa5{word-spacing:-0.059776px;}
.ws62{word-spacing:-0.052364px;}
.ws69{word-spacing:-0.047821px;}
.ws12{word-spacing:0.000000px;}
.ws72{word-spacing:0.013091px;}
.ws78{word-spacing:0.274909px;}
.ws89{word-spacing:0.602182px;}
.ws1d{word-spacing:0.798546px;}
.ws81{word-spacing:0.864001px;}
.ws34{word-spacing:1.125819px;}
.ws2e{word-spacing:1.584001px;}
.ws37{word-spacing:1.649456px;}
.ws31{word-spacing:1.780365px;}
.wsa{word-spacing:1.976729px;}
.ws2f{word-spacing:2.042184px;}
.ws90{word-spacing:2.238547px;}
.ws1c{word-spacing:2.369457px;}
.ws57{word-spacing:2.434911px;}
.ws59{word-spacing:2.500366px;}
.wsa3{word-spacing:2.642082px;}
.ws23{word-spacing:2.696730px;}
.ws56{word-spacing:2.853821px;}
.ws53{word-spacing:2.893093px;}
.wsa1{word-spacing:3.299613px;}
.wsf{word-spacing:3.482185px;}
.ws7c{word-spacing:3.547639px;}
.ws5{word-spacing:3.613094px;}
.ws15{word-spacing:3.678549px;}
.wse{word-spacing:3.874912px;}
.ws1f{word-spacing:3.940367px;}
.ws9f{word-spacing:4.005822px;}
.ws3f{word-spacing:4.071276px;}
.ws60{word-spacing:4.136731px;}
.ws14{word-spacing:4.162913px;}
.ws17{word-spacing:4.228367px;}
.ws1b{word-spacing:4.267640px;}
.ws1e{word-spacing:4.529458px;}
.ws49{word-spacing:4.725822px;}
.ws98{word-spacing:4.856731px;}
.ws8e{word-spacing:4.987641px;}
.ws2b{word-spacing:5.118550px;}
.ws3c{word-spacing:5.184004px;}
.ws2a{word-spacing:5.249459px;}
.ws38{word-spacing:5.380368px;}
.ws3b{word-spacing:5.642187px;}
.ws10{word-spacing:5.707641px;}
.ws8d{word-spacing:5.733823px;}
.ws25{word-spacing:5.838550px;}
.ws85{word-spacing:5.904005px;}
.ws7d{word-spacing:6.100369px;}
.ws7f{word-spacing:6.165823px;}
.ws29{word-spacing:6.296733px;}
.ws87{word-spacing:6.427642px;}
.ws54{word-spacing:6.558551px;}
.ws20{word-spacing:6.820369px;}
.ws22{word-spacing:7.016733px;}
.ws6f{word-spacing:7.036488px;}
.ws4b{word-spacing:7.039430px;}
.ws42{word-spacing:7.052943px;}
.ws65{word-spacing:7.060007px;}
.ws6b{word-spacing:7.065281px;}
.ws92{word-spacing:7.147642px;}
.ws7b{word-spacing:7.278552px;}
.ws79{word-spacing:7.344006px;}
.ws9a{word-spacing:7.540370px;}
.ws51{word-spacing:7.736734px;}
.ws8a{word-spacing:7.998552px;}
.ws91{word-spacing:8.221098px;}
.ws2c{word-spacing:8.260371px;}
.ws43{word-spacing:8.325825px;}
.ws61{word-spacing:8.587644px;}
.ws97{word-spacing:8.980371px;}
.ws4a{word-spacing:9.045826px;}
.ws45{word-spacing:9.111280px;}
.ws9b{word-spacing:9.307644px;}
.ws3e{word-spacing:9.504008px;}
.ws26{word-spacing:9.634917px;}
.ws99{word-spacing:9.700372px;}
.ws32{word-spacing:10.027645px;}
.ws9e{word-spacing:10.224009px;}
.ws8{word-spacing:10.289463px;}
.ws5a{word-spacing:10.354918px;}
.ws63{word-spacing:10.672488px;}
.ws77{word-spacing:10.682191px;}
.ws35{word-spacing:10.834046px;}
.ws71{word-spacing:10.840046px;}
.ws6{word-spacing:10.878555px;}
.ws9c{word-spacing:11.140373px;}
.ws82{word-spacing:11.710046px;}
.ws9d{word-spacing:11.991283px;}
.ws47{word-spacing:12.122192px;}
.ws75{word-spacing:12.514920px;}
.ws3d{word-spacing:12.580374px;}
.ws50{word-spacing:12.776738px;}
.ws88{word-spacing:12.808046px;}
.ws95{word-spacing:12.856046px;}
.ws8f{word-spacing:13.060046px;}
.ws58{word-spacing:13.318046px;}
.ws5b{word-spacing:13.330046px;}
.ws41{word-spacing:13.365829px;}
.ws4d{word-spacing:13.496739px;}
.ws4f{word-spacing:13.562193px;}
.ws40{word-spacing:13.627648px;}
.ws70{word-spacing:13.954921px;}
.ws96{word-spacing:14.216739px;}
.ws80{word-spacing:14.413103px;}
.ws74{word-spacing:14.439285px;}
.ws3a{word-spacing:14.476046px;}
.ws8c{word-spacing:14.544012px;}
.ws7e{word-spacing:15.028046px;}
.ws39{word-spacing:16.252046px;}
.ws93{word-spacing:16.738046px;}
.wsc{word-spacing:19.570925px;}
.ws7a{word-spacing:20.254046px;}
.wsa4{word-spacing:20.682358px;}
.ws28{word-spacing:20.848046px;}
.ws33{word-spacing:20.866046px;}
.ws36{word-spacing:21.010927px;}
.wsa2{word-spacing:21.339889px;}
.ws30{word-spacing:21.861836px;}
.ws24{word-spacing:22.516382px;}
.ws76{word-spacing:23.356046px;}
.ws48{word-spacing:23.876957px;}
.ws86{word-spacing:25.396385px;}
.ws3{word-spacing:26.253619px;}
.ws19{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws4e{word-spacing:32.465482px;}
.ws21{word-spacing:33.512755px;}
.ws66{word-spacing:37.015253px;}
.ws18{word-spacing:39.639306px;}
.ws16{word-spacing:48.711313px;}
.ws6c{word-spacing:53.318957px;}
.ws2{word-spacing:54.283749px;}
.ws52{word-spacing:54.366591px;}
.ws1{word-spacing:54.432472px;}
.ws7{word-spacing:77.491970px;}
.ws83{word-spacing:80.625869px;}
.ws6d{word-spacing:99.176957px;}
.ws6a{word-spacing:117.356957px;}
._1{margin-left:-13.682479px;}
._4{margin-left:-5.432732px;}
._6{margin-left:-3.338185px;}
._2{margin-left:-2.223667px;}
._5{margin-left:-1.112728px;}
._2b{width:1.116307px;}
._3{width:2.223667px;}
._37{width:3.280713px;}
._0{width:4.312955px;}
._38{width:5.744777px;}
._8{width:6.765905px;}
._3e{width:16.298195px;}
._39{width:17.672742px;}
._34{width:18.716437px;}
._2d{width:21.007348px;}
._7{width:23.498201px;}
._2c{width:25.396385px;}
._29{width:26.574568px;}
._31{width:27.752750px;}
._9{width:29.520025px;}
._36{width:31.087357px;}
._33{width:32.465482px;}
._a{width:34.954546px;}
._35{width:37.174634px;}
._2f{width:40.054637px;}
._3b{width:41.232820px;}
._3d{width:42.869185px;}
._32{width:44.438306px;}
._2a{width:47.127312px;}
._3c{width:52.034618px;}
._2e{width:56.745560px;}
._b{width:60.545505px;}
._3a{width:65.447956px;}
._f{width:66.894601px;}
._30{width:75.272790px;}
._28{width:80.697600px;}
._e{width:653.693301px;}
._15{width:955.640738px;}
._16{width:1093.353638px;}
._12{width:1210.317430px;}
._13{width:1237.024696px;}
._1b{width:1354.713856px;}
._d{width:1408.124810px;}
._22{width:1410.610295px;}
._c{width:1429.010195px;}
._1e{width:1433.255798px;}
._23{width:1457.997637px;}
._11{width:1464.543097px;}
._1c{width:1540.666796px;}
._26{width:1570.059490px;}
._17{width:1574.972164px;}
._1d{width:1610.770462px;}
._18{width:1753.203250px;}
._20{width:1776.501509px;}
._1a{width:1795.219736px;}
._1f{width:1818.914301px;}
._24{width:1825.263397px;}
._19{width:1830.570587px;}
._10{width:1856.947002px;}
._25{width:2028.567174px;}
._14{width:2073.994456px;}
._27{width:2134.278142px;}
._21{width:2251.989534px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y36{bottom:93.813000px;}
.y5e{bottom:176.005500px;}
.y35{bottom:176.059500px;}
.y115{bottom:181.630500px;}
.y83{bottom:196.329000px;}
.y34{bottom:196.383000px;}
.y114{bottom:199.563000px;}
.y5d{bottom:209.595000px;}
.yf4{bottom:212.460000px;}
.y82{bottom:216.652500px;}
.y33{bottom:216.708000px;}
.ya7{bottom:219.039000px;}
.yab{bottom:222.243000px;}
.y113{bottom:224.968500px;}
.yaa{bottom:227.527500px;}
.ya6{bottom:227.844000px;}
.yf3{bottom:232.783500px;}
.yd4{bottom:236.976000px;}
.y32{bottom:237.031500px;}
.y81{bottom:238.945500px;}
.ya5{bottom:239.068500px;}
.y112{bottom:242.901000px;}
.y5c{bottom:242.907000px;}
.ya8{bottom:246.594000px;}
.y80{bottom:250.170000px;}
.ya9{bottom:251.178000px;}
.yf2{bottom:253.107000px;}
.y5b{bottom:263.230500px;}
.yd3{bottom:264.697500px;}
.ya4{bottom:269.884500px;}
.y31{bottom:273.559500px;}
.y111{bottom:277.038000px;}
.y7f{bottom:277.188000px;}
.yf1{bottom:281.886000px;}
.y5a{bottom:283.555500px;}
.ya3{bottom:294.955500px;}
.y7e{bottom:297.513000px;}
.ya2{bottom:298.999500px;}
.yd2{bottom:299.461500px;}
.y59{bottom:303.879000px;}
.yd1{bottom:314.502000px;}
.yf0{bottom:318.414000px;}
.y30{bottom:319.140000px;}
.yd0{bottom:319.786500px;}
.y110{bottom:322.618500px;}
.y58{bottom:324.202500px;}
.y7d{bottom:324.901500px;}
.ya1{bottom:328.116000px;}
.yef{bottom:338.737500px;}
.ycf{bottom:340.110000px;}
.y10f{bottom:342.942000px;}
.y57{bottom:344.526000px;}
.ya0{bottom:355.092000px;}
.y7c{bottom:359.116500px;}
.y10e{bottom:363.267000px;}
.y2f{bottom:365.667000px;}
.yce{bottom:367.830000px;}
.yee{bottom:372.511500px;}
.y56{bottom:375.936000px;}
.y12{bottom:377.091000px;}
.y7b{bottom:379.440000px;}
.y10d{bottom:383.590500px;}
.y55{bottom:387.160500px;}
.y9f{bottom:388.615500px;}
.y11{bottom:397.416000px;}
.y7a{bottom:399.763500px;}
.y2e{bottom:402.354000px;}
.ycd{bottom:402.595500px;}
.y10c{bottom:403.914000px;}
.yed{bottom:406.284000px;}
.y9e{bottom:417.732000px;}
.y10{bottom:417.739500px;}
.ycc{bottom:422.919000px;}
.y10b{bottom:424.237500px;}
.yec{bottom:426.607500px;}
.y54{bottom:430.156500px;}
.y79{bottom:430.635000px;}
.y53{bottom:433.176000px;}
.yf{bottom:438.063000px;}
.y2d{bottom:439.042500px;}
.y10a{bottom:444.561000px;}
.y9d{bottom:446.848500px;}
.y52{bottom:450.480000px;}
.ycb{bottom:458.037000px;}
.ye{bottom:458.386500px;}
.yeb{bottom:460.381500px;}
.y78{bottom:461.508000px;}
.y109{bottom:464.886000px;}
.y51{bottom:470.803500px;}
.y9c{bottom:473.824500px;}
.y2c{bottom:475.729500px;}
.yd{bottom:478.710000px;}
.yea{bottom:480.705000px;}
.y77{bottom:481.831500px;}
.y50{bottom:491.127000px;}
.y2b{bottom:496.053000px;}
.yc{bottom:499.035000px;}
.yca{bottom:501.150000px;}
.y108{bottom:501.414000px;}
.y9b{bottom:507.348000px;}
.y76{bottom:509.221500px;}
.y4f{bottom:511.452000px;}
.ye9{bottom:514.479000px;}
.y2a{bottom:516.376500px;}
.yb{bottom:519.358500px;}
.yc9{bottom:521.473500px;}
.y9a{bottom:527.671500px;}
.y4e{bottom:531.775500px;}
.y29{bottom:536.701500px;}
.ya{bottom:539.682000px;}
.ye8{bottom:543.256500px;}
.y75{bottom:543.435000px;}
.y107{bottom:546.994500px;}
.y99{bottom:547.996500px;}
.yc8{bottom:553.750500px;}
.y28{bottom:557.025000px;}
.y9{bottom:560.005500px;}
.y74{bottom:563.758500px;}
.y4d{bottom:568.129500px;}
.y98{bottom:568.320000px;}
.yc7{bottom:574.074000px;}
.ye7{bottom:579.784500px;}
.y106{bottom:580.767000px;}
.y73{bottom:584.082000px;}
.y27{bottom:593.712000px;}
.y97{bottom:595.720500px;}
.y8{bottom:599.757000px;}
.ye6{bottom:600.109500px;}
.yc6{bottom:606.352500px;}
.y72{bottom:611.809500px;}
.y4c{bottom:613.407000px;}
.y26{bottom:614.035500px;}
.y105{bottom:614.541000px;}
.y96{bottom:616.045500px;}
.ye5{bottom:620.433000px;}
.y71{bottom:623.034000px;}
.y4b{bottom:633.730500px;}
.y25{bottom:634.359000px;}
.yc5{bottom:636.385500px;}
.y7{bottom:636.480000px;}
.y95{bottom:647.269500px;}
.y104{bottom:648.315000px;}
.y4a{bottom:654.054000px;}
.ye4{bottom:654.205500px;}
.y24{bottom:654.684000px;}
.y70{bottom:661.986000px;}
.yc4{bottom:664.179000px;}
.y6{bottom:665.211000px;}
.y94{bottom:674.671500px;}
.y23{bottom:675.007500px;}
.y103{bottom:682.087500px;}
.yc3{bottom:684.502500px;}
.y49{bottom:687.367500px;}
.ye3{bottom:687.979500px;}
.y6e{bottom:688.057500px;}
.y6f{bottom:699.282000px;}
.y6d{bottom:699.283500px;}
.y93{bottom:701.647500px;}
.y102{bottom:702.411000px;}
.y48{bottom:707.691000px;}
.y22{bottom:711.694500px;}
.yc2{bottom:716.778000px;}
.ye2{bottom:721.752000px;}
.y101{bottom:722.736000px;}
.y21{bottom:732.018000px;}
.y92{bottom:735.171000px;}
.y6c{bottom:736.759500px;}
.y47{bottom:741.280500px;}
.y100{bottom:743.059500px;}
.yc1{bottom:749.052000px;}
.y20{bottom:752.343000px;}
.y91{bottom:755.494500px;}
.ye1{bottom:755.526000px;}
.y6b{bottom:757.083000px;}
.y1f{bottom:772.666500px;}
.y46{bottom:774.868500px;}
.ye0{bottom:775.849500px;}
.yc0{bottom:776.772000px;}
.y5{bottom:778.974000px;}
.yff{bottom:779.587500px;}
.y6a{bottom:784.473000px;}
.y90{bottom:789.619500px;}
.y1e{bottom:792.990000px;}
.ydf{bottom:796.173000px;}
.y45{bottom:808.458000px;}
.ybf{bottom:811.537500px;}
.y1d{bottom:813.313500px;}
.y4{bottom:816.253500px;}
.y69{bottom:818.686500px;}
.yde{bottom:824.952000px;}
.yfe{bottom:825.168000px;}
.y8f{bottom:830.995500px;}
.ybe{bottom:831.861000px;}
.y1c{bottom:833.637000px;}
.y68{bottom:839.010000px;}
.y44{bottom:841.771500px;}
.yfd{bottom:845.491500px;}
.y8e{bottom:851.319000px;}
.ybd{bottom:854.503500px;}
.y67{bottom:859.333500px;}
.ybc{bottom:859.654500px;}
.y3{bottom:861.085500px;}
.ydd{bottom:861.480000px;}
.y43{bottom:862.095000px;}
.yfc{bottom:865.815000px;}
.y1b{bottom:870.325500px;}
.y8d{bottom:871.642500px;}
.y66{bottom:879.658500px;}
.ydc{bottom:881.803500px;}
.y42{bottom:882.418500px;}
.yfb{bottom:886.140000px;}
.ybb{bottom:887.376000px;}
.y1a{bottom:890.649000px;}
.y8c{bottom:898.618500px;}
.ydb{bottom:902.128500px;}
.y41{bottom:902.742000px;}
.y2{bottom:905.917500px;}
.yfa{bottom:906.463500px;}
.y19{bottom:910.972500px;}
.y65{bottom:914.335500px;}
.yba{bottom:922.140000px;}
.yf9{bottom:926.787000px;}
.y40{bottom:929.560500px;}
.y18{bottom:931.296000px;}
.y8b{bottom:932.142000px;}
.yda{bottom:938.656500px;}
.yb9{bottom:942.465000px;}
.yf8{bottom:947.110500px;}
.y3f{bottom:949.884000px;}
.y17{bottom:951.619500px;}
.y8a{bottom:952.467000px;}
.y64{bottom:956.676000px;}
.yb3{bottom:967.417500px;}
.y3e{bottom:970.207500px;}
.yb8{bottom:971.685000px;}
.y16{bottom:971.944500px;}
.y89{bottom:972.790500px;}
.yb7{bottom:976.570500px;}
.yb2{bottom:976.887000px;}
.y63{bottom:976.999500px;}
.yf7{bottom:983.638500px;}
.yd9{bottom:984.237000px;}
.yb1{bottom:988.111500px;}
.y3d{bottom:990.532500px;}
.y88{bottom:993.114000px;}
.y62{bottom:997.323000px;}
.yb6{bottom:1000.546500px;}
.yd8{bottom:1004.560500px;}
.yb5{bottom:1005.129000px;}
.y15{bottom:1008.631500px;}
.y3c{bottom:1010.856000px;}
.y87{bottom:1013.437500px;}
.y61{bottom:1017.646500px;}
.yb4{bottom:1023.292500px;}
.yb0{bottom:1028.415000px;}
.yf6{bottom:1029.219000px;}
.yd7{bottom:1033.339500px;}
.y3b{bottom:1037.674500px;}
.y86{bottom:1042.554000px;}
.y14{bottom:1045.318500px;}
.y60{bottom:1046.511000px;}
.yf5{bottom:1049.544000px;}
.yaf{bottom:1051.408500px;}
.y3a{bottom:1057.998000px;}
.yae{bottom:1058.587500px;}
.yad{bottom:1062.633000px;}
.y5f{bottom:1066.836000px;}
.yd6{bottom:1069.867500px;}
.y85{bottom:1071.669000px;}
.y39{bottom:1078.321500px;}
.y13{bottom:1082.007000px;}
.y1{bottom:1087.587000px;}
.yd5{bottom:1090.191000px;}
.yac{bottom:1091.248500px;}
.y84{bottom:1091.994000px;}
.y38{bottom:1098.645000px;}
.y37{bottom:1118.968500px;}
.h1c{height:2.618184px;}
.h6{height:33.187496px;}
.h1b{height:35.865450px;}
.h2{height:41.484266px;}
.h23{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.he{height:55.640184px;}
.h18{height:58.407450px;}
.h16{height:59.613450px;}
.hf{height:59.619450px;}
.ha{height:61.168950px;}
.h19{height:62.889450px;}
.h11{height:62.895450px;}
.h21{height:67.707450px;}
.h20{height:69.694950px;}
.h22{height:70.228950px;}
.h1f{height:70.365450px;}
.h5{height:72.720266px;}
.h17{height:73.893450px;}
.h12{height:77.344950px;}
.h1d{height:79.498950px;}
.h15{height:79.504950px;}
.hb{height:89.705492px;}
.hc{height:93.370950px;}
.h10{height:93.730950px;}
.hd{height:94.910184px;}
.h3{height:106.485382px;}
.h13{height:109.694184px;}
.h1a{height:109.912950px;}
.h1e{height:110.541450px;}
.h14{height:188.169450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x3a{left:137.107500px;}
.x4{left:139.332000px;}
.x39{left:147.427500px;}
.x5{left:151.972500px;}
.x3b{left:161.064000px;}
.x7{left:164.010000px;}
.x8{left:168.336000px;}
.x38{left:214.767000px;}
.x28{left:256.881000px;}
.x1{left:286.581000px;}
.xd{left:303.990000px;}
.x21{left:305.745000px;}
.x2c{left:322.068000px;}
.x1b{left:326.755500px;}
.x1d{left:330.379500px;}
.x1e{left:340.902000px;}
.x37{left:343.587000px;}
.x13{left:363.192000px;}
.x1c{left:365.203500px;}
.x14{left:368.095500px;}
.x1a{left:377.170500px;}
.x1f{left:383.806500px;}
.x22{left:387.052500px;}
.x16{left:399.298500px;}
.x29{left:401.250000px;}
.x36{left:402.946500px;}
.xf{left:404.748000px;}
.x9{left:407.308500px;}
.x17{left:412.935000px;}
.xa{left:415.825500px;}
.x10{left:418.384500px;}
.x2d{left:420.786000px;}
.x6{left:438.466500px;}
.xb{left:445.345500px;}
.x11{left:447.904500px;}
.x2e{left:448.905000px;}
.x18{left:453.354000px;}
.x2a{left:465.039000px;}
.x2f{left:470.268000px;}
.x23{left:473.055000px;}
.x30{left:476.176500px;}
.xc{left:500.535000px;}
.x25{left:501.666000px;}
.x12{left:503.095500px;}
.x33{left:506.319000px;}
.x19{left:508.543500px;}
.x26{left:511.017000px;}
.x34{left:515.670000px;}
.x2b{left:520.228500px;}
.x15{left:523.612500px;}
.x31{left:528.979500px;}
.x32{left:534.888000px;}
.x20{left:553.647000px;}
.x24{left:566.434500px;}
.x35{left:585.775500px;}
.x27{left:602.097000px;}
.xe{left:673.473000px;}
@media print{
.v15{vertical-align:-64.581333pt;}
.v16{vertical-align:-53.845333pt;}
.vf{vertical-align:-47.125333pt;}
.v2{vertical-align:-21.114667pt;}
.v12{vertical-align:-13.322667pt;}
.v3{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:9.482667pt;}
.v4{vertical-align:10.736000pt;}
.vc{vertical-align:14.378667pt;}
.v11{vertical-align:16.298667pt;}
.v19{vertical-align:18.314667pt;}
.v13{vertical-align:20.037333pt;}
.v8{vertical-align:21.114667pt;}
.vb{vertical-align:24.026667pt;}
.v1{vertical-align:27.765333pt;}
.v9{vertical-align:30.954667pt;}
.v5{vertical-align:39.360000pt;}
.v14{vertical-align:45.338667pt;}
.v7{vertical-align:47.130667pt;}
.v18{vertical-align:66.378667pt;}
.v17{vertical-align:80.874667pt;}
.v6{vertical-align:82.037333pt;}
.vd{vertical-align:95.178667pt;}
.v10{vertical-align:135.381333pt;}
.ve{vertical-align:161.397333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000912pt;}
.ls57{letter-spacing:0.001414pt;}
.ls18{letter-spacing:0.001416pt;}
.ls20{letter-spacing:0.001917pt;}
.ls5b{letter-spacing:0.001990pt;}
.ls3f{letter-spacing:0.002405pt;}
.ls45{letter-spacing:0.003856pt;}
.ls26{letter-spacing:0.003861pt;}
.ls52{letter-spacing:0.009443pt;}
.lse{letter-spacing:0.009534pt;}
.lsd{letter-spacing:0.010006pt;}
.ls59{letter-spacing:0.011458pt;}
.ls4a{letter-spacing:0.011942pt;}
.ls51{letter-spacing:0.013862pt;}
.ls53{letter-spacing:0.014253pt;}
.ls4d{letter-spacing:0.014257pt;}
.ls4f{letter-spacing:0.014634pt;}
.ls54{letter-spacing:0.014765pt;}
.ls47{letter-spacing:0.017369pt;}
.ls2d{letter-spacing:0.017783pt;}
.ls55{letter-spacing:0.018492pt;}
.ls31{letter-spacing:0.018765pt;}
.ls10{letter-spacing:0.018945pt;}
.ls5a{letter-spacing:0.020748pt;}
.lsb{letter-spacing:0.022189pt;}
.ls1{letter-spacing:0.022522pt;}
.ls21{letter-spacing:0.024594pt;}
.ls32{letter-spacing:0.026306pt;}
.ls16{letter-spacing:0.027522pt;}
.ls2f{letter-spacing:0.030913pt;}
.ls2a{letter-spacing:0.042507pt;}
.ls50{letter-spacing:0.188347pt;}
.ls7{letter-spacing:0.804338pt;}
.ls1f{letter-spacing:0.807739pt;}
.ls14{letter-spacing:0.813051pt;}
.ls44{letter-spacing:0.818820pt;}
.lsf{letter-spacing:0.833416pt;}
.ls24{letter-spacing:1.617899pt;}
.ls40{letter-spacing:2.088215pt;}
.ls25{letter-spacing:2.560002pt;}
.ls2c{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.654270pt;}
.ls38{letter-spacing:2.657146pt;}
.ls33{letter-spacing:2.662479pt;}
.ls34{letter-spacing:3.786350pt;}
.ls39{letter-spacing:3.791684pt;}
.ls2e{letter-spacing:5.178186pt;}
.ls19{letter-spacing:5.764278pt;}
.ls3b{letter-spacing:6.357729pt;}
.ls35{letter-spacing:8.081908pt;}
.ls4b{letter-spacing:8.087279pt;}
.ls3e{letter-spacing:8.101709pt;}
.ls1c{letter-spacing:9.694995pt;}
.ls22{letter-spacing:9.697917pt;}
.ls1b{letter-spacing:9.716372pt;}
.lsa{letter-spacing:12.916374pt;}
.ls43{letter-spacing:16.071733pt;}
.ls3c{letter-spacing:16.077067pt;}
.ls8{letter-spacing:16.174559pt;}
.ls48{letter-spacing:17.442591pt;}
.ls13{letter-spacing:19.374562pt;}
.ls6{letter-spacing:19.432743pt;}
.ls37{letter-spacing:19.951684pt;}
.ls58{letter-spacing:21.410927pt;}
.ls1e{letter-spacing:21.469109pt;}
.ls56{letter-spacing:22.050591pt;}
.ls4{letter-spacing:25.076385pt;}
.ls12{letter-spacing:28.043660pt;}
.ls3{letter-spacing:28.276387pt;}
.ls5{letter-spacing:29.090933pt;}
.ls11{letter-spacing:29.672752pt;}
.ls3d{letter-spacing:60.849146pt;}
.ls27{letter-spacing:63.343477pt;}
.ls1a{letter-spacing:66.558995pt;}
.ls15{letter-spacing:82.703446pt;}
.ls9{letter-spacing:91.802113pt;}
.ls36{letter-spacing:114.550479pt;}
.ls41{letter-spacing:514.444065pt;}
.ls46{letter-spacing:572.451386pt;}
.ls30{letter-spacing:589.149582pt;}
.ls3a{letter-spacing:602.007774pt;}
.ls4e{letter-spacing:648.960541pt;}
.ls1d{letter-spacing:718.662417pt;}
.ls4c{letter-spacing:725.993332pt;}
.ls23{letter-spacing:736.116977pt;}
.ls2b{letter-spacing:768.407913pt;}
.ls42{letter-spacing:805.527944pt;}
.ls29{letter-spacing:847.069797pt;}
.ls49{letter-spacing:860.044353pt;}
.ls17{letter-spacing:866.444358pt;}
.lsc{letter-spacing:875.520730pt;}
.ws4c{word-spacing:-58.181867pt;}
.ws67{word-spacing:-46.062584pt;}
.ws5e{word-spacing:-42.065490pt;}
.ws27{word-spacing:-37.899668pt;}
.ws44{word-spacing:-29.079297pt;}
.ws5f{word-spacing:-16.162923pt;}
.wsd{word-spacing:-12.543875pt;}
.ws64{word-spacing:-6.446551pt;}
.ws9{word-spacing:-2.955639pt;}
.wsa0{word-spacing:-2.897457pt;}
.ws8b{word-spacing:-2.432002pt;}
.ws55{word-spacing:-2.257456pt;}
.ws1a{word-spacing:-1.733820pt;}
.ws6e{word-spacing:-1.384728pt;}
.ws46{word-spacing:-1.326547pt;}
.ws68{word-spacing:-1.268365pt;}
.ws84{word-spacing:-1.210183pt;}
.ws94{word-spacing:-0.919273pt;}
.ws5d{word-spacing:-0.628364pt;}
.ws5c{word-spacing:-0.570182pt;}
.ws11{word-spacing:-0.453819pt;}
.wsb{word-spacing:-0.395637pt;}
.ws2d{word-spacing:-0.104727pt;}
.ws73{word-spacing:-0.081455pt;}
.ws13{word-spacing:-0.063761pt;}
.wsa5{word-spacing:-0.053134pt;}
.ws62{word-spacing:-0.046545pt;}
.ws69{word-spacing:-0.042507pt;}
.ws12{word-spacing:0.000000pt;}
.ws72{word-spacing:0.011636pt;}
.ws78{word-spacing:0.244364pt;}
.ws89{word-spacing:0.535273pt;}
.ws1d{word-spacing:0.709819pt;}
.ws81{word-spacing:0.768001pt;}
.ws34{word-spacing:1.000728pt;}
.ws2e{word-spacing:1.408001pt;}
.ws37{word-spacing:1.466183pt;}
.ws31{word-spacing:1.582547pt;}
.wsa{word-spacing:1.757092pt;}
.ws2f{word-spacing:1.815274pt;}
.ws90{word-spacing:1.989820pt;}
.ws1c{word-spacing:2.106184pt;}
.ws57{word-spacing:2.164365pt;}
.ws59{word-spacing:2.222547pt;}
.wsa3{word-spacing:2.348517pt;}
.ws23{word-spacing:2.397093pt;}
.ws56{word-spacing:2.536729pt;}
.ws53{word-spacing:2.571639pt;}
.wsa1{word-spacing:2.932989pt;}
.wsf{word-spacing:3.095275pt;}
.ws7c{word-spacing:3.153457pt;}
.ws5{word-spacing:3.211639pt;}
.ws15{word-spacing:3.269821pt;}
.wse{word-spacing:3.444367pt;}
.ws1f{word-spacing:3.502548pt;}
.ws9f{word-spacing:3.560730pt;}
.ws3f{word-spacing:3.618912pt;}
.ws60{word-spacing:3.677094pt;}
.ws14{word-spacing:3.700367pt;}
.ws17{word-spacing:3.758549pt;}
.ws1b{word-spacing:3.793458pt;}
.ws1e{word-spacing:4.026185pt;}
.ws49{word-spacing:4.200731pt;}
.ws98{word-spacing:4.317095pt;}
.ws8e{word-spacing:4.433458pt;}
.ws2b{word-spacing:4.549822pt;}
.ws3c{word-spacing:4.608004pt;}
.ws2a{word-spacing:4.666186pt;}
.ws38{word-spacing:4.782549pt;}
.ws3b{word-spacing:5.015277pt;}
.ws10{word-spacing:5.073459pt;}
.ws8d{word-spacing:5.096732pt;}
.ws25{word-spacing:5.189823pt;}
.ws85{word-spacing:5.248004pt;}
.ws7d{word-spacing:5.422550pt;}
.ws7f{word-spacing:5.480732pt;}
.ws29{word-spacing:5.597096pt;}
.ws87{word-spacing:5.713459pt;}
.ws54{word-spacing:5.829823pt;}
.ws20{word-spacing:6.062551pt;}
.ws22{word-spacing:6.237096pt;}
.ws6f{word-spacing:6.254656pt;}
.ws4b{word-spacing:6.257271pt;}
.ws42{word-spacing:6.269282pt;}
.ws65{word-spacing:6.275562pt;}
.ws6b{word-spacing:6.280250pt;}
.ws92{word-spacing:6.353460pt;}
.ws7b{word-spacing:6.469824pt;}
.ws79{word-spacing:6.528005pt;}
.ws9a{word-spacing:6.702551pt;}
.ws51{word-spacing:6.877097pt;}
.ws8a{word-spacing:7.109824pt;}
.ws91{word-spacing:7.307642pt;}
.ws2c{word-spacing:7.342552pt;}
.ws43{word-spacing:7.400733pt;}
.ws61{word-spacing:7.633461pt;}
.ws97{word-spacing:7.982552pt;}
.ws4a{word-spacing:8.040734pt;}
.ws45{word-spacing:8.098916pt;}
.ws9b{word-spacing:8.273461pt;}
.ws3e{word-spacing:8.448007pt;}
.ws26{word-spacing:8.564371pt;}
.ws99{word-spacing:8.622553pt;}
.ws32{word-spacing:8.913462pt;}
.ws9e{word-spacing:9.088008pt;}
.ws8{word-spacing:9.146189pt;}
.ws5a{word-spacing:9.204371pt;}
.ws63{word-spacing:9.486656pt;}
.ws77{word-spacing:9.495281pt;}
.ws35{word-spacing:9.630263pt;}
.ws71{word-spacing:9.635596pt;}
.ws6{word-spacing:9.669826pt;}
.ws9c{word-spacing:9.902554pt;}
.ws82{word-spacing:10.408930pt;}
.ws9d{word-spacing:10.658918pt;}
.ws47{word-spacing:10.775282pt;}
.ws75{word-spacing:11.124373pt;}
.ws3d{word-spacing:11.182555pt;}
.ws50{word-spacing:11.357100pt;}
.ws88{word-spacing:11.384930pt;}
.ws95{word-spacing:11.427596pt;}
.ws8f{word-spacing:11.608930pt;}
.ws58{word-spacing:11.838263pt;}
.ws5b{word-spacing:11.848930pt;}
.ws41{word-spacing:11.880737pt;}
.ws4d{word-spacing:11.997101pt;}
.ws4f{word-spacing:12.055283pt;}
.ws40{word-spacing:12.113465pt;}
.ws70{word-spacing:12.404374pt;}
.ws96{word-spacing:12.637101pt;}
.ws80{word-spacing:12.811647pt;}
.ws74{word-spacing:12.834920pt;}
.ws3a{word-spacing:12.867596pt;}
.ws8c{word-spacing:12.928011pt;}
.ws7e{word-spacing:13.358263pt;}
.ws39{word-spacing:14.446263pt;}
.ws93{word-spacing:14.878263pt;}
.wsc{word-spacing:17.396378pt;}
.ws7a{word-spacing:18.003596pt;}
.wsa4{word-spacing:18.384318pt;}
.ws28{word-spacing:18.531596pt;}
.ws33{word-spacing:18.547596pt;}
.ws36{word-spacing:18.676379pt;}
.wsa2{word-spacing:18.968790pt;}
.ws30{word-spacing:19.432743pt;}
.ws24{word-spacing:20.014562pt;}
.ws76{word-spacing:20.760930pt;}
.ws48{word-spacing:21.223961pt;}
.ws86{word-spacing:22.574564pt;}
.ws3{word-spacing:23.336550pt;}
.ws19{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws4e{word-spacing:28.858206pt;}
.ws21{word-spacing:29.789116pt;}
.ws66{word-spacing:32.902447pt;}
.ws18{word-spacing:35.234938pt;}
.ws16{word-spacing:43.298945pt;}
.ws6c{word-spacing:47.394628pt;}
.ws2{word-spacing:48.252221pt;}
.ws52{word-spacing:48.325858pt;}
.ws1{word-spacing:48.384419pt;}
.ws7{word-spacing:68.881751pt;}
.ws83{word-spacing:71.667439pt;}
.ws6d{word-spacing:88.157295pt;}
.ws6a{word-spacing:104.317295pt;}
._1{margin-left:-12.162204pt;}
._4{margin-left:-4.829095pt;}
._6{margin-left:-2.967275pt;}
._2{margin-left:-1.976593pt;}
._5{margin-left:-0.989092pt;}
._2b{width:0.992273pt;}
._3{width:1.976593pt;}
._37{width:2.916189pt;}
._0{width:3.833738pt;}
._38{width:5.106469pt;}
._8{width:6.014138pt;}
._3e{width:14.487285pt;}
._39{width:15.709104pt;}
._34{width:16.636833pt;}
._2d{width:18.673198pt;}
._7{width:20.887290pt;}
._2c{width:22.574564pt;}
._29{width:23.621838pt;}
._31{width:24.669111pt;}
._9{width:26.240022pt;}
._36{width:27.633206pt;}
._33{width:28.858206pt;}
._a{width:31.070707pt;}
._35{width:33.044119pt;}
._2f{width:35.604122pt;}
._3b{width:36.651395pt;}
._3d{width:38.105942pt;}
._32{width:39.500716pt;}
._2a{width:41.890944pt;}
._3c{width:46.252994pt;}
._2e{width:50.440498pt;}
._b{width:53.818227pt;}
._3a{width:58.175961pt;}
._f{width:59.461868pt;}
._30{width:66.909147pt;}
._28{width:71.731200pt;}
._e{width:581.060712pt;}
._15{width:849.458434pt;}
._16{width:971.869901pt;}
._12{width:1075.837716pt;}
._13{width:1099.577508pt;}
._1b{width:1204.190094pt;}
._d{width:1251.666498pt;}
._22{width:1253.875818pt;}
._c{width:1270.231284pt;}
._1e{width:1274.005154pt;}
._23{width:1295.997899pt;}
._11{width:1301.816086pt;}
._1c{width:1369.481597pt;}
._26{width:1395.608436pt;}
._17{width:1399.975257pt;}
._1d{width:1431.795966pt;}
._18{width:1558.402889pt;}
._20{width:1579.112453pt;}
._1a{width:1595.750876pt;}
._1f{width:1616.812712pt;}
._24{width:1622.456353pt;}
._19{width:1627.173855pt;}
._10{width:1650.619557pt;}
._25{width:1803.170821pt;}
._14{width:1843.550627pt;}
._27{width:1897.136126pt;}
._21{width:2001.768475pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:83.389333pt;}
.y5e{bottom:156.449333pt;}
.y35{bottom:156.497333pt;}
.y115{bottom:161.449333pt;}
.y83{bottom:174.514667pt;}
.y34{bottom:174.562667pt;}
.y114{bottom:177.389333pt;}
.y5d{bottom:186.306667pt;}
.yf4{bottom:188.853333pt;}
.y82{bottom:192.580000pt;}
.y33{bottom:192.629333pt;}
.ya7{bottom:194.701333pt;}
.yab{bottom:197.549333pt;}
.y113{bottom:199.972000pt;}
.yaa{bottom:202.246667pt;}
.ya6{bottom:202.528000pt;}
.yf3{bottom:206.918667pt;}
.yd4{bottom:210.645333pt;}
.y32{bottom:210.694667pt;}
.y81{bottom:212.396000pt;}
.ya5{bottom:212.505333pt;}
.y112{bottom:215.912000pt;}
.y5c{bottom:215.917333pt;}
.ya8{bottom:219.194667pt;}
.y80{bottom:222.373333pt;}
.ya9{bottom:223.269333pt;}
.yf2{bottom:224.984000pt;}
.y5b{bottom:233.982667pt;}
.yd3{bottom:235.286667pt;}
.ya4{bottom:239.897333pt;}
.y31{bottom:243.164000pt;}
.y111{bottom:246.256000pt;}
.y7f{bottom:246.389333pt;}
.yf1{bottom:250.565333pt;}
.y5a{bottom:252.049333pt;}
.ya3{bottom:262.182667pt;}
.y7e{bottom:264.456000pt;}
.ya2{bottom:265.777333pt;}
.yd2{bottom:266.188000pt;}
.y59{bottom:270.114667pt;}
.yd1{bottom:279.557333pt;}
.yf0{bottom:283.034667pt;}
.y30{bottom:283.680000pt;}
.yd0{bottom:284.254667pt;}
.y110{bottom:286.772000pt;}
.y58{bottom:288.180000pt;}
.y7d{bottom:288.801333pt;}
.ya1{bottom:291.658667pt;}
.yef{bottom:301.100000pt;}
.ycf{bottom:302.320000pt;}
.y10f{bottom:304.837333pt;}
.y57{bottom:306.245333pt;}
.ya0{bottom:315.637333pt;}
.y7c{bottom:319.214667pt;}
.y10e{bottom:322.904000pt;}
.y2f{bottom:325.037333pt;}
.yce{bottom:326.960000pt;}
.yee{bottom:331.121333pt;}
.y56{bottom:334.165333pt;}
.y12{bottom:335.192000pt;}
.y7b{bottom:337.280000pt;}
.y10d{bottom:340.969333pt;}
.y55{bottom:344.142667pt;}
.y9f{bottom:345.436000pt;}
.y11{bottom:353.258667pt;}
.y7a{bottom:355.345333pt;}
.y2e{bottom:357.648000pt;}
.ycd{bottom:357.862667pt;}
.y10c{bottom:359.034667pt;}
.yed{bottom:361.141333pt;}
.y9e{bottom:371.317333pt;}
.y10{bottom:371.324000pt;}
.ycc{bottom:375.928000pt;}
.y10b{bottom:377.100000pt;}
.yec{bottom:379.206667pt;}
.y54{bottom:382.361333pt;}
.y79{bottom:382.786667pt;}
.y53{bottom:385.045333pt;}
.yf{bottom:389.389333pt;}
.y2d{bottom:390.260000pt;}
.y10a{bottom:395.165333pt;}
.y9d{bottom:397.198667pt;}
.y52{bottom:400.426667pt;}
.ycb{bottom:407.144000pt;}
.ye{bottom:407.454667pt;}
.yeb{bottom:409.228000pt;}
.y78{bottom:410.229333pt;}
.y109{bottom:413.232000pt;}
.y51{bottom:418.492000pt;}
.y9c{bottom:421.177333pt;}
.y2c{bottom:422.870667pt;}
.yd{bottom:425.520000pt;}
.yea{bottom:427.293333pt;}
.y77{bottom:428.294667pt;}
.y50{bottom:436.557333pt;}
.y2b{bottom:440.936000pt;}
.yc{bottom:443.586667pt;}
.yca{bottom:445.466667pt;}
.y108{bottom:445.701333pt;}
.y9b{bottom:450.976000pt;}
.y76{bottom:452.641333pt;}
.y4f{bottom:454.624000pt;}
.ye9{bottom:457.314667pt;}
.y2a{bottom:459.001333pt;}
.yb{bottom:461.652000pt;}
.yc9{bottom:463.532000pt;}
.y9a{bottom:469.041333pt;}
.y4e{bottom:472.689333pt;}
.y29{bottom:477.068000pt;}
.ya{bottom:479.717333pt;}
.ye8{bottom:482.894667pt;}
.y75{bottom:483.053333pt;}
.y107{bottom:486.217333pt;}
.y99{bottom:487.108000pt;}
.yc8{bottom:492.222667pt;}
.y28{bottom:495.133333pt;}
.y9{bottom:497.782667pt;}
.y74{bottom:501.118667pt;}
.y4d{bottom:505.004000pt;}
.y98{bottom:505.173333pt;}
.yc7{bottom:510.288000pt;}
.ye7{bottom:515.364000pt;}
.y106{bottom:516.237333pt;}
.y73{bottom:519.184000pt;}
.y27{bottom:527.744000pt;}
.y97{bottom:529.529333pt;}
.y8{bottom:533.117333pt;}
.ye6{bottom:533.430667pt;}
.yc6{bottom:538.980000pt;}
.y72{bottom:543.830667pt;}
.y4c{bottom:545.250667pt;}
.y26{bottom:545.809333pt;}
.y105{bottom:546.258667pt;}
.y96{bottom:547.596000pt;}
.ye5{bottom:551.496000pt;}
.y71{bottom:553.808000pt;}
.y4b{bottom:563.316000pt;}
.y25{bottom:563.874667pt;}
.yc5{bottom:565.676000pt;}
.y7{bottom:565.760000pt;}
.y95{bottom:575.350667pt;}
.y104{bottom:576.280000pt;}
.y4a{bottom:581.381333pt;}
.ye4{bottom:581.516000pt;}
.y24{bottom:581.941333pt;}
.y70{bottom:588.432000pt;}
.yc4{bottom:590.381333pt;}
.y6{bottom:591.298667pt;}
.y94{bottom:599.708000pt;}
.y23{bottom:600.006667pt;}
.y103{bottom:606.300000pt;}
.yc3{bottom:608.446667pt;}
.y49{bottom:610.993333pt;}
.ye3{bottom:611.537333pt;}
.y6e{bottom:611.606667pt;}
.y6f{bottom:621.584000pt;}
.y6d{bottom:621.585333pt;}
.y93{bottom:623.686667pt;}
.y102{bottom:624.365333pt;}
.y48{bottom:629.058667pt;}
.y22{bottom:632.617333pt;}
.yc2{bottom:637.136000pt;}
.ye2{bottom:641.557333pt;}
.y101{bottom:642.432000pt;}
.y21{bottom:650.682667pt;}
.y92{bottom:653.485333pt;}
.y6c{bottom:654.897333pt;}
.y47{bottom:658.916000pt;}
.y100{bottom:660.497333pt;}
.yc1{bottom:665.824000pt;}
.y20{bottom:668.749333pt;}
.y91{bottom:671.550667pt;}
.ye1{bottom:671.578667pt;}
.y6b{bottom:672.962667pt;}
.y1f{bottom:686.814667pt;}
.y46{bottom:688.772000pt;}
.ye0{bottom:689.644000pt;}
.yc0{bottom:690.464000pt;}
.y5{bottom:692.421333pt;}
.yff{bottom:692.966667pt;}
.y6a{bottom:697.309333pt;}
.y90{bottom:701.884000pt;}
.y1e{bottom:704.880000pt;}
.ydf{bottom:707.709333pt;}
.y45{bottom:718.629333pt;}
.ybf{bottom:721.366667pt;}
.y1d{bottom:722.945333pt;}
.y4{bottom:725.558667pt;}
.y69{bottom:727.721333pt;}
.yde{bottom:733.290667pt;}
.yfe{bottom:733.482667pt;}
.y8f{bottom:738.662667pt;}
.ybe{bottom:739.432000pt;}
.y1c{bottom:741.010667pt;}
.y68{bottom:745.786667pt;}
.y44{bottom:748.241333pt;}
.yfd{bottom:751.548000pt;}
.y8e{bottom:756.728000pt;}
.ybd{bottom:759.558667pt;}
.y67{bottom:763.852000pt;}
.ybc{bottom:764.137333pt;}
.y3{bottom:765.409333pt;}
.ydd{bottom:765.760000pt;}
.y43{bottom:766.306667pt;}
.yfc{bottom:769.613333pt;}
.y1b{bottom:773.622667pt;}
.y8d{bottom:774.793333pt;}
.y66{bottom:781.918667pt;}
.ydc{bottom:783.825333pt;}
.y42{bottom:784.372000pt;}
.yfb{bottom:787.680000pt;}
.ybb{bottom:788.778667pt;}
.y1a{bottom:791.688000pt;}
.y8c{bottom:798.772000pt;}
.ydb{bottom:801.892000pt;}
.y41{bottom:802.437333pt;}
.y2{bottom:805.260000pt;}
.yfa{bottom:805.745333pt;}
.y19{bottom:809.753333pt;}
.y65{bottom:812.742667pt;}
.yba{bottom:819.680000pt;}
.yf9{bottom:823.810667pt;}
.y40{bottom:826.276000pt;}
.y18{bottom:827.818667pt;}
.y8b{bottom:828.570667pt;}
.yda{bottom:834.361333pt;}
.yb9{bottom:837.746667pt;}
.yf8{bottom:841.876000pt;}
.y3f{bottom:844.341333pt;}
.y17{bottom:845.884000pt;}
.y8a{bottom:846.637333pt;}
.y64{bottom:850.378667pt;}
.yb3{bottom:859.926667pt;}
.y3e{bottom:862.406667pt;}
.yb8{bottom:863.720000pt;}
.y16{bottom:863.950667pt;}
.y89{bottom:864.702667pt;}
.yb7{bottom:868.062667pt;}
.yb2{bottom:868.344000pt;}
.y63{bottom:868.444000pt;}
.yf7{bottom:874.345333pt;}
.yd9{bottom:874.877333pt;}
.yb1{bottom:878.321333pt;}
.y3d{bottom:880.473333pt;}
.y88{bottom:882.768000pt;}
.y62{bottom:886.509333pt;}
.yb6{bottom:889.374667pt;}
.yd8{bottom:892.942667pt;}
.yb5{bottom:893.448000pt;}
.y15{bottom:896.561333pt;}
.y3c{bottom:898.538667pt;}
.y87{bottom:900.833333pt;}
.y61{bottom:904.574667pt;}
.yb4{bottom:909.593333pt;}
.yb0{bottom:914.146667pt;}
.yf6{bottom:914.861333pt;}
.yd7{bottom:918.524000pt;}
.y3b{bottom:922.377333pt;}
.y86{bottom:926.714667pt;}
.y14{bottom:929.172000pt;}
.y60{bottom:930.232000pt;}
.yf5{bottom:932.928000pt;}
.yaf{bottom:934.585333pt;}
.y3a{bottom:940.442667pt;}
.yae{bottom:940.966667pt;}
.yad{bottom:944.562667pt;}
.y5f{bottom:948.298667pt;}
.yd6{bottom:950.993333pt;}
.y85{bottom:952.594667pt;}
.y39{bottom:958.508000pt;}
.y13{bottom:961.784000pt;}
.y1{bottom:966.744000pt;}
.yd5{bottom:969.058667pt;}
.yac{bottom:969.998667pt;}
.y84{bottom:970.661333pt;}
.y38{bottom:976.573333pt;}
.y37{bottom:994.638667pt;}
.h1c{height:2.327275pt;}
.h6{height:29.499997pt;}
.h1b{height:31.880400pt;}
.h2{height:36.874903pt;}
.h23{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.he{height:49.457941pt;}
.h18{height:51.917733pt;}
.h16{height:52.989733pt;}
.hf{height:52.995067pt;}
.ha{height:54.372400pt;}
.h19{height:55.901733pt;}
.h11{height:55.907067pt;}
.h21{height:60.184400pt;}
.h20{height:61.951067pt;}
.h22{height:62.425733pt;}
.h1f{height:62.547067pt;}
.h5{height:64.640237pt;}
.h17{height:65.683067pt;}
.h12{height:68.751067pt;}
.h1d{height:70.665733pt;}
.h15{height:70.671067pt;}
.hb{height:79.738215pt;}
.hc{height:82.996400pt;}
.h10{height:83.316400pt;}
.hd{height:84.364608pt;}
.h3{height:94.653673pt;}
.h13{height:97.505941pt;}
.h1a{height:97.700400pt;}
.h1e{height:98.259067pt;}
.h14{height:167.261733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x3a{left:121.873333pt;}
.x4{left:123.850667pt;}
.x39{left:131.046667pt;}
.x5{left:135.086667pt;}
.x3b{left:143.168000pt;}
.x7{left:145.786667pt;}
.x8{left:149.632000pt;}
.x38{left:190.904000pt;}
.x28{left:228.338667pt;}
.x1{left:254.738667pt;}
.xd{left:270.213333pt;}
.x21{left:271.773333pt;}
.x2c{left:286.282667pt;}
.x1b{left:290.449333pt;}
.x1d{left:293.670667pt;}
.x1e{left:303.024000pt;}
.x37{left:305.410667pt;}
.x13{left:322.837333pt;}
.x1c{left:324.625333pt;}
.x14{left:327.196000pt;}
.x1a{left:335.262667pt;}
.x1f{left:341.161333pt;}
.x22{left:344.046667pt;}
.x16{left:354.932000pt;}
.x29{left:356.666667pt;}
.x36{left:358.174667pt;}
.xf{left:359.776000pt;}
.x9{left:362.052000pt;}
.x17{left:367.053333pt;}
.xa{left:369.622667pt;}
.x10{left:371.897333pt;}
.x2d{left:374.032000pt;}
.x6{left:389.748000pt;}
.xb{left:395.862667pt;}
.x11{left:398.137333pt;}
.x2e{left:399.026667pt;}
.x18{left:402.981333pt;}
.x2a{left:413.368000pt;}
.x2f{left:418.016000pt;}
.x23{left:420.493333pt;}
.x30{left:423.268000pt;}
.xc{left:444.920000pt;}
.x25{left:445.925333pt;}
.x12{left:447.196000pt;}
.x33{left:450.061333pt;}
.x19{left:452.038667pt;}
.x26{left:454.237333pt;}
.x34{left:458.373333pt;}
.x2b{left:462.425333pt;}
.x15{left:465.433333pt;}
.x31{left:470.204000pt;}
.x32{left:475.456000pt;}
.x20{left:492.130667pt;}
.x24{left:503.497333pt;}
.x35{left:520.689333pt;}
.x27{left:535.197333pt;}
.xe{left:598.642667pt;}
}




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