
    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_4acb921b63a338c8e8839525.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_7e51b41192bd4194b6da7128.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_abe9eddbb77e3c0b7efac099.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952637;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_c9852b68e19b698a7eb02a5e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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_97678242b823c67f22867b55.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952637;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_9abd9a6f77d762c1a5af8f07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_e840a44e4534751b43ac98ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.083496;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_0b13dfdfcd158aee4455aa5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_2bd691b9c185b397bb431013.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_d882322c118f07b870ab4e0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940430;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_296a454fc22a58468ea7cef6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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_ee992f1f749f22db31bf9639.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.753906;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;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_f9ab70533d5214069c1565f6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_5fb2e94aac22a2cb9e1d361b.woff2')format("woff");}.fff{font-family:fff;line-height:0.906250;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_5af3ec310c76cbd7bea5aa89.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.906250;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;}
.m2{transform:matrix(0.237179,0.000000,-0.079052,0.237173,0,0);-ms-transform:matrix(0.237179,0.000000,-0.079052,0.237173,0,0);-webkit-transform:matrix(0.237179,0.000000,-0.079052,0.237173,0,0);}
.m6{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.289441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289441,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-118.880338px;}
.v3{vertical-align:-102.921676px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.520000px;}
.ls2{letter-spacing:-6.240000px;}
.ls3{letter-spacing:-5.952000px;}
.ls4{letter-spacing:-5.760000px;}
.ls1{letter-spacing:-5.676000px;}
.ls29{letter-spacing:-1.170000px;}
.ls51{letter-spacing:-0.862324px;}
.ls5b{letter-spacing:-0.786917px;}
.ls6b{letter-spacing:-0.612000px;}
.ls50{letter-spacing:-0.536078px;}
.ls5c{letter-spacing:-0.393458px;}
.ls6a{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.352200px;}
.ls2e{letter-spacing:-0.345000px;}
.ls31{letter-spacing:-0.319800px;}
.ls2f{letter-spacing:-0.302400px;}
.ls6f{letter-spacing:-0.301800px;}
.ls1e{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.ls68{letter-spacing:-0.270000px;}
.ls2b{letter-spacing:-0.252000px;}
.ls4b{letter-spacing:-0.238092px;}
.ls16{letter-spacing:-0.195600px;}
.ls69{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.175200px;}
.ls17{letter-spacing:-0.122400px;}
.ls25{letter-spacing:-0.091200px;}
.ls6c{letter-spacing:-0.064800px;}
.ls0{letter-spacing:0.000000px;}
.ls6e{letter-spacing:0.000003px;}
.ls28{letter-spacing:0.001440px;}
.ls2c{letter-spacing:0.028080px;}
.ls1d{letter-spacing:0.032400px;}
.ls5a{letter-spacing:0.040920px;}
.ls63{letter-spacing:0.051000px;}
.ls70{letter-spacing:0.054000px;}
.ls32{letter-spacing:0.059880px;}
.ls24{letter-spacing:0.076200px;}
.ls30{letter-spacing:0.091200px;}
.ls6d{letter-spacing:0.106800px;}
.ls2a{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.112200px;}
.ls27{letter-spacing:0.118200px;}
.ls58{letter-spacing:0.131153px;}
.ls6{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.150600px;}
.ls33{letter-spacing:0.178800px;}
.ls64{letter-spacing:0.180000px;}
.ls67{letter-spacing:0.202200px;}
.ls14{letter-spacing:0.228000px;}
.ls61{letter-spacing:0.270000px;}
.ls15{letter-spacing:0.276000px;}
.lsc{letter-spacing:0.276480px;}
.ls53{letter-spacing:0.287907px;}
.ls7{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.302400px;}
.ls1c{letter-spacing:0.307200px;}
.ls3f{letter-spacing:0.337249px;}
.ls11{letter-spacing:0.343800px;}
.lsf{letter-spacing:0.360000px;}
.ls59{letter-spacing:0.393458px;}
.ls43{letter-spacing:0.411687px;}
.ls66{letter-spacing:0.414000px;}
.ls4f{letter-spacing:0.431162px;}
.ls22{letter-spacing:0.480000px;}
.ls44{letter-spacing:0.766561px;}
.ls57{letter-spacing:0.786917px;}
.ls47{letter-spacing:0.823373px;}
.ls52{letter-spacing:0.862324px;}
.ls45{letter-spacing:1.440903px;}
.ls4d{letter-spacing:1.617720px;}
.ls4c{letter-spacing:1.724648px;}
.ls54{letter-spacing:2.051339px;}
.ls3d{letter-spacing:3.288180px;}
.ls3b{letter-spacing:3.372492px;}
.ls49{letter-spacing:4.116867px;}
.ls41{letter-spacing:5.058738px;}
.ls3a{letter-spacing:5.817548px;}
.ls38{letter-spacing:5.901861px;}
.ls37{letter-spacing:6.744984px;}
.ls40{letter-spacing:11.382160px;}
.ls48{letter-spacing:11.527228px;}
.ls4a{letter-spacing:13.997348px;}
.ls4e{letter-spacing:16.168576px;}
.ls46{letter-spacing:18.114215px;}
.ls34{letter-spacing:19.391828px;}
.ls35{letter-spacing:20.375472px;}
.ls19{letter-spacing:26.794080px;}
.ls18{letter-spacing:26.845200px;}
.ls3e{letter-spacing:27.823058px;}
.ls3c{letter-spacing:27.963578px;}
.ls12{letter-spacing:29.808000px;}
.ls10{letter-spacing:29.880000px;}
.ls36{letter-spacing:30.352427px;}
.ls39{letter-spacing:30.492947px;}
.ls65{letter-spacing:32.850000px;}
.ls60{letter-spacing:33.570000px;}
.lse{letter-spacing:35.228880px;}
.lsb{letter-spacing:35.280000px;}
.ls8{letter-spacing:35.348880px;}
.ls5{letter-spacing:35.400000px;}
.ls56{letter-spacing:35.988405px;}
.ls5d{letter-spacing:43.651680px;}
.lsd{letter-spacing:43.663680px;}
.ls5e{letter-spacing:43.702800px;}
.lsa{letter-spacing:43.714800px;}
.ls1f{letter-spacing:48.008880px;}
.ls20{letter-spacing:48.060000px;}
.ls21{letter-spacing:52.405200px;}
.ls55{letter-spacing:53.982607px;}
.ls62{letter-spacing:54.398880px;}
.ls5f{letter-spacing:54.450000px;}
.ls1a{letter-spacing:73.954800px;}
.ls42{letter-spacing:91.057280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws37{word-spacing:-132.370305px;}
.ws3b{word-spacing:-132.285993px;}
.ws39{word-spacing:-131.527182px;}
.ws3c{word-spacing:-129.840936px;}
.ws3d{word-spacing:-129.756624px;}
.ws48{word-spacing:-129.348607px;}
.ws38{word-spacing:-126.468445px;}
.ws46{word-spacing:-117.276071px;}
.ws47{word-spacing:-117.169142px;}
.ws45{word-spacing:-115.551423px;}
.ws43{word-spacing:-110.275224px;}
.ws4d{word-spacing:-110.016553px;}
.ws3f{word-spacing:-109.508663px;}
.ws4c{word-spacing:-107.965214px;}
.ws4f{word-spacing:-97.910154px;}
.ws51{word-spacing:-92.856177px;}
.ws52{word-spacing:-92.069260px;}
.ws54{word-spacing:-91.282343px;}
.ws3a{word-spacing:-84.312296px;}
.ws36{word-spacing:-77.567313px;}
.ws44{word-spacing:-73.280233px;}
.ws1{word-spacing:-72.036000px;}
.ws4{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.360000px;}
.ws19{word-spacing:-41.976000px;}
.ws18{word-spacing:-41.940000px;}
.wsb{word-spacing:-36.288000px;}
.ws7{word-spacing:-36.000000px;}
.wsc{word-spacing:-30.060000px;}
.ws10{word-spacing:-29.937600px;}
.ws4b{word-spacing:-29.750180px;}
.ws49{word-spacing:-28.887856px;}
.ws4a{word-spacing:-28.025532px;}
.ws40{word-spacing:-27.788853px;}
.ws42{word-spacing:-27.377166px;}
.ws1c{word-spacing:-27.000000px;}
.ws4e{word-spacing:-26.991304px;}
.ws50{word-spacing:-24.477539px;}
.ws20{word-spacing:-24.090600px;}
.ws21{word-spacing:-24.058200px;}
.ws23{word-spacing:-23.976000px;}
.ws1e{word-spacing:-23.940000px;}
.ws53{word-spacing:-23.017315px;}
.ws7b{word-spacing:-22.914000px;}
.ws22{word-spacing:-22.770000px;}
.ws7c{word-spacing:-22.738200px;}
.ws6b{word-spacing:-22.500000px;}
.ws64{word-spacing:-22.320000px;}
.ws63{word-spacing:-22.230000px;}
.ws26{word-spacing:-21.096000px;}
.ws2a{word-spacing:-21.060000px;}
.ws3{word-spacing:-14.310960px;}
.ws83{word-spacing:-2.130000px;}
.ws15{word-spacing:-1.967760px;}
.ws2{word-spacing:-1.857024px;}
.ws58{word-spacing:-1.329840px;}
.ws7a{word-spacing:-1.230000px;}
.ws11{word-spacing:-1.183584px;}
.ws65{word-spacing:-1.170000px;}
.ws6{word-spacing:-1.152000px;}
.ws69{word-spacing:-0.990000px;}
.ws56{word-spacing:-0.915120px;}
.wse{word-spacing:-0.910464px;}
.ws28{word-spacing:-0.835200px;}
.ws59{word-spacing:-0.758400px;}
.ws1a{word-spacing:-0.725760px;}
.ws84{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.677520px;}
.ws17{word-spacing:-0.600000px;}
.ws5b{word-spacing:-0.550080px;}
.ws67{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.517536px;}
.wsf{word-spacing:-0.491520px;}
.ws32{word-spacing:-0.379800px;}
.ws34{word-spacing:-0.238320px;}
.ws68{word-spacing:-0.180000px;}
.ws85{word-spacing:-0.132000px;}
.ws3e{word-spacing:-0.126468px;}
.ws41{word-spacing:-0.109509px;}
.ws13{word-spacing:-0.096192px;}
.ws12{word-spacing:-0.092160px;}
.ws82{word-spacing:-0.090000px;}
.ws57{word-spacing:-0.070800px;}
.ws30{word-spacing:-0.058320px;}
.ws2e{word-spacing:-0.052560px;}
.ws73{word-spacing:-0.026352px;}
.ws5{word-spacing:0.000000px;}
.ws74{word-spacing:0.056736px;}
.ws1b{word-spacing:0.089760px;}
.ws2d{word-spacing:0.091920px;}
.ws5f{word-spacing:0.144000px;}
.ws6a{word-spacing:0.180000px;}
.ws6e{word-spacing:0.185760px;}
.ws55{word-spacing:0.201024px;}
.ws71{word-spacing:0.257928px;}
.ws5d{word-spacing:0.264000px;}
.wsa{word-spacing:0.288000px;}
.ws5c{word-spacing:0.432000px;}
.ws2f{word-spacing:0.588000px;}
.ws70{word-spacing:0.591456px;}
.ws1d{word-spacing:0.648000px;}
.ws5e{word-spacing:0.696000px;}
.ws16{word-spacing:0.704880px;}
.ws9{word-spacing:0.720000px;}
.ws6f{word-spacing:0.740448px;}
.ws27{word-spacing:0.769872px;}
.ws72{word-spacing:0.775584px;}
.ws5a{word-spacing:0.789120px;}
.ws33{word-spacing:0.826896px;}
.ws66{word-spacing:0.990000px;}
.wsd{word-spacing:1.176000px;}
.ws8{word-spacing:1.188000px;}
.ws14{word-spacing:1.240320px;}
.ws24{word-spacing:1.296000px;}
.ws2b{word-spacing:1.317936px;}
.ws2c{word-spacing:1.524000px;}
.ws1f{word-spacing:1.534848px;}
.ws31{word-spacing:1.740000px;}
.ws6d{word-spacing:1.833120px;}
.ws35{word-spacing:1.920000px;}
.ws79{word-spacing:10.080000px;}
.ws77{word-spacing:10.170000px;}
.ws78{word-spacing:10.260000px;}
.ws75{word-spacing:10.350000px;}
.ws61{word-spacing:10.710000px;}
.ws76{word-spacing:10.800000px;}
.ws60{word-spacing:11.070000px;}
.ws62{word-spacing:11.430000px;}
.ws80{word-spacing:14.430000px;}
.ws7f{word-spacing:14.580000px;}
.ws7d{word-spacing:14.670000px;}
.ws7e{word-spacing:14.940000px;}
.ws81{word-spacing:15.120000px;}
.ws25{word-spacing:1306.237344px;}
._19{margin-left:-12.966480px;}
._14{margin-left:-8.748000px;}
._1{margin-left:-7.305408px;}
._0{margin-left:-5.762880px;}
._4{margin-left:-4.610304px;}
._b{margin-left:-3.223584px;}
._9{margin-left:-2.160000px;}
._3{margin-left:-1.149120px;}
._7{width:1.404000px;}
._6{width:3.024000px;}
._5{width:4.968000px;}
._15{width:5.992599px;}
._18{width:7.016455px;}
._1b{width:9.391065px;}
._17{width:11.000812px;}
._12{width:12.646560px;}
._10{width:13.767120px;}
._a{width:15.131520px;}
._e{width:16.641600px;}
._16{width:18.194595px;}
._1c{width:19.440000px;}
._1f{width:21.035994px;}
._13{width:22.802208px;}
._1e{width:23.899680px;}
._f{width:25.722096px;}
._d{width:28.393344px;}
._1a{width:29.724200px;}
._c{width:31.104576px;}
._1d{width:34.923120px;}
._8{width:37.749120px;}
._20{width:38.870880px;}
._11{width:54.849312px;}
._2{width:58.927968px;}
.fc3{color:transparent;}
.fc1{color:rgb(86,72,67);}
.fc4{color:rgb(68,68,68);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs10{font-size:35.411164px;}
.fs1a{font-size:53.982607px;}
.fs15{font-size:55.166018px;}
.fs14{font-size:61.753006px;}
.fs1d{font-size:66.218665px;}
.fs22{font-size:69.248674px;}
.fs1c{font-size:71.976810px;}
.fs23{font-size:72.396341px;}
.fs12{font-size:74.194821px;}
.fsf{font-size:77.567313px;}
.fs1b{font-size:84.212867px;}
.fsd{font-size:84.240000px;}
.fsc{font-size:84.384000px;}
.fs1f{font-size:86.160936px;}
.fs24{font-size:90.000000px;}
.fs20{font-size:90.077342px;}
.fs25{font-size:90.144000px;}
.fs21{font-size:92.069260px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs1e{font-size:97.910154px;}
.fs19{font-size:107.965214px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fs13{font-size:109.508663px;}
.fs17{font-size:115.551423px;}
.fs6{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fs16{font-size:123.506011px;}
.fse{font-size:126.468445px;}
.fs18{font-size:129.348607px;}
.fs11{font-size:133.308494px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y73{bottom:0.000275px;}
.y63{bottom:0.000366px;}
.yb4{bottom:0.021195px;}
.y93{bottom:1.058690px;}
.ya5{bottom:17.994262px;}
.yc7{bottom:19.673219px;}
.yb3{bottom:33.340351px;}
.y61{bottom:47.232000px;}
.ya4{bottom:52.219235px;}
.yc6{bottom:54.887744px;}
.y72{bottom:57.649332px;}
.y91{bottom:60.175919px;}
.y84{bottom:68.439219px;}
.y62{bottom:68.472000px;}
.ydf{bottom:73.260000px;}
.y60{bottom:74.232000px;}
.yb2{bottom:76.216839px;}
.ya3{bottom:88.027698px;}
.y71{bottom:93.938750px;}
.yc5{bottom:94.233581px;}
.yde{bottom:100.080000px;}
.y5e{bottom:100.188000px;}
.y2b{bottom:110.016000px;}
.y90{bottom:111.106933px;}
.y83{bottom:117.676949px;}
.y70{bottom:117.967754px;}
.yb1{bottom:120.765959px;}
.ya2{bottom:124.735871px;}
.y5d{bottom:127.224000px;}
.y1c{bottom:129.312000px;}
.yc4{bottom:139.914099px;}
.y2a{bottom:142.416000px;}
.y5f{bottom:148.464000px;}
.y82{bottom:149.170981px;}
.ydd{bottom:153.720000px;}
.y5c{bottom:154.230000px;}
.y3a{bottom:154.980000px;}
.y1b{bottom:158.145000px;}
.y8f{bottom:158.534755px;}
.ya1{bottom:162.523696px;}
.yb0{bottom:165.315079px;}
.y6f{bottom:168.344351px;}
.y50{bottom:175.320000px;}
.y5a{bottom:180.180000px;}
.y29{bottom:182.370000px;}
.ydc{bottom:182.700000px;}
.yc3{bottom:185.363460px;}
.yf{bottom:190.770000px;}
.y8e{bottom:191.734231px;}
.y51{bottom:191.880000px;}
.y81{bottom:194.458234px;}
.y1a{bottom:194.505000px;}
.y39{bottom:200.880000px;}
.y6e{bottom:204.809419px;}
.ya0{bottom:205.529840px;}
.y59{bottom:207.180000px;}
.yaf{bottom:209.680618px;}
.yc2{bottom:211.757959px;}
.y28{bottom:214.770000px;}
.y19{bottom:223.305000px;}
.ydb{bottom:224.130000px;}
.y80{bottom:225.952267px;}
.y5b{bottom:228.420000px;}
.y38{bottom:233.280000px;}
.y58{bottom:234.180000px;}
.ye{bottom:234.330000px;}
.y5{bottom:235.080000px;}
.ycf{bottom:237.675000px;}
.yc1{bottom:238.119670px;}
.y8d{bottom:239.197984px;}
.y6d{bottom:248.054601px;}
.y9f{bottom:248.535983px;}
.yda{bottom:251.130000px;}
.yae{bottom:254.229738px;}
.y27{bottom:257.790000px;}
.y18{bottom:259.485000px;}
.y56{bottom:260.175000px;}
.y4{bottom:267.480000px;}
.y7f{bottom:271.272112px;}
.y8c{bottom:272.397460px;}
.yc0{bottom:277.662237px;}
.yd{bottom:277.920000px;}
.y37{bottom:278.310000px;}
.yce{bottom:280.875000px;}
.y55{bottom:287.175000px;}
.y17{bottom:288.285000px;}
.y6c{bottom:291.475434px;}
.yd9{bottom:291.630000px;}
.y9e{bottom:291.752059px;}
.yad{bottom:298.778858px;}
.y7e{bottom:302.971988px;}
.y36{bottom:307.110000px;}
.y57{bottom:308.415000px;}
.y26{bottom:313.455000px;}
.y54{bottom:314.175000px;}
.ybf{bottom:317.237592px;}
.yd8{bottom:318.630000px;}
.y8b{bottom:319.430051px;}
.yc{bottom:321.300000px;}
.y3{bottom:321.330000px;}
.y16{bottom:326.130000px;}
.y6b{bottom:327.940502px;}
.ycd{bottom:337.605000px;}
.y52{bottom:340.200000px;}
.y9c{bottom:341.955884px;}
.yac{bottom:343.123999px;}
.y35{bottom:343.470000px;}
.y25{bottom:345.855000px;}
.y8a{bottom:352.629527px;}
.y7d{bottom:355.462043px;}
.yd7{bottom:359.130000px;}
.y53{bottom:361.440000px;}
.ybe{bottom:362.878764px;}
.y9d{bottom:364.448637px;}
.yb{bottom:364.860000px;}
.y6a{bottom:365.881035px;}
.y4f{bottom:367.200000px;}
.y34{bottom:372.270000px;}
.y15{bottom:372.750000px;}
.ycc{bottom:380.805000px;}
.y24{bottom:385.815000px;}
.yab{bottom:387.673119px;}
.y2{bottom:393.150000px;}
.y4d{bottom:393.195000px;}
.y99{bottom:393.599245px;}
.y33{bottom:401.070000px;}
.y7b{bottom:401.416572px;}
.y14{bottom:401.550000px;}
.y89{bottom:407.872161px;}
.ybd{bottom:408.372389px;}
.ya{bottom:410.070000px;}
.yd6{bottom:412.635000px;}
.y4e{bottom:414.435000px;}
.y9a{bottom:416.091998px;}
.y9b{bottom:418.971070px;}
.y4c{bottom:420.195000px;}
.y69{bottom:426.638584px;}
.y7c{bottom:427.146991px;}
.y23{bottom:429.045000px;}
.yaa{bottom:432.222239px;}
.ybc{bottom:434.734100px;}
.ycb{bottom:435.885000px;}
.y32{bottom:437.475000px;}
.y13{bottom:437.910000px;}
.yd5{bottom:441.435000px;}
.y4a{bottom:446.220000px;}
.y98{bottom:452.980113px;}
.y88{bottom:456.162308px;}
.ybb{bottom:461.095811px;}
.y7a{bottom:463.169577px;}
.y1{bottom:464.835000px;}
.y31{bottom:466.275000px;}
.y12{bottom:466.740000px;}
.y9{bottom:466.770000px;}
.y4b{bottom:467.460000px;}
.y49{bottom:473.220000px;}
.yca{bottom:479.265000px;}
.y66{bottom:479.544550px;}
.ya9{bottom:483.176316px;}
.y97{bottom:483.930141px;}
.y22{bottom:484.665000px;}
.y79{bottom:494.663610px;}
.y30{bottom:495.075000px;}
.y68{bottom:495.353106px;}
.yd4{bottom:495.795000px;}
.y47{bottom:499.245000px;}
.yba{bottom:500.638378px;}
.y11{bottom:502.920000px;}
.y67{bottom:509.264634px;}
.y8{bottom:509.970000px;}
.y21{bottom:517.065000px;}
.y87{bottom:518.285570px;}
.y48{bottom:520.485000px;}
.yc9{bottom:522.870000px;}
.yd3{bottom:524.805000px;}
.y46{bottom:526.245000px;}
.y96{bottom:526.936284px;}
.y2f{bottom:532.155000px;}
.y78{bottom:539.983455px;}
.ya8{bottom:540.453756px;}
.y10{bottom:540.720000px;}
.yb9{bottom:546.312338px;}
.y64{bottom:547.872640px;}
.y20{bottom:549.465000px;}
.y44{bottom:552.210000px;}
.y7{bottom:553.170000px;}
.y86{bottom:566.629612px;}
.yc8{bottom:568.050000px;}
.y95{bottom:577.365037px;}
.y65{bottom:577.592725px;}
.y2e{bottom:578.055000px;}
.yd2{bottom:579.165000px;}
.y43{bottom:579.210000px;}
.y77{bottom:585.268993px;}
.y1f{bottom:589.290000px;}
.yb8{bottom:597.658656px;}
.ya7{bottom:597.792390px;}
.y45{bottom:600.450000px;}
.y42{bottom:606.210000px;}
.yd1{bottom:608.145000px;}
.y2d{bottom:610.485000px;}
.y40{bottom:632.235000px;}
.y1e{bottom:632.490000px;}
.y6{bottom:633.990000px;}
.y94{bottom:634.586600px;}
.y76{bottom:637.964891px;}
.yb7{bottom:649.250886px;}
.y85{bottom:651.855000px;}
.y41{bottom:653.475000px;}
.y3f{bottom:659.235000px;}
.ya6{bottom:661.860000px;}
.y2c{bottom:675.210000px;}
.yd0{bottom:679.680000px;}
.y74{bottom:683.902266px;}
.y3d{bottom:685.260000px;}
.yb6{bottom:687.613078px;}
.y1d{bottom:693.720000px;}
.y92{bottom:694.620000px;}
.y3e{bottom:706.500000px;}
.y3c{bottom:712.260000px;}
.y75{bottom:712.926178px;}
.yb5{bottom:726.204787px;}
.y3b{bottom:739.155000px;}
.h16{height:31.140384px;}
.h2c{height:47.472010px;}
.h22{height:48.512695px;}
.h1b{height:51.805954px;}
.h1f{height:54.305256px;}
.he{height:57.051211px;}
.hf{height:57.148734px;}
.h38{height:62.666016px;}
.h39{height:62.766281px;}
.h3a{height:62.841797px;}
.h36{height:64.286642px;}
.h2f{height:65.862998px;}
.hb{height:66.676641px;}
.hc{height:66.776906px;}
.h15{height:68.212271px;}
.h32{height:68.365000px;}
.hd{height:68.668734px;}
.h2e{height:71.590215px;}
.h37{height:72.007494px;}
.h11{height:73.142578px;}
.h10{height:73.240102px;}
.h3{height:75.199219px;}
.h4{height:75.299484px;}
.h2b{height:75.385867px;}
.h21{height:76.463569px;}
.h1c{height:77.150691px;}
.h20{height:77.265634px;}
.h27{height:80.682878px;}
.h35{height:80.965204px;}
.h7{height:83.721797px;}
.h2d{height:83.760552px;}
.h8{height:83.822063px;}
.h31{height:86.101654px;}
.h1a{height:88.305603px;}
.h33{height:89.593528px;}
.h17{height:91.640221px;}
.h19{height:93.616290px;}
.h2a{height:94.944019px;}
.h1e{height:96.301320px;}
.h18{height:98.679530px;}
.h5{height:100.265625px;}
.h6{height:100.365891px;}
.h25{height:101.615289px;}
.h26{height:105.095743px;}
.h14{height:111.215658px;}
.h9{height:116.809453px;}
.ha{height:116.909719px;}
.h23{height:122.842649px;}
.h28{height:128.653864px;}
.h2{height:200.531250px;}
.h1{height:200.631516px;}
.h12{height:371.160000px;}
.h13{height:600.555000px;}
.h24{height:601.122574px;}
.h30{height:626.920661px;}
.h29{height:666.610222px;}
.h1d{height:731.445000px;}
.h34{height:753.534079px;}
.h0{height:810.000000px;}
.w2{width:459.360000px;}
.w8{width:860.082983px;}
.w3{width:1119.375000px;}
.w5{width:1213.299177px;}
.w6{width:1233.099010px;}
.w4{width:1270.300426px;}
.w7{width:1291.648623px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3e{left:4.499542px;}
.x3a{left:6.659318px;}
.x18{left:33.093516px;}
.x43{left:53.029500px;}
.x33{left:61.754169px;}
.x26{left:63.236030px;}
.x44{left:68.375398px;}
.x41{left:74.155500px;}
.xf{left:76.283979px;}
.x9{left:77.327979px;}
.xc{left:84.311979px;}
.x34{left:93.383979px;}
.x37{left:94.754990px;}
.x10{left:97.883979px;}
.x35{left:99.562500px;}
.x11{left:108.683979px;}
.xa{left:109.727979px;}
.x17{left:114.375000px;}
.xd{left:116.711979px;}
.x12{left:130.283979px;}
.xb{left:131.327979px;}
.x3b{left:135.562053px;}
.x6{left:136.799979px;}
.xe{left:138.311979px;}
.x46{left:142.487979px;}
.x7{left:158.429979px;}
.x28{left:166.365728px;}
.x8{left:169.229979px;}
.x14{left:190.979979px;}
.x29{left:219.879147px;}
.x2a{left:247.874371px;}
.x19{left:255.087132px;}
.x1{left:266.249979px;}
.x3f{left:270.047213px;}
.x2{left:291.809979px;}
.x16{left:305.310000px;}
.x2b{left:329.801570px;}
.x13{left:366.764979px;}
.x1f{left:407.749463px;}
.x1a{left:444.250707px;}
.x3c{left:473.456278px;}
.x5{left:504.974979px;}
.x3{left:523.289979px;}
.x1b{left:562.291307px;}
.x4{left:618.914979px;}
.x45{left:631.557602px;}
.x15{left:650.309979px;}
.x1c{left:656.144124px;}
.x3d{left:710.356898px;}
.x20{left:725.914551px;}
.x24{left:760.905159px;}
.x25{left:776.924955px;}
.x21{left:803.940793px;}
.x1d{left:816.166426px;}
.x2c{left:830.713656px;}
.x2d{left:852.121768px;}
.x27{left:907.015537px;}
.x32{left:914.287634px;}
.x1e{left:928.515782px;}
.x22{left:938.844336px;}
.x2e{left:968.888611px;}
.x2f{left:970.329541px;}
.x38{left:999.467143px;}
.x36{left:1011.856799px;}
.x40{left:1017.825259px;}
.x23{left:1023.194182px;}
.x30{left:1063.578339px;}
.x42{left:1085.039507px;}
.x39{left:1233.848022px;}
.x31{left:1270.900810px;}
@media print{
.v2{vertical-align:-105.671411pt;}
.v3{vertical-align:-91.485934pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.240000pt;}
.ls2{letter-spacing:-5.546667pt;}
.ls3{letter-spacing:-5.290667pt;}
.ls4{letter-spacing:-5.120000pt;}
.ls1{letter-spacing:-5.045333pt;}
.ls29{letter-spacing:-1.040000pt;}
.ls51{letter-spacing:-0.766510pt;}
.ls5b{letter-spacing:-0.699482pt;}
.ls6b{letter-spacing:-0.544000pt;}
.ls50{letter-spacing:-0.476514pt;}
.ls5c{letter-spacing:-0.349741pt;}
.ls6a{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.313067pt;}
.ls2e{letter-spacing:-0.306667pt;}
.ls31{letter-spacing:-0.284267pt;}
.ls2f{letter-spacing:-0.268800pt;}
.ls6f{letter-spacing:-0.268267pt;}
.ls1e{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls68{letter-spacing:-0.240000pt;}
.ls2b{letter-spacing:-0.224000pt;}
.ls4b{letter-spacing:-0.211637pt;}
.ls16{letter-spacing:-0.173867pt;}
.ls69{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.155733pt;}
.ls17{letter-spacing:-0.108800pt;}
.ls25{letter-spacing:-0.081067pt;}
.ls6c{letter-spacing:-0.057600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6e{letter-spacing:0.000003pt;}
.ls28{letter-spacing:0.001280pt;}
.ls2c{letter-spacing:0.024960pt;}
.ls1d{letter-spacing:0.028800pt;}
.ls5a{letter-spacing:0.036373pt;}
.ls63{letter-spacing:0.045333pt;}
.ls70{letter-spacing:0.048000pt;}
.ls32{letter-spacing:0.053227pt;}
.ls24{letter-spacing:0.067733pt;}
.ls30{letter-spacing:0.081067pt;}
.ls6d{letter-spacing:0.094933pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.099733pt;}
.ls27{letter-spacing:0.105067pt;}
.ls58{letter-spacing:0.116580pt;}
.ls6{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.133867pt;}
.ls33{letter-spacing:0.158933pt;}
.ls64{letter-spacing:0.160000pt;}
.ls67{letter-spacing:0.179733pt;}
.ls14{letter-spacing:0.202667pt;}
.ls61{letter-spacing:0.240000pt;}
.ls15{letter-spacing:0.245333pt;}
.lsc{letter-spacing:0.245760pt;}
.ls53{letter-spacing:0.255918pt;}
.ls7{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.268800pt;}
.ls1c{letter-spacing:0.273067pt;}
.ls3f{letter-spacing:0.299777pt;}
.ls11{letter-spacing:0.305600pt;}
.lsf{letter-spacing:0.320000pt;}
.ls59{letter-spacing:0.349741pt;}
.ls43{letter-spacing:0.365944pt;}
.ls66{letter-spacing:0.368000pt;}
.ls4f{letter-spacing:0.383255pt;}
.ls22{letter-spacing:0.426667pt;}
.ls44{letter-spacing:0.681387pt;}
.ls57{letter-spacing:0.699482pt;}
.ls47{letter-spacing:0.731887pt;}
.ls52{letter-spacing:0.766510pt;}
.ls45{letter-spacing:1.280803pt;}
.ls4d{letter-spacing:1.437973pt;}
.ls4c{letter-spacing:1.533021pt;}
.ls54{letter-spacing:1.823413pt;}
.ls3d{letter-spacing:2.922826pt;}
.ls3b{letter-spacing:2.997771pt;}
.ls49{letter-spacing:3.659437pt;}
.ls41{letter-spacing:4.496656pt;}
.ls3a{letter-spacing:5.171154pt;}
.ls38{letter-spacing:5.246098pt;}
.ls37{letter-spacing:5.995541pt;}
.ls40{letter-spacing:10.117476pt;}
.ls48{letter-spacing:10.246425pt;}
.ls4a{letter-spacing:12.442087pt;}
.ls4e{letter-spacing:14.372067pt;}
.ls46{letter-spacing:16.101524pt;}
.ls34{letter-spacing:17.237181pt;}
.ls35{letter-spacing:18.111530pt;}
.ls19{letter-spacing:23.816960pt;}
.ls18{letter-spacing:23.862400pt;}
.ls3e{letter-spacing:24.731607pt;}
.ls3c{letter-spacing:24.856514pt;}
.ls12{letter-spacing:26.496000pt;}
.ls10{letter-spacing:26.560000pt;}
.ls36{letter-spacing:26.979935pt;}
.ls39{letter-spacing:27.104842pt;}
.ls65{letter-spacing:29.200000pt;}
.ls60{letter-spacing:29.840000pt;}
.lse{letter-spacing:31.314560pt;}
.lsb{letter-spacing:31.360000pt;}
.ls8{letter-spacing:31.421227pt;}
.ls5{letter-spacing:31.466667pt;}
.ls56{letter-spacing:31.989693pt;}
.ls5d{letter-spacing:38.801493pt;}
.lsd{letter-spacing:38.812160pt;}
.ls5e{letter-spacing:38.846933pt;}
.lsa{letter-spacing:38.857600pt;}
.ls1f{letter-spacing:42.674560pt;}
.ls20{letter-spacing:42.720000pt;}
.ls21{letter-spacing:46.582400pt;}
.ls55{letter-spacing:47.984540pt;}
.ls62{letter-spacing:48.354560pt;}
.ls5f{letter-spacing:48.400000pt;}
.ls1a{letter-spacing:65.737600pt;}
.ls42{letter-spacing:80.939804pt;}
.ws37{word-spacing:-117.662494pt;}
.ws3b{word-spacing:-117.587549pt;}
.ws39{word-spacing:-116.913051pt;}
.ws3c{word-spacing:-115.414166pt;}
.ws3d{word-spacing:-115.339221pt;}
.ws48{word-spacing:-114.976540pt;}
.ws38{word-spacing:-112.416395pt;}
.ws46{word-spacing:-104.245396pt;}
.ws47{word-spacing:-104.150349pt;}
.ws45{word-spacing:-102.712376pt;}
.ws43{word-spacing:-98.022421pt;}
.ws4d{word-spacing:-97.792492pt;}
.ws3f{word-spacing:-97.341034pt;}
.ws4c{word-spacing:-95.969079pt;}
.ws4f{word-spacing:-87.031248pt;}
.ws51{word-spacing:-82.538824pt;}
.ws52{word-spacing:-81.839342pt;}
.ws54{word-spacing:-81.139861pt;}
.ws3a{word-spacing:-74.944263pt;}
.ws36{word-spacing:-68.948722pt;}
.ws44{word-spacing:-65.137985pt;}
.ws1{word-spacing:-64.032000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.986667pt;}
.ws19{word-spacing:-37.312000pt;}
.ws18{word-spacing:-37.280000pt;}
.wsb{word-spacing:-32.256000pt;}
.ws7{word-spacing:-32.000000pt;}
.wsc{word-spacing:-26.720000pt;}
.ws10{word-spacing:-26.611200pt;}
.ws4b{word-spacing:-26.444604pt;}
.ws49{word-spacing:-25.678094pt;}
.ws4a{word-spacing:-24.911584pt;}
.ws40{word-spacing:-24.701202pt;}
.ws42{word-spacing:-24.335259pt;}
.ws1c{word-spacing:-24.000000pt;}
.ws4e{word-spacing:-23.992270pt;}
.ws50{word-spacing:-21.757812pt;}
.ws20{word-spacing:-21.413867pt;}
.ws21{word-spacing:-21.385067pt;}
.ws23{word-spacing:-21.312000pt;}
.ws1e{word-spacing:-21.280000pt;}
.ws53{word-spacing:-20.459836pt;}
.ws7b{word-spacing:-20.368000pt;}
.ws22{word-spacing:-20.240000pt;}
.ws7c{word-spacing:-20.211733pt;}
.ws6b{word-spacing:-20.000000pt;}
.ws64{word-spacing:-19.840000pt;}
.ws63{word-spacing:-19.760000pt;}
.ws26{word-spacing:-18.752000pt;}
.ws2a{word-spacing:-18.720000pt;}
.ws3{word-spacing:-12.720853pt;}
.ws83{word-spacing:-1.893333pt;}
.ws15{word-spacing:-1.749120pt;}
.ws2{word-spacing:-1.650688pt;}
.ws58{word-spacing:-1.182080pt;}
.ws7a{word-spacing:-1.093333pt;}
.ws11{word-spacing:-1.052075pt;}
.ws65{word-spacing:-1.040000pt;}
.ws6{word-spacing:-1.024000pt;}
.ws69{word-spacing:-0.880000pt;}
.ws56{word-spacing:-0.813440pt;}
.wse{word-spacing:-0.809301pt;}
.ws28{word-spacing:-0.742400pt;}
.ws59{word-spacing:-0.674133pt;}
.ws1a{word-spacing:-0.645120pt;}
.ws84{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.602240pt;}
.ws17{word-spacing:-0.533333pt;}
.ws5b{word-spacing:-0.488960pt;}
.ws67{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.460032pt;}
.wsf{word-spacing:-0.436907pt;}
.ws32{word-spacing:-0.337600pt;}
.ws34{word-spacing:-0.211840pt;}
.ws68{word-spacing:-0.160000pt;}
.ws85{word-spacing:-0.117333pt;}
.ws3e{word-spacing:-0.112416pt;}
.ws41{word-spacing:-0.097341pt;}
.ws13{word-spacing:-0.085504pt;}
.ws12{word-spacing:-0.081920pt;}
.ws82{word-spacing:-0.080000pt;}
.ws57{word-spacing:-0.062933pt;}
.ws30{word-spacing:-0.051840pt;}
.ws2e{word-spacing:-0.046720pt;}
.ws73{word-spacing:-0.023424pt;}
.ws5{word-spacing:0.000000pt;}
.ws74{word-spacing:0.050432pt;}
.ws1b{word-spacing:0.079787pt;}
.ws2d{word-spacing:0.081707pt;}
.ws5f{word-spacing:0.128000pt;}
.ws6a{word-spacing:0.160000pt;}
.ws6e{word-spacing:0.165120pt;}
.ws55{word-spacing:0.178688pt;}
.ws71{word-spacing:0.229269pt;}
.ws5d{word-spacing:0.234667pt;}
.wsa{word-spacing:0.256000pt;}
.ws5c{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.522667pt;}
.ws70{word-spacing:0.525739pt;}
.ws1d{word-spacing:0.576000pt;}
.ws5e{word-spacing:0.618667pt;}
.ws16{word-spacing:0.626560pt;}
.ws9{word-spacing:0.640000pt;}
.ws6f{word-spacing:0.658176pt;}
.ws27{word-spacing:0.684331pt;}
.ws72{word-spacing:0.689408pt;}
.ws5a{word-spacing:0.701440pt;}
.ws33{word-spacing:0.735019pt;}
.ws66{word-spacing:0.880000pt;}
.wsd{word-spacing:1.045333pt;}
.ws8{word-spacing:1.056000pt;}
.ws14{word-spacing:1.102507pt;}
.ws24{word-spacing:1.152000pt;}
.ws2b{word-spacing:1.171499pt;}
.ws2c{word-spacing:1.354667pt;}
.ws1f{word-spacing:1.364309pt;}
.ws31{word-spacing:1.546667pt;}
.ws6d{word-spacing:1.629440pt;}
.ws35{word-spacing:1.706667pt;}
.ws79{word-spacing:8.960000pt;}
.ws77{word-spacing:9.040000pt;}
.ws78{word-spacing:9.120000pt;}
.ws75{word-spacing:9.200000pt;}
.ws61{word-spacing:9.520000pt;}
.ws76{word-spacing:9.600000pt;}
.ws60{word-spacing:9.840000pt;}
.ws62{word-spacing:10.160000pt;}
.ws80{word-spacing:12.826667pt;}
.ws7f{word-spacing:12.960000pt;}
.ws7d{word-spacing:13.040000pt;}
.ws7e{word-spacing:13.280000pt;}
.ws81{word-spacing:13.440000pt;}
.ws25{word-spacing:1161.099861pt;}
._19{margin-left:-11.525760pt;}
._14{margin-left:-7.776000pt;}
._1{margin-left:-6.493696pt;}
._0{margin-left:-5.122560pt;}
._4{margin-left:-4.098048pt;}
._b{margin-left:-2.865408pt;}
._9{margin-left:-1.920000pt;}
._3{margin-left:-1.021440pt;}
._7{width:1.248000pt;}
._6{width:2.688000pt;}
._5{width:4.416000pt;}
._15{width:5.326754pt;}
._18{width:6.236849pt;}
._1b{width:8.347613pt;}
._17{width:9.778499pt;}
._12{width:11.241387pt;}
._10{width:12.237440pt;}
._a{width:13.450240pt;}
._e{width:14.792533pt;}
._16{width:16.172973pt;}
._1c{width:17.280000pt;}
._1f{width:18.698662pt;}
._13{width:20.268629pt;}
._1e{width:21.244160pt;}
._f{width:22.864085pt;}
._d{width:25.238528pt;}
._1a{width:26.421511pt;}
._c{width:27.648512pt;}
._1d{width:31.042773pt;}
._8{width:33.554773pt;}
._20{width:34.551893pt;}
._11{width:48.754944pt;}
._2{width:52.380416pt;}
.fs10{font-size:31.476591pt;}
.fs1a{font-size:47.984540pt;}
.fs15{font-size:49.036461pt;}
.fs14{font-size:54.891561pt;}
.fs1d{font-size:58.861035pt;}
.fs22{font-size:61.554377pt;}
.fs1c{font-size:63.979386pt;}
.fs23{font-size:64.352303pt;}
.fs12{font-size:65.950952pt;}
.fsf{font-size:68.948722pt;}
.fs1b{font-size:74.855882pt;}
.fsd{font-size:74.880000pt;}
.fsc{font-size:75.008000pt;}
.fs1f{font-size:76.587498pt;}
.fs24{font-size:80.000000pt;}
.fs20{font-size:80.068748pt;}
.fs25{font-size:80.128000pt;}
.fs21{font-size:81.839342pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs1e{font-size:87.031248pt;}
.fs19{font-size:95.969079pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fs13{font-size:97.341034pt;}
.fs17{font-size:102.712376pt;}
.fs6{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fs16{font-size:109.783121pt;}
.fse{font-size:112.416395pt;}
.fs18{font-size:114.976540pt;}
.fs11{font-size:118.496439pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:0.000244pt;}
.y63{bottom:0.000326pt;}
.yb4{bottom:0.018840pt;}
.y93{bottom:0.941058pt;}
.ya5{bottom:15.994900pt;}
.yc7{bottom:17.487306pt;}
.yb3{bottom:29.635867pt;}
.y61{bottom:41.984000pt;}
.ya4{bottom:46.417098pt;}
.yc6{bottom:48.789105pt;}
.y72{bottom:51.243851pt;}
.y91{bottom:53.489705pt;}
.y84{bottom:60.834861pt;}
.y62{bottom:60.864000pt;}
.ydf{bottom:65.120000pt;}
.y60{bottom:65.984000pt;}
.yb2{bottom:67.748301pt;}
.ya3{bottom:78.246843pt;}
.y71{bottom:83.501111pt;}
.yc5{bottom:83.763183pt;}
.yde{bottom:88.960000pt;}
.y5e{bottom:89.056000pt;}
.y2b{bottom:97.792000pt;}
.y90{bottom:98.761718pt;}
.y83{bottom:104.601732pt;}
.y70{bottom:104.860226pt;}
.yb1{bottom:107.347519pt;}
.ya2{bottom:110.876330pt;}
.y5d{bottom:113.088000pt;}
.y1c{bottom:114.944000pt;}
.yc4{bottom:124.368088pt;}
.y2a{bottom:126.592000pt;}
.y5f{bottom:131.968000pt;}
.y82{bottom:132.596428pt;}
.ydd{bottom:136.640000pt;}
.y5c{bottom:137.093333pt;}
.y3a{bottom:137.760000pt;}
.y1b{bottom:140.573333pt;}
.y8f{bottom:140.919783pt;}
.ya1{bottom:144.465507pt;}
.yb0{bottom:146.946737pt;}
.y6f{bottom:149.639423pt;}
.y50{bottom:155.840000pt;}
.y5a{bottom:160.160000pt;}
.y29{bottom:162.106667pt;}
.ydc{bottom:162.400000pt;}
.yc3{bottom:164.767520pt;}
.yf{bottom:169.573333pt;}
.y8e{bottom:170.430428pt;}
.y51{bottom:170.560000pt;}
.y81{bottom:172.851764pt;}
.y1a{bottom:172.893333pt;}
.y39{bottom:178.560000pt;}
.y6e{bottom:182.052817pt;}
.ya0{bottom:182.693191pt;}
.y59{bottom:184.160000pt;}
.yaf{bottom:186.382772pt;}
.yc2{bottom:188.229297pt;}
.y28{bottom:190.906667pt;}
.y19{bottom:198.493333pt;}
.ydb{bottom:199.226667pt;}
.y80{bottom:200.846460pt;}
.y5b{bottom:203.040000pt;}
.y38{bottom:207.360000pt;}
.y58{bottom:208.160000pt;}
.ye{bottom:208.293333pt;}
.y5{bottom:208.960000pt;}
.ycf{bottom:211.266667pt;}
.yc1{bottom:211.661929pt;}
.y8d{bottom:212.620430pt;}
.y6d{bottom:220.492979pt;}
.y9f{bottom:220.920874pt;}
.yda{bottom:223.226667pt;}
.yae{bottom:225.981990pt;}
.y27{bottom:229.146667pt;}
.y18{bottom:230.653333pt;}
.y56{bottom:231.266667pt;}
.y4{bottom:237.760000pt;}
.y7f{bottom:241.130766pt;}
.y8c{bottom:242.131076pt;}
.yc0{bottom:246.810878pt;}
.yd{bottom:247.040000pt;}
.y37{bottom:247.386667pt;}
.yce{bottom:249.666667pt;}
.y55{bottom:255.266667pt;}
.y17{bottom:256.253333pt;}
.y6c{bottom:259.089275pt;}
.yd9{bottom:259.226667pt;}
.y9e{bottom:259.335164pt;}
.yad{bottom:265.581207pt;}
.y7e{bottom:269.308434pt;}
.y36{bottom:272.986667pt;}
.y57{bottom:274.146667pt;}
.y26{bottom:278.626667pt;}
.y54{bottom:279.266667pt;}
.ybf{bottom:281.988971pt;}
.yd8{bottom:283.226667pt;}
.y8b{bottom:283.937823pt;}
.yc{bottom:285.600000pt;}
.y3{bottom:285.626667pt;}
.y16{bottom:289.893333pt;}
.y6b{bottom:291.502669pt;}
.ycd{bottom:300.093333pt;}
.y52{bottom:302.400000pt;}
.y9c{bottom:303.960786pt;}
.yac{bottom:304.999110pt;}
.y35{bottom:305.306667pt;}
.y25{bottom:307.426667pt;}
.y8a{bottom:313.448468pt;}
.y7d{bottom:315.966261pt;}
.yd7{bottom:319.226667pt;}
.y53{bottom:321.280000pt;}
.ybe{bottom:322.558901pt;}
.y9d{bottom:323.954344pt;}
.yb{bottom:324.320000pt;}
.y6a{bottom:325.227587pt;}
.y4f{bottom:326.400000pt;}
.y34{bottom:330.906667pt;}
.y15{bottom:331.333333pt;}
.ycc{bottom:338.493333pt;}
.y24{bottom:342.946667pt;}
.yab{bottom:344.598328pt;}
.y2{bottom:349.466667pt;}
.y4d{bottom:349.506667pt;}
.y99{bottom:349.865995pt;}
.y33{bottom:356.506667pt;}
.y7b{bottom:356.814730pt;}
.y14{bottom:356.933333pt;}
.y89{bottom:362.553032pt;}
.ybd{bottom:362.997679pt;}
.ya{bottom:364.506667pt;}
.yd6{bottom:366.786667pt;}
.y4e{bottom:368.386667pt;}
.y9a{bottom:369.859554pt;}
.y9b{bottom:372.418729pt;}
.y4c{bottom:373.506667pt;}
.y69{bottom:379.234297pt;}
.y7c{bottom:379.686214pt;}
.y23{bottom:381.373333pt;}
.yaa{bottom:384.197546pt;}
.ybc{bottom:386.430311pt;}
.ycb{bottom:387.453333pt;}
.y32{bottom:388.866667pt;}
.y13{bottom:389.253333pt;}
.yd5{bottom:392.386667pt;}
.y4a{bottom:396.640000pt;}
.y98{bottom:402.648989pt;}
.y88{bottom:405.477607pt;}
.ybb{bottom:409.862943pt;}
.y7a{bottom:411.706291pt;}
.y1{bottom:413.186667pt;}
.y31{bottom:414.466667pt;}
.y12{bottom:414.880000pt;}
.y9{bottom:414.906667pt;}
.y4b{bottom:415.520000pt;}
.y49{bottom:420.640000pt;}
.yca{bottom:426.013333pt;}
.y66{bottom:426.261822pt;}
.ya9{bottom:429.490058pt;}
.y97{bottom:430.160125pt;}
.y22{bottom:430.813333pt;}
.y79{bottom:439.700987pt;}
.y30{bottom:440.066667pt;}
.y68{bottom:440.313872pt;}
.yd4{bottom:440.706667pt;}
.y47{bottom:443.773333pt;}
.yba{bottom:445.011892pt;}
.y11{bottom:447.040000pt;}
.y67{bottom:452.679675pt;}
.y8{bottom:453.306667pt;}
.y21{bottom:459.613333pt;}
.y87{bottom:460.698284pt;}
.y48{bottom:462.653333pt;}
.yc9{bottom:464.773333pt;}
.yd3{bottom:466.493333pt;}
.y46{bottom:467.773333pt;}
.y96{bottom:468.387808pt;}
.y2f{bottom:473.026667pt;}
.y78{bottom:479.985293pt;}
.ya8{bottom:480.403338pt;}
.y10{bottom:480.640000pt;}
.yb9{bottom:485.610967pt;}
.y64{bottom:486.997902pt;}
.y20{bottom:488.413333pt;}
.y44{bottom:490.853333pt;}
.y7{bottom:491.706667pt;}
.y86{bottom:503.670766pt;}
.yc8{bottom:504.933333pt;}
.y95{bottom:513.213366pt;}
.y65{bottom:513.415755pt;}
.y2e{bottom:513.826667pt;}
.yd2{bottom:514.813333pt;}
.y43{bottom:514.853333pt;}
.y77{bottom:520.239104pt;}
.y1f{bottom:523.813333pt;}
.yb8{bottom:531.252139pt;}
.ya7{bottom:531.371013pt;}
.y45{bottom:533.733333pt;}
.y42{bottom:538.853333pt;}
.yd1{bottom:540.573333pt;}
.y2d{bottom:542.653333pt;}
.y40{bottom:561.986667pt;}
.y1e{bottom:562.213333pt;}
.y6{bottom:563.546667pt;}
.y94{bottom:564.076978pt;}
.y76{bottom:567.079903pt;}
.yb7{bottom:577.111899pt;}
.y85{bottom:579.426667pt;}
.y41{bottom:580.866667pt;}
.y3f{bottom:585.986667pt;}
.ya6{bottom:588.320000pt;}
.y2c{bottom:600.186667pt;}
.yd0{bottom:604.160000pt;}
.y74{bottom:607.913125pt;}
.y3d{bottom:609.120000pt;}
.yb6{bottom:611.211625pt;}
.y1d{bottom:616.640000pt;}
.y92{bottom:617.440000pt;}
.y3e{bottom:628.000000pt;}
.y3c{bottom:633.120000pt;}
.y75{bottom:633.712158pt;}
.yb5{bottom:645.515366pt;}
.y3b{bottom:657.026667pt;}
.h16{height:27.680342pt;}
.h2c{height:42.197342pt;}
.h22{height:43.122395pt;}
.h1b{height:46.049737pt;}
.h1f{height:48.271338pt;}
.he{height:50.712187pt;}
.hf{height:50.798875pt;}
.h38{height:55.703125pt;}
.h39{height:55.792250pt;}
.h3a{height:55.859375pt;}
.h36{height:57.143681pt;}
.h2f{height:58.544887pt;}
.hb{height:59.268125pt;}
.hc{height:59.357250pt;}
.h15{height:60.633129pt;}
.h32{height:60.768889pt;}
.hd{height:61.038875pt;}
.h2e{height:63.635747pt;}
.h37{height:64.006661pt;}
.h11{height:65.015625pt;}
.h10{height:65.102312pt;}
.h3{height:66.843750pt;}
.h4{height:66.932875pt;}
.h2b{height:67.009660pt;}
.h21{height:67.967617pt;}
.h1c{height:68.578392pt;}
.h20{height:68.680564pt;}
.h27{height:71.718114pt;}
.h35{height:71.969070pt;}
.h7{height:74.419375pt;}
.h2d{height:74.453824pt;}
.h8{height:74.508500pt;}
.h31{height:76.534804pt;}
.h1a{height:78.493870pt;}
.h33{height:79.638692pt;}
.h17{height:81.457974pt;}
.h19{height:83.214480pt;}
.h2a{height:84.394684pt;}
.h1e{height:85.601173pt;}
.h18{height:87.715138pt;}
.h5{height:89.125000pt;}
.h6{height:89.214125pt;}
.h25{height:90.324701pt;}
.h26{height:93.418439pt;}
.h14{height:98.858363pt;}
.h9{height:103.830625pt;}
.ha{height:103.919750pt;}
.h23{height:109.193466pt;}
.h28{height:114.358990pt;}
.h2{height:178.250000pt;}
.h1{height:178.339125pt;}
.h12{height:329.920000pt;}
.h13{height:533.826667pt;}
.h24{height:534.331176pt;}
.h30{height:557.262809pt;}
.h29{height:592.542420pt;}
.h1d{height:650.173333pt;}
.h34{height:669.808070pt;}
.h0{height:720.000000pt;}
.w2{width:408.320000pt;}
.w8{width:764.518207pt;}
.w3{width:995.000000pt;}
.w5{width:1078.488158pt;}
.w6{width:1096.088009pt;}
.w4{width:1129.155934pt;}
.w7{width:1148.132109pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:3.999592pt;}
.x3a{left:5.919394pt;}
.x18{left:29.416458pt;}
.x43{left:47.137333pt;}
.x33{left:54.892594pt;}
.x26{left:56.209805pt;}
.x44{left:60.778132pt;}
.x41{left:65.916000pt;}
.xf{left:67.807981pt;}
.x9{left:68.735981pt;}
.xc{left:74.943981pt;}
.x34{left:83.007981pt;}
.x37{left:84.226658pt;}
.x10{left:87.007981pt;}
.x35{left:88.500000pt;}
.x11{left:96.607981pt;}
.xa{left:97.535981pt;}
.x17{left:101.666667pt;}
.xd{left:103.743981pt;}
.x12{left:115.807981pt;}
.xb{left:116.735981pt;}
.x3b{left:120.499603pt;}
.x6{left:121.599981pt;}
.xe{left:122.943981pt;}
.x46{left:126.655981pt;}
.x7{left:140.826648pt;}
.x28{left:147.880647pt;}
.x8{left:150.426648pt;}
.x14{left:169.759981pt;}
.x29{left:195.448131pt;}
.x2a{left:220.332774pt;}
.x19{left:226.744118pt;}
.x1{left:236.666648pt;}
.x3f{left:240.041967pt;}
.x2{left:259.386648pt;}
.x16{left:271.386667pt;}
.x2b{left:293.156951pt;}
.x13{left:326.013314pt;}
.x1f{left:362.443967pt;}
.x1a{left:394.889518pt;}
.x3c{left:420.850025pt;}
.x5{left:448.866648pt;}
.x3{left:465.146648pt;}
.x1b{left:499.814495pt;}
.x4{left:550.146648pt;}
.x45{left:561.384535pt;}
.x15{left:578.053314pt;}
.x1c{left:583.239221pt;}
.x3d{left:631.428354pt;}
.x20{left:645.257379pt;}
.x24{left:676.360142pt;}
.x25{left:690.599960pt;}
.x21{left:714.614038pt;}
.x1d{left:725.481267pt;}
.x2c{left:738.412138pt;}
.x2d{left:757.441572pt;}
.x27{left:806.236032pt;}
.x32{left:812.700119pt;}
.x1e{left:825.347362pt;}
.x22{left:834.528299pt;}
.x2e{left:861.234321pt;}
.x2f{left:862.515148pt;}
.x38{left:888.415238pt;}
.x36{left:899.428266pt;}
.x40{left:904.733563pt;}
.x23{left:909.505939pt;}
.x30{left:945.402968pt;}
.x42{left:964.479562pt;}
.x39{left:1096.753798pt;}
.x31{left:1129.689609pt;}
}




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