
    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_a4c537afc1692b19ba8822e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_521a915fd0ddcfbe325455e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a4b6a5c8d23cb9a259383681.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_ab2d8c036db93dcf7057e30d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_3ce4746ad3c3ec6cc354c7b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_6c86f26040d3dfb4b1af92f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-95.116800px;}
.v3{vertical-align:-63.518040px;}
.v4{vertical-align:-3.543120px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:96.623280px;}
.v1{vertical-align:115.199280px;}
.v5{vertical-align:132.436080px;}
.ls14{letter-spacing:-8.809920px;}
.ls22{letter-spacing:-6.823440px;}
.ls11{letter-spacing:-2.872800px;}
.ls24{letter-spacing:-2.527200px;}
.ls37{letter-spacing:-2.106720px;}
.ls38{letter-spacing:-1.819440px;}
.ls21{letter-spacing:-1.769040px;}
.ls12{letter-spacing:-1.627920px;}
.ls13{letter-spacing:-1.436400px;}
.ls23{letter-spacing:-1.432080px;}
.ls3c{letter-spacing:-1.244880px;}
.lsb{letter-spacing:-1.135440px;}
.ls31{letter-spacing:-0.574560px;}
.ls2c{letter-spacing:-0.552960px;}
.ls2f{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.336960px;}
.ls2e{letter-spacing:-0.334800px;}
.ls4{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.312480px;}
.ls16{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.287280px;}
.ls2b{letter-spacing:-0.276480px;}
.ls1e{letter-spacing:-0.240480px;}
.ls9{letter-spacing:-0.191520px;}
.ls6{letter-spacing:-0.156240px;}
.lsc{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.138240px;}
.lsf{letter-spacing:-0.120240px;}
.ls2{letter-spacing:-0.119520px;}
.ls2d{letter-spacing:-0.111600px;}
.ls17{letter-spacing:-0.084240px;}
.ls3{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.067032px;}
.ls3a{letter-spacing:0.114912px;}
.ls25{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.131760px;}
.ls28{letter-spacing:0.138240px;}
.ls15{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.191520px;}
.lse{letter-spacing:0.192240px;}
.ls2a{letter-spacing:0.276480px;}
.ls30{letter-spacing:0.287280px;}
.ls1d{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.299520px;}
.ls1{letter-spacing:0.312480px;}
.ls5{letter-spacing:0.324000px;}
.ls20{letter-spacing:0.336960px;}
.ls1b{letter-spacing:0.383040px;}
.ls3b{letter-spacing:0.440496px;}
.ls1c{letter-spacing:0.478800px;}
.ls26{letter-spacing:18.002880px;}
.ls1a{letter-spacing:27.195840px;}
.ls32{letter-spacing:27.875736px;}
.ls19{letter-spacing:32.387760px;}
.ls33{letter-spacing:41.101320px;}
.lsa{letter-spacing:41.101920px;}
.ls35{letter-spacing:41.102520px;}
.ls36{letter-spacing:51.444000px;}
.ls27{letter-spacing:57.384000px;}
.ls10{letter-spacing:74.147760px;}
.ls34{letter-spacing:318.006000px;}
.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;}
}
.ws9f{word-spacing:-341.424720px;}
.wsa0{word-spacing:-53.634960px;}
.ws48{word-spacing:-53.442720px;}
.ws7{word-spacing:-43.122240px;}
.ws8{word-spacing:-41.932800px;}
.ws9{word-spacing:-41.633280px;}
.ws4b{word-spacing:-40.320000px;}
.ws2d{word-spacing:-40.176000px;}
.wsaf{word-spacing:-40.032000px;}
.ws18{word-spacing:-39.888000px;}
.ws83{word-spacing:-38.707200px;}
.wsa1{word-spacing:-33.546960px;}
.ws1d{word-spacing:-33.306480px;}
.ws9c{word-spacing:-33.186240px;}
.ws86{word-spacing:-30.913200px;}
.ws3{word-spacing:-30.348000px;}
.ws3a{word-spacing:-27.004320px;}
.ws93{word-spacing:-26.908560px;}
.ws19{word-spacing:-26.812800px;}
.wsb{word-spacing:-26.621280px;}
.ws20{word-spacing:-26.429760px;}
.ws52{word-spacing:-26.334000px;}
.ws23{word-spacing:-25.184880px;}
.ws25{word-spacing:-24.993360px;}
.ws65{word-spacing:-23.755680px;}
.ws22{word-spacing:-23.748480px;}
.ws69{word-spacing:-23.418720px;}
.ws2e{word-spacing:-23.334480px;}
.ws31{word-spacing:-23.081760px;}
.ws61{word-spacing:-21.986640px;}
.ws66{word-spacing:-20.891520px;}
.ws8e{word-spacing:-20.304000px;}
.ws6e{word-spacing:-20.016000px;}
.ws8d{word-spacing:-19.584000px;}
.ws58{word-spacing:-2.872800px;}
.ws80{word-spacing:-2.358720px;}
.ws1e{word-spacing:-2.306880px;}
.ws5f{word-spacing:-2.190240px;}
.ws92{word-spacing:-2.122848px;}
.ws55{word-spacing:-2.106720px;}
.wsa6{word-spacing:-2.058840px;}
.wsb0{word-spacing:-2.001384px;}
.wsa2{word-spacing:-1.895400px;}
.ws87{word-spacing:-1.797120px;}
.ws84{word-spacing:-1.755648px;}
.ws6b{word-spacing:-1.730160px;}
.ws34{word-spacing:-1.728000px;}
.ws6a{word-spacing:-1.695384px;}
.wsa3{word-spacing:-1.684800px;}
.ws70{word-spacing:-1.584000px;}
.ws68{word-spacing:-1.583712px;}
.ws49{word-spacing:-1.537920px;}
.ws5{word-spacing:-1.499904px;}
.wsa7{word-spacing:-1.445976px;}
.ws4a{word-spacing:-1.442880px;}
.ws36{word-spacing:-1.436400px;}
.ws94{word-spacing:-1.426824px;}
.ws82{word-spacing:-1.396224px;}
.wsc{word-spacing:-1.374480px;}
.ws3b{word-spacing:-1.177848px;}
.ws6c{word-spacing:-1.152000px;}
.ws4{word-spacing:-1.112400px;}
.ws62{word-spacing:-1.095120px;}
.ws81{word-spacing:-1.010880px;}
.ws28{word-spacing:-1.008000px;}
.ws1f{word-spacing:-0.961200px;}
.ws47{word-spacing:-0.864000px;}
.ws67{word-spacing:-0.825552px;}
.ws5c{word-spacing:-0.800280px;}
.wsa9{word-spacing:-0.766080px;}
.ws60{word-spacing:-0.758160px;}
.ws6f{word-spacing:-0.720000px;}
.wsb1{word-spacing:-0.699048px;}
.ws5b{word-spacing:-0.673920px;}
.ws1c{word-spacing:-0.670320px;}
.wsb2{word-spacing:-0.641592px;}
.ws6{word-spacing:-0.624960px;}
.ws3f{word-spacing:-0.507528px;}
.ws13{word-spacing:-0.468720px;}
.wsb3{word-spacing:-0.440496px;}
.wsa5{word-spacing:-0.383040px;}
.ws63{word-spacing:-0.336960px;}
.ws11{word-spacing:-0.324000px;}
.ws46{word-spacing:-0.288000px;}
.wsa4{word-spacing:-0.287280px;}
.ws35{word-spacing:-0.252720px;}
.wsab{word-spacing:-0.239400px;}
.ws8b{word-spacing:-0.144000px;}
.ws89{word-spacing:-0.138240px;}
.wsf{word-spacing:-0.131760px;}
.ws90{word-spacing:-0.058968px;}
.ws64{word-spacing:-0.050544px;}
.wse{word-spacing:0.000000px;}
.ws74{word-spacing:0.059760px;}
.ws59{word-spacing:0.084240px;}
.ws1{word-spacing:0.119520px;}
.ws9a{word-spacing:0.134064px;}
.wsb5{word-spacing:0.143640px;}
.ws4f{word-spacing:0.144000px;}
.ws16{word-spacing:0.149760px;}
.ws14{word-spacing:0.156240px;}
.wsac{word-spacing:0.162792px;}
.ws29{word-spacing:0.191520px;}
.ws88{word-spacing:0.276480px;}
.ws91{word-spacing:0.286416px;}
.ws33{word-spacing:0.288000px;}
.ws10{word-spacing:0.324000px;}
.ws8a{word-spacing:0.334800px;}
.ws5a{word-spacing:0.336960px;}
.ws2{word-spacing:0.399600px;}
.ws6d{word-spacing:0.432000px;}
.ws85{word-spacing:0.435240px;}
.wsaa{word-spacing:0.450072px;}
.ws8c{word-spacing:0.576000px;}
.ws39{word-spacing:0.727776px;}
.ws3d{word-spacing:0.737352px;}
.ws17{word-spacing:0.766080px;}
.wsd{word-spacing:0.776880px;}
.ws4c{word-spacing:0.919296px;}
.ws50{word-spacing:0.957600px;}
.ws3c{word-spacing:1.120392px;}
.ws1a{word-spacing:1.135440px;}
.ws51{word-spacing:1.158696px;}
.wsad{word-spacing:1.244880px;}
.ws12{word-spacing:1.296000px;}
.ws15{word-spacing:1.347840px;}
.ws2c{word-spacing:1.436400px;}
.wsae{word-spacing:1.532160px;}
.wsb4{word-spacing:1.580040px;}
.ws2a{word-spacing:1.627920px;}
.ws3e{word-spacing:1.704528px;}
.ws5d{word-spacing:1.769040px;}
.ws1b{word-spacing:1.792800px;}
.ws9d{word-spacing:1.886472px;}
.ws4d{word-spacing:1.924776px;}
.wsa8{word-spacing:2.106720px;}
.ws4e{word-spacing:2.202480px;}
.ws38{word-spacing:2.317392px;}
.ws27{word-spacing:2.394000px;}
.wsa{word-spacing:2.757888px;}
.ws7b{word-spacing:2.872800px;}
.ws53{word-spacing:3.064320px;}
.ws57{word-spacing:3.073896px;}
.ws21{word-spacing:3.083472px;}
.ws54{word-spacing:3.638880px;}
.ws37{word-spacing:3.696336px;}
.ws2b{word-spacing:3.830400px;}
.ws56{word-spacing:4.060224px;}
.ws9e{word-spacing:4.309200px;}
.ws5e{word-spacing:13.259376px;}
.ws0{word-spacing:15.286608px;}
.ws26{word-spacing:16.250472px;}
.ws8f{word-spacing:181.368000px;}
.ws72{word-spacing:250.676376px;}
.ws45{word-spacing:280.701288px;}
.ws42{word-spacing:371.587104px;}
.ws32{word-spacing:411.528600px;}
.ws43{word-spacing:423.259200px;}
.ws44{word-spacing:430.422048px;}
.ws30{word-spacing:454.466376px;}
.ws2f{word-spacing:469.132560px;}
.ws9b{word-spacing:469.511280px;}
.ws97{word-spacing:519.402240px;}
.ws95{word-spacing:522.495288px;}
.ws96{word-spacing:533.478960px;}
.ws99{word-spacing:581.646240px;}
.ws98{word-spacing:687.748320px;}
.ws40{word-spacing:687.949416px;}
.ws41{word-spacing:720.459936px;}
.ws7a{word-spacing:739.592784px;}
.ws77{word-spacing:755.029296px;}
.ws7f{word-spacing:761.512248px;}
.ws7c{word-spacing:830.306232px;}
.ws76{word-spacing:840.408912px;}
.ws79{word-spacing:846.460944px;}
.ws71{word-spacing:873.686448px;}
.ws24{word-spacing:927.802968px;}
.ws7d{word-spacing:968.966712px;}
.ws75{word-spacing:980.026992px;}
.ws7e{word-spacing:1112.731200px;}
.ws78{word-spacing:1215.663624px;}
.ws73{word-spacing:3129.848568px;}
._14{margin-left:-2182.405224px;}
._30{margin-left:-318.006000px;}
._16{margin-left:-10.369008px;}
._12{margin-left:-8.153352px;}
._6{margin-left:-7.000056px;}
._1b{margin-left:-4.826304px;}
._7{margin-left:-3.792096px;}
._1{margin-left:-2.563704px;}
._3{margin-left:-1.087632px;}
._0{width:1.995984px;}
._5{width:3.291480px;}
._2{width:5.073624px;}
._8{width:7.402248px;}
._c{width:16.294896px;}
._15{width:22.074696px;}
._b{width:24.433776px;}
._27{width:25.433784px;}
._a{width:26.760744px;}
._4{width:28.300032px;}
._11{width:30.157560px;}
._10{width:41.040000px;}
._f{width:86.088240px;}
._22{width:94.036320px;}
._1f{width:102.757104px;}
._23{width:134.933976px;}
._31{width:170.670240px;}
._e{width:178.994592px;}
._26{width:184.136688px;}
._32{width:196.279200px;}
._20{width:222.395904px;}
._18{width:321.464952px;}
._1e{width:384.381864px;}
._21{width:387.747216px;}
._24{width:420.305616px;}
._1c{width:454.779216px;}
._13{width:506.038248px;}
._9{width:510.604416px;}
._2f{width:545.448960px;}
._28{width:633.643920px;}
._19{width:648.973656px;}
._2e{width:658.694736px;}
._2c{width:661.127040px;}
._2b{width:662.371920px;}
._2d{width:710.060400px;}
._1d{width:718.475040px;}
._d{width:760.394232px;}
._2a{width:763.686000px;}
._29{width:955.059408px;}
._1a{width:965.062440px;}
._25{width:1149.518016px;}
._17{width:1183.633680px;}
.fc2{color:transparent;}
.fc4{color:rgb(191,191,191);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fsa{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fsc{font-size:111.600000px;}
.fs8{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fsb{font-size:138.240000px;}
.fs6{font-size:144.000000px;}
.fs4{font-size:149.760000px;}
.fs3{font-size:156.240000px;}
.fs7{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:23.520000px;}
.yb9{bottom:75.832350px;}
.y54{bottom:77.064600px;}
.y6b{bottom:77.065350px;}
.yca{bottom:78.156390px;}
.y15a{bottom:78.464400px;}
.y18f{bottom:80.881980px;}
.y14c{bottom:82.539900px;}
.y179{bottom:83.520690px;}
.y99{bottom:83.840010px;}
.y2a{bottom:87.482490px;}
.y100{bottom:91.261500px;}
.y17e{bottom:92.518530px;}
.y169{bottom:93.323790px;}
.y72{bottom:94.429200px;}
.ye4{bottom:96.531750px;}
.yf2{bottom:96.589650px;}
.y129{bottom:102.511500px;}
.y6a{bottom:103.029630px;}
.y133{bottom:106.381650px;}
.y15d{bottom:106.913040px;}
.y71{bottom:107.929380px;}
.y98{bottom:109.048830px;}
.y1f{bottom:110.232900px;}
.yc9{bottom:111.265410px;}
.y21{bottom:112.459650px;}
.y19c{bottom:113.631900px;}
.y14a{bottom:113.872680px;}
.y8{bottom:114.550080px;}
.y159{bottom:115.906560px;}
.y46{bottom:115.921650px;}
.y178{bottom:120.962850px;}
.yf0{bottom:124.402200px;}
.y18e{bottom:127.134060px;}
.y17d{bottom:129.960690px;}
.y168{bottom:130.765950px;}
.y69{bottom:131.829450px;}
.y127{bottom:133.850100px;}
.y16d{bottom:134.177190px;}
.y97{bottom:134.257650px;}
.yb5{bottom:136.689810px;}
.y70{bottom:136.729200px;}
.yb7{bottom:137.174700px;}
.y149{bottom:138.028500px;}
.yff{bottom:138.241650px;}
.y1e{bottom:139.032900px;}
.y19b{bottom:140.636220px;}
.y7{bottom:143.349900px;}
.y15c{bottom:144.355200px;}
.yc8{bottom:144.374430px;}
.ye5{bottom:145.894200px;}
.y132{bottom:148.681500px;}
.y158{bottom:153.348720px;}
.y45{bottom:158.221500px;}
.yf1{bottom:158.677500px;}
.y11f{bottom:158.911500px;}
.y18d{bottom:160.075500px;}
.y76{bottom:160.404510px;}
.y139{bottom:163.089900px;}
.yb4{bottom:165.489630px;}
.y96{bottom:166.179780px;}
.ya7{bottom:166.861650px;}
.y177{bottom:167.402850px;}
.y1d{bottom:167.832900px;}
.y16c{bottom:171.619350px;}
.y114{bottom:172.857930px;}
.y22{bottom:173.428350px;}
.y19a{bottom:173.577660px;}
.y68{bottom:174.129450px;}
.y78{bottom:174.804330px;}
.y47{bottom:175.681500px;}
.y167{bottom:177.203790px;}
.yc7{bottom:177.483450px;}
.y181{bottom:177.661650px;}
.y6f{bottom:179.029200px;}
.yfe{bottom:180.541650px;}
.ye6{bottom:184.774200px;}
.y12{bottom:185.304120px;}
.y53{bottom:189.204000px;}
.y73{bottom:189.204150px;}
.y75{bottom:189.204330px;}
.yde{bottom:190.371600px;}
.y157{bottom:190.790880px;}
.y109{bottom:190.885980px;}
.y131{bottom:190.981650px;}
.y95{bottom:191.388600px;}
.y13a{bottom:191.815740px;}
.y193{bottom:192.825420px;}
.ydc{bottom:194.691600px;}
.y1c{bottom:196.632900px;}
.y44{bottom:200.521500px;}
.y77{bottom:203.604150px;}
.y18c{bottom:206.327580px;}
.yb0{bottom:209.173860px;}
.yb3{bottom:210.168960px;}
.y17f{bottom:210.231510px;}
.y17a{bottom:210.235110px;}
.y113{bottom:210.300090px;}
.yc6{bottom:210.592470px;}
.yd5{bottom:210.616410px;}
.y120{bottom:213.435840px;}
.y16e{bottom:214.448010px;}
.y166{bottom:214.645950px;}
.y67{bottom:216.429450px;}
.ya6{bottom:217.801500px;}
.y74{bottom:218.004150px;}
.y199{bottom:219.829740px;}
.y13b{bottom:220.541580px;}
.y6e{bottom:221.329200px;}
.yfd{bottom:222.841650px;}
.y4f{bottom:223.436940px;}
.ye7{bottom:223.654200px;}
.y1b{bottom:225.432900px;}
.y156{bottom:228.233040px;}
.y108{bottom:228.328140px;}
.y180{bottom:228.601500px;}
.y93{bottom:230.024040px;}
.y130{bottom:233.281500px;}
.y23{bottom:234.397050px;}
.ydd{bottom:237.889440px;}
.yaf{bottom:237.973680px;}
.yb2{bottom:238.968780px;}
.y18b{bottom:239.077500px;}
.y32{bottom:240.812580px;}
.y43{bottom:242.821500px;}
.y11{bottom:242.880000px;}
.yc5{bottom:243.701490px;}
.yd4{bottom:243.725430px;}
.y112{bottom:247.742250px;}
.y94{bottom:248.519550px;}
.y13c{bottom:249.267420px;}
.y198{bottom:252.579660px;}
.yf8{bottom:252.945330px;}
.y175{bottom:254.111280px;}
.y1a{bottom:254.232900px;}
.y92{bottom:255.232860px;}
.y16a{bottom:257.480370px;}
.y66{bottom:258.729450px;}
.y9d{bottom:261.361500px;}
.ye8{bottom:262.534200px;}
.y31{bottom:264.968400px;}
.yfc{bottom:265.141500px;}
.y155{bottom:265.675200px;}
.y6d{bottom:266.083470px;}
.y4e{bottom:266.217720px;}
.yae{bottom:266.773500px;}
.yb1{bottom:267.768600px;}
.y121{bottom:267.960180px;}
.ya5{bottom:268.741500px;}
.y6{bottom:268.809900px;}
.y16b{bottom:268.994460px;}
.y192{bottom:272.018940px;}
.y14b{bottom:272.149950px;}
.y107{bottom:274.771740px;}
.ydb{bottom:275.331600px;}
.yc4{bottom:276.810510px;}
.yd3{bottom:276.834450px;}
.yf7{bottom:277.101150px;}
.y13d{bottom:277.993260px;}
.y3b{bottom:279.537180px;}
.y10{bottom:279.541650px;}
.y91{bottom:280.441680px;}
.y19{bottom:283.032900px;}
.y42{bottom:285.121650px;}
.y18a{bottom:285.521100px;}
.yad{bottom:286.067310px;}
.y8f{bottom:287.154990px;}
.y30{bottom:290.126430px;}
.ye2{bottom:290.901000px;}
.y174{bottom:291.553440px;}
.y115{bottom:291.648210px;}
.y128{bottom:293.395800px;}
.y24{bottom:295.365750px;}
.yf6{bottom:298.670730px;}
.y197{bottom:299.023260px;}
.y65{bottom:301.029450px;}
.ye9{bottom:301.414200px;}
.y90{bottom:305.650500px;}
.y164{bottom:306.436620px;}
.y13{bottom:306.600000px;}
.y13e{bottom:306.719100px;}
.yfb{bottom:307.441500px;}
.y61{bottom:308.237010px;}
.y6c{bottom:308.385450px;}
.y15b{bottom:308.503860px;}
.y15e{bottom:308.511780px;}
.y4d{bottom:308.998500px;}
.yc3{bottom:309.919530px;}
.yd2{bottom:309.943470px;}
.y18{bottom:311.832900px;}
.y17{bottom:311.833080px;}
.y106{bottom:312.213900px;}
.y8e{bottom:312.363810px;}
.y12e{bottom:312.891540px;}
.y5{bottom:314.169900px;}
.y2f{bottom:314.282250px;}
.yac{bottom:314.867130px;}
.y189{bottom:318.271020px;}
.ya4{bottom:319.681500px;}
.yda{bottom:321.769440px;}
.y122{bottom:322.484520px;}
.yf5{bottom:322.826550px;}
.ye1{bottom:325.785000px;}
.y41{bottom:327.421650px;}
.y150{bottom:327.646680px;}
.y34{bottom:327.961050px;}
.y173{bottom:328.995600px;}
.yf{bottom:330.481500px;}
.y196{bottom:331.773180px;}
.y13f{bottom:335.444940px;}
.y7e{bottom:336.333930px;}
.y8d{bottom:337.572630px;}
.y20{bottom:340.041600px;}
.yea{bottom:340.294200px;}
.y16{bottom:340.632900px;}
.y138{bottom:342.089850px;}
.yc2{bottom:343.028550px;}
.yd1{bottom:343.052490px;}
.y64{bottom:343.329450px;}
.y163{bottom:343.878780px;}
.yf4{bottom:344.396280px;}
.y60{bottom:345.679170px;}
.y11a{bottom:348.410460px;}
.y110{bottom:349.476660px;}
.y12d{bottom:350.333700px;}
.y191{bottom:351.212460px;}
.y4c{bottom:351.779280px;}
.yfa{bottom:353.701500px;}
.y10a{bottom:355.042560px;}
.y14f{bottom:355.249500px;}
.y153{bottom:355.313250px;}
.y25{bottom:356.334450px;}
.yd9{bottom:359.211600px;}
.y5b{bottom:360.126630px;}
.y8c{bottom:362.781450px;}
.y140{bottom:364.170780px;}
.y188{bottom:364.714620px;}
.y7d{bottom:365.133750px;}
.yab{bottom:367.446150px;}
.yf3{bottom:368.552100px;}
.y8b{bottom:369.494760px;}
.y40{bottom:369.721500px;}
.ya3{bottom:370.621650px;}
.y176{bottom:371.824260px;}
.y9c{bottom:374.941500px;}
.yc1{bottom:376.137570px;}
.yd0{bottom:376.161510px;}
.y123{bottom:377.008860px;}
.yeb{bottom:379.174200px;}
.y162{bottom:381.320940px;}
.ye{bottom:381.421650px;}
.y119{bottom:385.852620px;}
.y10f{bottom:386.918820px;}
.y137{bottom:388.529850px;}
.y2e{bottom:388.754130px;}
.y5f{bottom:392.649450px;}
.y141{bottom:392.896620px;}
.y12f{bottom:393.162360px;}
.y14e{bottom:393.310530px;}
.y4b{bottom:394.560060px;}
.y8a{bottom:394.703580px;}
.y187{bottom:397.464540px;}
.y5a{bottom:397.568790px;}
.yf9{bottom:401.671050px;}
.y152{bottom:401.753250px;}
.y105{bottom:402.510750px;}
.yd8{bottom:405.649440px;}
.y7c{bottom:407.433780px;}
.yc0{bottom:409.246590px;}
.ycf{bottom:409.270530px;}
.y104{bottom:409.450410px;}
.y195{bottom:410.966700px;}
.y3f{bottom:412.021500px;}
.y2d{bottom:412.909950px;}
.y37{bottom:412.995930px;}
.y51{bottom:417.195480px;}
.y26{bottom:417.303150px;}
.yec{bottom:418.054200px;}
.y161{bottom:418.763100px;}
.y9b{bottom:418.870320px;}
.y171{bottom:419.436900px;}
.y89{bottom:419.912400px;}
.y14d{bottom:420.913350px;}
.ya2{bottom:421.559340px;}
.y142{bottom:421.622460px;}
.y118{bottom:423.294780px;}
.y10e{bottom:424.360980px;}
.y11d{bottom:424.362990px;}
.y17b{bottom:428.434740px;}
.y190{bottom:430.214460px;}
.y124{bottom:431.533200px;}
.y55{bottom:431.595450px;}
.y3a{bottom:432.357180px;}
.yd{bottom:432.361500px;}
.yaa{bottom:434.250180px;}
.y81{bottom:434.434140px;}
.y5e{bottom:434.949450px;}
.y59{bottom:435.010950px;}
.y7b{bottom:436.233600px;}
.y4a{bottom:437.340840px;}
.y2c{bottom:438.067980px;}
.ye0{bottom:438.285000px;}
.ybf{bottom:442.355610px;}
.yce{bottom:442.379550px;}
.yd7{bottom:443.091600px;}
.y186{bottom:443.716620px;}
.y154{bottom:444.585510px;}
.y50{bottom:445.995300px;}
.y136{bottom:449.281500px;}
.y143{bottom:450.348300px;}
.y103{bottom:452.231190px;}
.y3e{bottom:454.321500px;}
.y9a{bottom:456.312480px;}
.yed{bottom:456.934200px;}
.y87{bottom:458.547690px;}
.ya1{bottom:459.001500px;}
.y117{bottom:460.736940px;}
.yb6{bottom:461.370450px;}
.y165{bottom:461.591760px;}
.y12b{bottom:461.802990px;}
.y10d{bottom:461.803140px;}
.y11c{bottom:461.805150px;}
.y2b{bottom:462.223800px;}
.ya9{bottom:463.050000px;}
.y80{bottom:463.233960px;}
.y35{bottom:464.036010px;}
.y170{bottom:465.876900px;}
.ybe{bottom:475.464630px;}
.ycb{bottom:475.488570px;}
.y185{bottom:476.658060px;}
.y88{bottom:477.043200px;}
.y5d{bottom:477.249450px;}
.y27{bottom:478.271850px;}
.y7a{bottom:478.533750px;}
.y151{bottom:478.978650px;}
.y144{bottom:479.074140px;}
.y49{bottom:480.121620px;}
.y39{bottom:481.033410px;}
.yc{bottom:483.301500px;}
.y86{bottom:483.756510px;}
.y58{bottom:485.948640px;}
.y125{bottom:486.057540px;}
.yd6{bottom:489.531600px;}
.y15{bottom:491.983230px;}
.y7f{bottom:492.033780px;}
.y135{bottom:492.301500px;}
.y102{bottom:495.011970px;}
.yee{bottom:495.814200px;}
.y3d{bottom:496.621500px;}
.y116{bottom:498.179100px;}
.y12a{bottom:499.245150px;}
.y10c{bottom:499.245300px;}
.y36{bottom:506.553450px;}
.y145{bottom:507.799980px;}
.ybd{bottom:508.597590px;}
.ycd{bottom:508.621530px;}
.y85{bottom:508.965330px;}
.y184{bottom:509.407980px;}
.ya0{bottom:509.939340px;}
.y15f{bottom:512.316750px;}
.y16f{bottom:512.316900px;}
.y14{bottom:520.783050px;}
.y79{bottom:520.833600px;}
.y48{bottom:522.902400px;}
.y194{bottom:522.910140px;}
.y57{bottom:523.390800px;}
.y5c{bottom:523.509450px;}
.y84{bottom:534.174150px;}
.yb{bottom:534.241500px;}
.yef{bottom:534.694200px;}
.y146{bottom:536.525820px;}
.y101{bottom:537.792750px;}
.y134{bottom:538.741500px;}
.y3c{bottom:538.921500px;}
.y28{bottom:539.240550px;}
.yb8{bottom:540.565650px;}
.y38{bottom:540.572190px;}
.y126{bottom:540.581880px;}
.y11b{bottom:541.007760px;}
.ybc{bottom:541.706610px;}
.ycc{bottom:541.730550px;}
.y12c{bottom:542.073810px;}
.y111{bottom:542.073960px;}
.y11e{bottom:542.075970px;}
.y62{bottom:542.596200px;}
.y52{bottom:542.596350px;}
.y63{bottom:542.596650px;}
.y9f{bottom:547.381500px;}
.ya8{bottom:550.300050px;}
.y160{bottom:555.145410px;}
.y17c{bottom:555.149160px;}
.y172{bottom:555.152760px;}
.y183{bottom:555.851580px;}
.y147{bottom:565.251660px;}
.ye3{bottom:572.219850px;}
.y33{bottom:574.602600px;}
.ybb{bottom:574.815630px;}
.ya{bottom:585.181500px;}
.y56{bottom:585.191100px;}
.y182{bottom:588.601500px;}
.y10b{bottom:589.542000px;}
.y9e{bottom:589.861500px;}
.y83{bottom:591.304950px;}
.y148{bottom:593.977500px;}
.y29{bottom:600.209250px;}
.yba{bottom:607.924650px;}
.y4{bottom:629.905500px;}
.y3{bottom:662.305500px;}
.y82{bottom:667.650000px;}
.y2{bottom:696.145500px;}
.ydf{bottom:710.670000px;}
.y9{bottom:710.850000px;}
.h1{height:62.327813px;}
.hc{height:75.093750px;}
.hb{height:87.859687px;}
.h10{height:99.874088px;}
.h6{height:99.874688px;}
.h3{height:112.640625px;}
.hf{height:116.395313px;}
.h9{height:125.406562px;}
.h2{height:137.421562px;}
.he{height:144.180000px;}
.h7{height:150.187500px;}
.h5{height:156.195000px;}
.h4{height:162.953438px;}
.h11{height:184.482968px;}
.h8{height:200.500313px;}
.ha{height:215.073968px;}
.hd{height:232.310767px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4c{left:35.215500px;}
.x4e{left:37.814190px;}
.x1{left:40.612500px;}
.x7{left:42.375000px;}
.x1c{left:44.315250px;}
.x4b{left:45.655500px;}
.x62{left:46.765110px;}
.x5e{left:50.728650px;}
.xf{left:52.124460px;}
.x5f{left:53.319450px;}
.x32{left:58.727100px;}
.x19{left:63.759600px;}
.x5a{left:67.011900px;}
.x76{left:69.052500px;}
.x2{left:70.665000px;}
.xe{left:75.480000px;}
.x4{left:76.714800px;}
.x27{left:78.792450px;}
.xb{left:80.309400px;}
.x8{left:85.312500px;}
.x28{left:88.431150px;}
.x58{left:96.066900px;}
.x73{left:99.872700px;}
.x21{left:101.746950px;}
.x60{left:107.309370px;}
.x1d{left:112.734300px;}
.x6d{left:116.668560px;}
.x13{left:122.770800px;}
.x6c{left:128.335800px;}
.x1a{left:131.634300px;}
.x3f{left:132.688200px;}
.x61{left:138.455310px;}
.x10{left:155.950260px;}
.x59{left:162.846900px;}
.x3{left:164.194800px;}
.x75{left:181.922460px;}
.x74{left:184.260120px;}
.x3a{left:191.742840px;}
.x16{left:194.662620px;}
.x4a{left:199.987800px;}
.x1b{left:214.969440px;}
.x6e{left:216.535080px;}
.x72{left:223.059450px;}
.x4f{left:243.100350px;}
.x57{left:249.529050px;}
.x3b{left:254.739600px;}
.xa{left:278.643750px;}
.x78{left:286.949910px;}
.x42{left:298.018200px;}
.x14{left:301.147740px;}
.x44{left:307.905420px;}
.x43{left:310.969740px;}
.x2a{left:319.719300px;}
.x39{left:333.946440px;}
.x68{left:342.635160px;}
.x4d{left:343.982850px;}
.x66{left:349.189650px;}
.x2b{left:352.660740px;}
.x2c{left:364.726500px;}
.x67{left:370.429500px;}
.x18{left:371.890440px;}
.x56{left:384.153600px;}
.x33{left:393.437400px;}
.x34{left:403.778850px;}
.xc{left:411.029400px;}
.x55{left:415.557000px;}
.x47{left:438.854370px;}
.x5{left:443.554800px;}
.x45{left:445.366050px;}
.x46{left:459.394890px;}
.x50{left:465.751200px;}
.x15{left:468.847440px;}
.x6f{left:470.673750px;}
.x5b{left:478.406400px;}
.x24{left:480.465000px;}
.x22{left:482.760900px;}
.x51{left:486.991200px;}
.x6{left:498.999840px;}
.x25{left:501.705000px;}
.x65{left:553.740810px;}
.x63{left:560.295300px;}
.x53{left:562.185000px;}
.x71{left:574.009410px;}
.x64{left:581.535150px;}
.x79{left:586.776300px;}
.x7a{left:593.324400px;}
.x2d{left:594.559800px;}
.x2e{left:599.036580px;}
.x70{left:601.803750px;}
.x9{left:608.916000px;}
.x2f{left:612.347220px;}
.x54{left:613.557000px;}
.x7b{left:614.564400px;}
.x3c{left:624.148650px;}
.x69{left:629.300850px;}
.x6a{left:635.848950px;}
.x12{left:643.198200px;}
.x20{left:650.929800px;}
.x6b{left:657.088950px;}
.x1e{left:665.329650px;}
.x35{left:686.916750px;}
.x36{left:708.156750px;}
.x23{left:716.223780px;}
.x17{left:717.703740px;}
.x26{left:752.625000px;}
.x48{left:756.039180px;}
.x40{left:770.948430px;}
.x3e{left:774.217920px;}
.x41{left:778.154370px;}
.x29{left:785.641500px;}
.x49{left:792.930720px;}
.x3d{left:796.889100px;}
.x7c{left:810.053220px;}
.x30{left:813.963900px;}
.xd{left:829.164900px;}
.x52{left:852.031200px;}
.x31{left:860.048400px;}
.x11{left:872.029950px;}
.x38{left:877.342050px;}
.x37{left:879.179400px;}
.x5d{left:887.687670px;}
.x5c{left:902.703450px;}
.x77{left:925.768800px;}
.x1f{left:1013.867250px;}
@media print{
.v2{vertical-align:-84.548267pt;}
.v3{vertical-align:-56.460480pt;}
.v4{vertical-align:-3.149440pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:85.887360pt;}
.v1{vertical-align:102.399360pt;}
.v5{vertical-align:117.720960pt;}
.ls14{letter-spacing:-7.831040pt;}
.ls22{letter-spacing:-6.065280pt;}
.ls11{letter-spacing:-2.553600pt;}
.ls24{letter-spacing:-2.246400pt;}
.ls37{letter-spacing:-1.872640pt;}
.ls38{letter-spacing:-1.617280pt;}
.ls21{letter-spacing:-1.572480pt;}
.ls12{letter-spacing:-1.447040pt;}
.ls13{letter-spacing:-1.276800pt;}
.ls23{letter-spacing:-1.272960pt;}
.ls3c{letter-spacing:-1.106560pt;}
.lsb{letter-spacing:-1.009280pt;}
.ls31{letter-spacing:-0.510720pt;}
.ls2c{letter-spacing:-0.491520pt;}
.ls2f{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.299520pt;}
.ls2e{letter-spacing:-0.297600pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.277760pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.255360pt;}
.ls2b{letter-spacing:-0.245760pt;}
.ls1e{letter-spacing:-0.213760pt;}
.ls9{letter-spacing:-0.170240pt;}
.ls6{letter-spacing:-0.138880pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.122880pt;}
.lsf{letter-spacing:-0.106880pt;}
.ls2{letter-spacing:-0.106240pt;}
.ls2d{letter-spacing:-0.099200pt;}
.ls17{letter-spacing:-0.074880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.059584pt;}
.ls3a{letter-spacing:0.102144pt;}
.ls25{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.117120pt;}
.ls28{letter-spacing:0.122880pt;}
.ls15{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.170240pt;}
.lse{letter-spacing:0.170880pt;}
.ls2a{letter-spacing:0.245760pt;}
.ls30{letter-spacing:0.255360pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.266240pt;}
.ls1{letter-spacing:0.277760pt;}
.ls5{letter-spacing:0.288000pt;}
.ls20{letter-spacing:0.299520pt;}
.ls1b{letter-spacing:0.340480pt;}
.ls3b{letter-spacing:0.391552pt;}
.ls1c{letter-spacing:0.425600pt;}
.ls26{letter-spacing:16.002560pt;}
.ls1a{letter-spacing:24.174080pt;}
.ls32{letter-spacing:24.778432pt;}
.ls19{letter-spacing:28.789120pt;}
.ls33{letter-spacing:36.534507pt;}
.lsa{letter-spacing:36.535040pt;}
.ls35{letter-spacing:36.535573pt;}
.ls36{letter-spacing:45.728000pt;}
.ls27{letter-spacing:51.008000pt;}
.ls10{letter-spacing:65.909120pt;}
.ls34{letter-spacing:282.672000pt;}
.ws9f{word-spacing:-303.488640pt;}
.wsa0{word-spacing:-47.675520pt;}
.ws48{word-spacing:-47.504640pt;}
.ws7{word-spacing:-38.330880pt;}
.ws8{word-spacing:-37.273600pt;}
.ws9{word-spacing:-37.007360pt;}
.ws4b{word-spacing:-35.840000pt;}
.ws2d{word-spacing:-35.712000pt;}
.wsaf{word-spacing:-35.584000pt;}
.ws18{word-spacing:-35.456000pt;}
.ws83{word-spacing:-34.406400pt;}
.wsa1{word-spacing:-29.819520pt;}
.ws1d{word-spacing:-29.605760pt;}
.ws9c{word-spacing:-29.498880pt;}
.ws86{word-spacing:-27.478400pt;}
.ws3{word-spacing:-26.976000pt;}
.ws3a{word-spacing:-24.003840pt;}
.ws93{word-spacing:-23.918720pt;}
.ws19{word-spacing:-23.833600pt;}
.wsb{word-spacing:-23.663360pt;}
.ws20{word-spacing:-23.493120pt;}
.ws52{word-spacing:-23.408000pt;}
.ws23{word-spacing:-22.386560pt;}
.ws25{word-spacing:-22.216320pt;}
.ws65{word-spacing:-21.116160pt;}
.ws22{word-spacing:-21.109760pt;}
.ws69{word-spacing:-20.816640pt;}
.ws2e{word-spacing:-20.741760pt;}
.ws31{word-spacing:-20.517120pt;}
.ws61{word-spacing:-19.543680pt;}
.ws66{word-spacing:-18.570240pt;}
.ws8e{word-spacing:-18.048000pt;}
.ws6e{word-spacing:-17.792000pt;}
.ws8d{word-spacing:-17.408000pt;}
.ws58{word-spacing:-2.553600pt;}
.ws80{word-spacing:-2.096640pt;}
.ws1e{word-spacing:-2.050560pt;}
.ws5f{word-spacing:-1.946880pt;}
.ws92{word-spacing:-1.886976pt;}
.ws55{word-spacing:-1.872640pt;}
.wsa6{word-spacing:-1.830080pt;}
.wsb0{word-spacing:-1.779008pt;}
.wsa2{word-spacing:-1.684800pt;}
.ws87{word-spacing:-1.597440pt;}
.ws84{word-spacing:-1.560576pt;}
.ws6b{word-spacing:-1.537920pt;}
.ws34{word-spacing:-1.536000pt;}
.ws6a{word-spacing:-1.507008pt;}
.wsa3{word-spacing:-1.497600pt;}
.ws70{word-spacing:-1.408000pt;}
.ws68{word-spacing:-1.407744pt;}
.ws49{word-spacing:-1.367040pt;}
.ws5{word-spacing:-1.333248pt;}
.wsa7{word-spacing:-1.285312pt;}
.ws4a{word-spacing:-1.282560pt;}
.ws36{word-spacing:-1.276800pt;}
.ws94{word-spacing:-1.268288pt;}
.ws82{word-spacing:-1.241088pt;}
.wsc{word-spacing:-1.221760pt;}
.ws3b{word-spacing:-1.046976pt;}
.ws6c{word-spacing:-1.024000pt;}
.ws4{word-spacing:-0.988800pt;}
.ws62{word-spacing:-0.973440pt;}
.ws81{word-spacing:-0.898560pt;}
.ws28{word-spacing:-0.896000pt;}
.ws1f{word-spacing:-0.854400pt;}
.ws47{word-spacing:-0.768000pt;}
.ws67{word-spacing:-0.733824pt;}
.ws5c{word-spacing:-0.711360pt;}
.wsa9{word-spacing:-0.680960pt;}
.ws60{word-spacing:-0.673920pt;}
.ws6f{word-spacing:-0.640000pt;}
.wsb1{word-spacing:-0.621376pt;}
.ws5b{word-spacing:-0.599040pt;}
.ws1c{word-spacing:-0.595840pt;}
.wsb2{word-spacing:-0.570304pt;}
.ws6{word-spacing:-0.555520pt;}
.ws3f{word-spacing:-0.451136pt;}
.ws13{word-spacing:-0.416640pt;}
.wsb3{word-spacing:-0.391552pt;}
.wsa5{word-spacing:-0.340480pt;}
.ws63{word-spacing:-0.299520pt;}
.ws11{word-spacing:-0.288000pt;}
.ws46{word-spacing:-0.256000pt;}
.wsa4{word-spacing:-0.255360pt;}
.ws35{word-spacing:-0.224640pt;}
.wsab{word-spacing:-0.212800pt;}
.ws8b{word-spacing:-0.128000pt;}
.ws89{word-spacing:-0.122880pt;}
.wsf{word-spacing:-0.117120pt;}
.ws90{word-spacing:-0.052416pt;}
.ws64{word-spacing:-0.044928pt;}
.wse{word-spacing:0.000000pt;}
.ws74{word-spacing:0.053120pt;}
.ws59{word-spacing:0.074880pt;}
.ws1{word-spacing:0.106240pt;}
.ws9a{word-spacing:0.119168pt;}
.wsb5{word-spacing:0.127680pt;}
.ws4f{word-spacing:0.128000pt;}
.ws16{word-spacing:0.133120pt;}
.ws14{word-spacing:0.138880pt;}
.wsac{word-spacing:0.144704pt;}
.ws29{word-spacing:0.170240pt;}
.ws88{word-spacing:0.245760pt;}
.ws91{word-spacing:0.254592pt;}
.ws33{word-spacing:0.256000pt;}
.ws10{word-spacing:0.288000pt;}
.ws8a{word-spacing:0.297600pt;}
.ws5a{word-spacing:0.299520pt;}
.ws2{word-spacing:0.355200pt;}
.ws6d{word-spacing:0.384000pt;}
.ws85{word-spacing:0.386880pt;}
.wsaa{word-spacing:0.400064pt;}
.ws8c{word-spacing:0.512000pt;}
.ws39{word-spacing:0.646912pt;}
.ws3d{word-spacing:0.655424pt;}
.ws17{word-spacing:0.680960pt;}
.wsd{word-spacing:0.690560pt;}
.ws4c{word-spacing:0.817152pt;}
.ws50{word-spacing:0.851200pt;}
.ws3c{word-spacing:0.995904pt;}
.ws1a{word-spacing:1.009280pt;}
.ws51{word-spacing:1.029952pt;}
.wsad{word-spacing:1.106560pt;}
.ws12{word-spacing:1.152000pt;}
.ws15{word-spacing:1.198080pt;}
.ws2c{word-spacing:1.276800pt;}
.wsae{word-spacing:1.361920pt;}
.wsb4{word-spacing:1.404480pt;}
.ws2a{word-spacing:1.447040pt;}
.ws3e{word-spacing:1.515136pt;}
.ws5d{word-spacing:1.572480pt;}
.ws1b{word-spacing:1.593600pt;}
.ws9d{word-spacing:1.676864pt;}
.ws4d{word-spacing:1.710912pt;}
.wsa8{word-spacing:1.872640pt;}
.ws4e{word-spacing:1.957760pt;}
.ws38{word-spacing:2.059904pt;}
.ws27{word-spacing:2.128000pt;}
.wsa{word-spacing:2.451456pt;}
.ws7b{word-spacing:2.553600pt;}
.ws53{word-spacing:2.723840pt;}
.ws57{word-spacing:2.732352pt;}
.ws21{word-spacing:2.740864pt;}
.ws54{word-spacing:3.234560pt;}
.ws37{word-spacing:3.285632pt;}
.ws2b{word-spacing:3.404800pt;}
.ws56{word-spacing:3.609088pt;}
.ws9e{word-spacing:3.830400pt;}
.ws5e{word-spacing:11.786112pt;}
.ws0{word-spacing:13.588096pt;}
.ws26{word-spacing:14.444864pt;}
.ws8f{word-spacing:161.216000pt;}
.ws72{word-spacing:222.823445pt;}
.ws45{word-spacing:249.512256pt;}
.ws42{word-spacing:330.299648pt;}
.ws32{word-spacing:365.803200pt;}
.ws43{word-spacing:376.230400pt;}
.ws44{word-spacing:382.597376pt;}
.ws30{word-spacing:403.970112pt;}
.ws2f{word-spacing:417.006720pt;}
.ws9b{word-spacing:417.343360pt;}
.ws97{word-spacing:461.690880pt;}
.ws95{word-spacing:464.440256pt;}
.ws96{word-spacing:474.203520pt;}
.ws99{word-spacing:517.018880pt;}
.ws98{word-spacing:611.331840pt;}
.ws40{word-spacing:611.510592pt;}
.ws41{word-spacing:640.408832pt;}
.ws7a{word-spacing:657.415808pt;}
.ws77{word-spacing:671.137152pt;}
.ws7f{word-spacing:676.899776pt;}
.ws7c{word-spacing:738.049984pt;}
.ws76{word-spacing:747.030144pt;}
.ws79{word-spacing:752.409728pt;}
.ws71{word-spacing:776.610176pt;}
.ws24{word-spacing:824.713749pt;}
.ws7d{word-spacing:861.303744pt;}
.ws75{word-spacing:871.135104pt;}
.ws7e{word-spacing:989.094400pt;}
.ws78{word-spacing:1080.589888pt;}
.ws73{word-spacing:2782.087616pt;}
._14{margin-left:-1939.915755pt;}
._30{margin-left:-282.672000pt;}
._16{margin-left:-9.216896pt;}
._12{margin-left:-7.247424pt;}
._6{margin-left:-6.222272pt;}
._1b{margin-left:-4.290048pt;}
._7{margin-left:-3.370752pt;}
._1{margin-left:-2.278848pt;}
._3{margin-left:-0.966784pt;}
._0{width:1.774208pt;}
._5{width:2.925760pt;}
._2{width:4.509888pt;}
._8{width:6.579776pt;}
._c{width:14.484352pt;}
._15{width:19.621952pt;}
._b{width:21.718912pt;}
._27{width:22.607808pt;}
._a{width:23.787328pt;}
._4{width:25.155584pt;}
._11{width:26.806720pt;}
._10{width:36.480000pt;}
._f{width:76.522880pt;}
._22{width:83.587840pt;}
._1f{width:91.339648pt;}
._23{width:119.941312pt;}
._31{width:151.706880pt;}
._e{width:159.106304pt;}
._26{width:163.677056pt;}
._32{width:174.470400pt;}
._20{width:197.685248pt;}
._18{width:285.746624pt;}
._1e{width:341.672768pt;}
._21{width:344.664192pt;}
._24{width:373.604992pt;}
._1c{width:404.248192pt;}
._13{width:449.811776pt;}
._9{width:453.870592pt;}
._2f{width:484.843520pt;}
._28{width:563.239040pt;}
._19{width:576.865472pt;}
._2e{width:585.506432pt;}
._2c{width:587.668480pt;}
._2b{width:588.775040pt;}
._2d{width:631.164800pt;}
._1d{width:638.644480pt;}
._d{width:675.905984pt;}
._2a{width:678.832000pt;}
._29{width:848.941696pt;}
._1a{width:857.833280pt;}
._25{width:1021.793792pt;}
._17{width:1052.118827pt;}
.fs0{font-size:53.120000pt;}
.fsa{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fsc{font-size:99.200000pt;}
.fs8{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fsb{font-size:122.880000pt;}
.fs6{font-size:128.000000pt;}
.fs4{font-size:133.120000pt;}
.fs3{font-size:138.880000pt;}
.fs7{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:20.906667pt;}
.yb9{bottom:67.406533pt;}
.y54{bottom:68.501867pt;}
.y6b{bottom:68.502533pt;}
.yca{bottom:69.472347pt;}
.y15a{bottom:69.746133pt;}
.y18f{bottom:71.895093pt;}
.y14c{bottom:73.368800pt;}
.y179{bottom:74.240613pt;}
.y99{bottom:74.524453pt;}
.y2a{bottom:77.762213pt;}
.y100{bottom:81.121333pt;}
.y17e{bottom:82.238693pt;}
.y169{bottom:82.954480pt;}
.y72{bottom:83.937067pt;}
.ye4{bottom:85.806000pt;}
.yf2{bottom:85.857467pt;}
.y129{bottom:91.121333pt;}
.y6a{bottom:91.581893pt;}
.y133{bottom:94.561467pt;}
.y15d{bottom:95.033813pt;}
.y71{bottom:95.937227pt;}
.y98{bottom:96.932293pt;}
.y1f{bottom:97.984800pt;}
.yc9{bottom:98.902587pt;}
.y21{bottom:99.964133pt;}
.y19c{bottom:101.006133pt;}
.y14a{bottom:101.220160pt;}
.y8{bottom:101.822293pt;}
.y159{bottom:103.028053pt;}
.y46{bottom:103.041467pt;}
.y178{bottom:107.522533pt;}
.yf0{bottom:110.579733pt;}
.y18e{bottom:113.008053pt;}
.y17d{bottom:115.520613pt;}
.y168{bottom:116.236400pt;}
.y69{bottom:117.181733pt;}
.y127{bottom:118.977867pt;}
.y16d{bottom:119.268613pt;}
.y97{bottom:119.340133pt;}
.yb5{bottom:121.502053pt;}
.y70{bottom:121.537067pt;}
.yb7{bottom:121.933067pt;}
.y149{bottom:122.692000pt;}
.yff{bottom:122.881467pt;}
.y1e{bottom:123.584800pt;}
.y19b{bottom:125.009973pt;}
.y7{bottom:127.422133pt;}
.y15c{bottom:128.315733pt;}
.yc8{bottom:128.332827pt;}
.ye5{bottom:129.683733pt;}
.y132{bottom:132.161333pt;}
.y158{bottom:136.309973pt;}
.y45{bottom:140.641333pt;}
.yf1{bottom:141.046667pt;}
.y11f{bottom:141.254667pt;}
.y18d{bottom:142.289333pt;}
.y76{bottom:142.581787pt;}
.y139{bottom:144.968800pt;}
.yb4{bottom:147.101893pt;}
.y96{bottom:147.715360pt;}
.ya7{bottom:148.321467pt;}
.y177{bottom:148.802533pt;}
.y1d{bottom:149.184800pt;}
.y16c{bottom:152.550533pt;}
.y114{bottom:153.651493pt;}
.y22{bottom:154.158533pt;}
.y19a{bottom:154.291253pt;}
.y68{bottom:154.781733pt;}
.y78{bottom:155.381627pt;}
.y47{bottom:156.161333pt;}
.y167{bottom:157.514480pt;}
.yc7{bottom:157.763067pt;}
.y181{bottom:157.921467pt;}
.y6f{bottom:159.137067pt;}
.yfe{bottom:160.481467pt;}
.ye6{bottom:164.243733pt;}
.y12{bottom:164.714773pt;}
.y53{bottom:168.181333pt;}
.y73{bottom:168.181467pt;}
.y75{bottom:168.181627pt;}
.yde{bottom:169.219200pt;}
.y157{bottom:169.591893pt;}
.y109{bottom:169.676427pt;}
.y131{bottom:169.761467pt;}
.y95{bottom:170.123200pt;}
.y13a{bottom:170.502880pt;}
.y193{bottom:171.400373pt;}
.ydc{bottom:173.059200pt;}
.y1c{bottom:174.784800pt;}
.y44{bottom:178.241333pt;}
.y77{bottom:180.981467pt;}
.y18c{bottom:183.402293pt;}
.yb0{bottom:185.932320pt;}
.yb3{bottom:186.816853pt;}
.y17f{bottom:186.872453pt;}
.y17a{bottom:186.875653pt;}
.y113{bottom:186.933413pt;}
.yc6{bottom:187.193307pt;}
.yd5{bottom:187.214587pt;}
.y120{bottom:189.720747pt;}
.y16e{bottom:190.620453pt;}
.y166{bottom:190.796400pt;}
.y67{bottom:192.381733pt;}
.ya6{bottom:193.601333pt;}
.y74{bottom:193.781467pt;}
.y199{bottom:195.404213pt;}
.y13b{bottom:196.036960pt;}
.y6e{bottom:196.737067pt;}
.yfd{bottom:198.081467pt;}
.y4f{bottom:198.610613pt;}
.ye7{bottom:198.803733pt;}
.y1b{bottom:200.384800pt;}
.y156{bottom:202.873813pt;}
.y108{bottom:202.958347pt;}
.y180{bottom:203.201333pt;}
.y93{bottom:204.465813pt;}
.y130{bottom:207.361333pt;}
.y23{bottom:208.352933pt;}
.ydd{bottom:211.457280pt;}
.yaf{bottom:211.532160pt;}
.yb2{bottom:212.416693pt;}
.y18b{bottom:212.513333pt;}
.y32{bottom:214.055627pt;}
.y43{bottom:215.841333pt;}
.y11{bottom:215.893333pt;}
.yc5{bottom:216.623547pt;}
.yd4{bottom:216.644827pt;}
.y112{bottom:220.215333pt;}
.y94{bottom:220.906267pt;}
.y13c{bottom:221.571040pt;}
.y198{bottom:224.515253pt;}
.yf8{bottom:224.840293pt;}
.y175{bottom:225.876693pt;}
.y1a{bottom:225.984800pt;}
.y92{bottom:226.873653pt;}
.y16a{bottom:228.871440pt;}
.y66{bottom:229.981733pt;}
.y9d{bottom:232.321333pt;}
.ye8{bottom:233.363733pt;}
.y31{bottom:235.527467pt;}
.yfc{bottom:235.681333pt;}
.y155{bottom:236.155733pt;}
.y6d{bottom:236.518640pt;}
.y4e{bottom:236.637973pt;}
.yae{bottom:237.132000pt;}
.yb1{bottom:238.016533pt;}
.y121{bottom:238.186827pt;}
.ya5{bottom:238.881333pt;}
.y6{bottom:238.942133pt;}
.y16b{bottom:239.106187pt;}
.y192{bottom:241.794613pt;}
.y14b{bottom:241.911067pt;}
.y107{bottom:244.241547pt;}
.ydb{bottom:244.739200pt;}
.yc4{bottom:246.053787pt;}
.yd3{bottom:246.075067pt;}
.yf7{bottom:246.312133pt;}
.y13d{bottom:247.105120pt;}
.y3b{bottom:248.477493pt;}
.y10{bottom:248.481467pt;}
.y91{bottom:249.281493pt;}
.y19{bottom:251.584800pt;}
.y42{bottom:253.441467pt;}
.y18a{bottom:253.796533pt;}
.yad{bottom:254.282053pt;}
.y8f{bottom:255.248880pt;}
.y30{bottom:257.890160pt;}
.ye2{bottom:258.578667pt;}
.y174{bottom:259.158613pt;}
.y115{bottom:259.242853pt;}
.y128{bottom:260.796267pt;}
.y24{bottom:262.547333pt;}
.yf6{bottom:265.485093pt;}
.y197{bottom:265.798453pt;}
.y65{bottom:267.581733pt;}
.ye9{bottom:267.923733pt;}
.y90{bottom:271.689333pt;}
.y164{bottom:272.388107pt;}
.y13{bottom:272.533333pt;}
.y13e{bottom:272.639200pt;}
.yfb{bottom:273.281333pt;}
.y61{bottom:273.988453pt;}
.y6c{bottom:274.120400pt;}
.y15b{bottom:274.225653pt;}
.y15e{bottom:274.232693pt;}
.y4d{bottom:274.665333pt;}
.yc3{bottom:275.484027pt;}
.yd2{bottom:275.505307pt;}
.y18{bottom:277.184800pt;}
.y17{bottom:277.184960pt;}
.y106{bottom:277.523467pt;}
.y8e{bottom:277.656720pt;}
.y12e{bottom:278.125813pt;}
.y5{bottom:279.262133pt;}
.y2f{bottom:279.362000pt;}
.yac{bottom:279.881893pt;}
.y189{bottom:282.907573pt;}
.ya4{bottom:284.161333pt;}
.yda{bottom:286.017280pt;}
.y122{bottom:286.652907pt;}
.yf5{bottom:286.956933pt;}
.ye1{bottom:289.586667pt;}
.y41{bottom:291.041467pt;}
.y150{bottom:291.241493pt;}
.y34{bottom:291.520933pt;}
.y173{bottom:292.440533pt;}
.yf{bottom:293.761333pt;}
.y196{bottom:294.909493pt;}
.y13f{bottom:298.173280pt;}
.y7e{bottom:298.963493pt;}
.y8d{bottom:300.064560pt;}
.y20{bottom:302.259200pt;}
.yea{bottom:302.483733pt;}
.y16{bottom:302.784800pt;}
.y138{bottom:304.079867pt;}
.yc2{bottom:304.914267pt;}
.yd1{bottom:304.935547pt;}
.y64{bottom:305.181733pt;}
.y163{bottom:305.670027pt;}
.yf4{bottom:306.130027pt;}
.y60{bottom:307.270373pt;}
.y11a{bottom:309.698187pt;}
.y110{bottom:310.645920pt;}
.y12d{bottom:311.407733pt;}
.y191{bottom:312.188853pt;}
.y4c{bottom:312.692693pt;}
.yfa{bottom:314.401333pt;}
.y10a{bottom:315.593387pt;}
.y14f{bottom:315.777333pt;}
.y153{bottom:315.834000pt;}
.y25{bottom:316.741733pt;}
.yd9{bottom:319.299200pt;}
.y5b{bottom:320.112560pt;}
.y8c{bottom:322.472400pt;}
.y140{bottom:323.707360pt;}
.y188{bottom:324.190773pt;}
.y7d{bottom:324.563333pt;}
.yab{bottom:326.618800pt;}
.yf3{bottom:327.601867pt;}
.y8b{bottom:328.439787pt;}
.y40{bottom:328.641333pt;}
.ya3{bottom:329.441467pt;}
.y176{bottom:330.510453pt;}
.y9c{bottom:333.281333pt;}
.yc1{bottom:334.344507pt;}
.yd0{bottom:334.365787pt;}
.y123{bottom:335.118987pt;}
.yeb{bottom:337.043733pt;}
.y162{bottom:338.951947pt;}
.ye{bottom:339.041467pt;}
.y119{bottom:342.980107pt;}
.y10f{bottom:343.927840pt;}
.y137{bottom:345.359867pt;}
.y2e{bottom:345.559227pt;}
.y5f{bottom:349.021733pt;}
.y141{bottom:349.241440pt;}
.y12f{bottom:349.477653pt;}
.y14e{bottom:349.609360pt;}
.y4b{bottom:350.720053pt;}
.y8a{bottom:350.847627pt;}
.y187{bottom:353.301813pt;}
.y5a{bottom:353.394480pt;}
.yf9{bottom:357.040933pt;}
.y152{bottom:357.114000pt;}
.y105{bottom:357.787333pt;}
.yd8{bottom:360.577280pt;}
.y7c{bottom:362.163360pt;}
.yc0{bottom:363.774747pt;}
.ycf{bottom:363.796027pt;}
.y104{bottom:363.955920pt;}
.y195{bottom:365.303733pt;}
.y3f{bottom:366.241333pt;}
.y2d{bottom:367.031067pt;}
.y37{bottom:367.107493pt;}
.y51{bottom:370.840427pt;}
.y26{bottom:370.936133pt;}
.yec{bottom:371.603733pt;}
.y161{bottom:372.233867pt;}
.y9b{bottom:372.329173pt;}
.y171{bottom:372.832800pt;}
.y89{bottom:373.255467pt;}
.y14d{bottom:374.145200pt;}
.ya2{bottom:374.719413pt;}
.y142{bottom:374.775520pt;}
.y118{bottom:376.262027pt;}
.y10e{bottom:377.209760pt;}
.y11d{bottom:377.211547pt;}
.y17b{bottom:380.830880pt;}
.y190{bottom:382.412853pt;}
.y124{bottom:383.585067pt;}
.y55{bottom:383.640400pt;}
.y3a{bottom:384.317493pt;}
.yd{bottom:384.321333pt;}
.yaa{bottom:386.000160pt;}
.y81{bottom:386.163680pt;}
.y5e{bottom:386.621733pt;}
.y59{bottom:386.676400pt;}
.y7b{bottom:387.763200pt;}
.y4a{bottom:388.747413pt;}
.y2c{bottom:389.393760pt;}
.ye0{bottom:389.586667pt;}
.ybf{bottom:393.204987pt;}
.yce{bottom:393.226267pt;}
.yd7{bottom:393.859200pt;}
.y186{bottom:394.414773pt;}
.y154{bottom:395.187120pt;}
.y50{bottom:396.440267pt;}
.y136{bottom:399.361333pt;}
.y143{bottom:400.309600pt;}
.y103{bottom:401.983280pt;}
.y3e{bottom:403.841333pt;}
.y9a{bottom:405.611093pt;}
.yed{bottom:406.163733pt;}
.y87{bottom:407.597947pt;}
.ya1{bottom:408.001333pt;}
.y117{bottom:409.543947pt;}
.yb6{bottom:410.107067pt;}
.y165{bottom:410.303787pt;}
.y12b{bottom:410.491547pt;}
.y10d{bottom:410.491680pt;}
.y11c{bottom:410.493467pt;}
.y2b{bottom:410.865600pt;}
.ya9{bottom:411.600000pt;}
.y80{bottom:411.763520pt;}
.y35{bottom:412.476453pt;}
.y170{bottom:414.112800pt;}
.ybe{bottom:422.635227pt;}
.ycb{bottom:422.656507pt;}
.y185{bottom:423.696053pt;}
.y88{bottom:424.038400pt;}
.y5d{bottom:424.221733pt;}
.y27{bottom:425.130533pt;}
.y7a{bottom:425.363333pt;}
.y151{bottom:425.758800pt;}
.y144{bottom:425.843680pt;}
.y49{bottom:426.774773pt;}
.y39{bottom:427.585253pt;}
.yc{bottom:429.601333pt;}
.y86{bottom:430.005787pt;}
.y58{bottom:431.954347pt;}
.y125{bottom:432.051147pt;}
.yd6{bottom:435.139200pt;}
.y15{bottom:437.318427pt;}
.y7f{bottom:437.363360pt;}
.y135{bottom:437.601333pt;}
.y102{bottom:440.010640pt;}
.yee{bottom:440.723733pt;}
.y3d{bottom:441.441333pt;}
.y116{bottom:442.825867pt;}
.y12a{bottom:443.773467pt;}
.y10c{bottom:443.773600pt;}
.y36{bottom:450.269733pt;}
.y145{bottom:451.377760pt;}
.ybd{bottom:452.086747pt;}
.ycd{bottom:452.108027pt;}
.y85{bottom:452.413627pt;}
.y184{bottom:452.807093pt;}
.ya0{bottom:453.279413pt;}
.y15f{bottom:455.392667pt;}
.y16f{bottom:455.392800pt;}
.y14{bottom:462.918267pt;}
.y79{bottom:462.963200pt;}
.y48{bottom:464.802133pt;}
.y194{bottom:464.809013pt;}
.y57{bottom:465.236267pt;}
.y5c{bottom:465.341733pt;}
.y84{bottom:474.821467pt;}
.yb{bottom:474.881333pt;}
.yef{bottom:475.283733pt;}
.y146{bottom:476.911840pt;}
.y101{bottom:478.038000pt;}
.y134{bottom:478.881333pt;}
.y3c{bottom:479.041333pt;}
.y28{bottom:479.324933pt;}
.yb8{bottom:480.502800pt;}
.y38{bottom:480.508613pt;}
.y126{bottom:480.517227pt;}
.y11b{bottom:480.895787pt;}
.ybc{bottom:481.516987pt;}
.ycc{bottom:481.538267pt;}
.y12c{bottom:481.843387pt;}
.y111{bottom:481.843520pt;}
.y11e{bottom:481.845307pt;}
.y62{bottom:482.307733pt;}
.y52{bottom:482.307867pt;}
.y63{bottom:482.308133pt;}
.y9f{bottom:486.561333pt;}
.ya8{bottom:489.155600pt;}
.y160{bottom:493.462587pt;}
.y17c{bottom:493.465920pt;}
.y172{bottom:493.469120pt;}
.y183{bottom:494.090293pt;}
.y147{bottom:502.445920pt;}
.ye3{bottom:508.639867pt;}
.y33{bottom:510.757867pt;}
.ybb{bottom:510.947227pt;}
.ya{bottom:520.161333pt;}
.y56{bottom:520.169867pt;}
.y182{bottom:523.201333pt;}
.y10b{bottom:524.037333pt;}
.y9e{bottom:524.321333pt;}
.y83{bottom:525.604400pt;}
.y148{bottom:527.980000pt;}
.y29{bottom:533.519333pt;}
.yba{bottom:540.377467pt;}
.y4{bottom:559.916000pt;}
.y3{bottom:588.716000pt;}
.y82{bottom:593.466667pt;}
.y2{bottom:618.796000pt;}
.ydf{bottom:631.706667pt;}
.y9{bottom:631.866667pt;}
.h1{height:55.402500pt;}
.hc{height:66.750000pt;}
.hb{height:78.097500pt;}
.h10{height:88.776967pt;}
.h6{height:88.777500pt;}
.h3{height:100.125000pt;}
.hf{height:103.462500pt;}
.h9{height:111.472500pt;}
.h2{height:122.152500pt;}
.he{height:128.160000pt;}
.h7{height:133.500000pt;}
.h5{height:138.840000pt;}
.h4{height:144.847500pt;}
.h11{height:163.984860pt;}
.h8{height:178.222500pt;}
.ha{height:191.176860pt;}
.hd{height:206.498460pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:31.302667pt;}
.x4e{left:33.612613pt;}
.x1{left:36.100000pt;}
.x7{left:37.666667pt;}
.x1c{left:39.391333pt;}
.x4b{left:40.582667pt;}
.x62{left:41.568987pt;}
.x5e{left:45.092133pt;}
.xf{left:46.332853pt;}
.x5f{left:47.395067pt;}
.x32{left:52.201867pt;}
.x19{left:56.675200pt;}
.x5a{left:59.566133pt;}
.x76{left:61.380000pt;}
.x2{left:62.813333pt;}
.xe{left:67.093333pt;}
.x4{left:68.190933pt;}
.x27{left:70.037733pt;}
.xb{left:71.386133pt;}
.x8{left:75.833333pt;}
.x28{left:78.605467pt;}
.x58{left:85.392800pt;}
.x73{left:88.775733pt;}
.x21{left:90.441733pt;}
.x60{left:95.386107pt;}
.x1d{left:100.208267pt;}
.x6d{left:103.705387pt;}
.x13{left:109.129600pt;}
.x6c{left:114.076267pt;}
.x1a{left:117.008267pt;}
.x3f{left:117.945067pt;}
.x61{left:123.071387pt;}
.x10{left:138.622453pt;}
.x59{left:144.752800pt;}
.x3{left:145.950933pt;}
.x75{left:161.708853pt;}
.x74{left:163.786773pt;}
.x3a{left:170.438080pt;}
.x16{left:173.033440pt;}
.x4a{left:177.766933pt;}
.x1b{left:191.083947pt;}
.x6e{left:192.475627pt;}
.x72{left:198.275067pt;}
.x4f{left:216.089200pt;}
.x57{left:221.803600pt;}
.x3b{left:226.435200pt;}
.xa{left:247.683333pt;}
.x78{left:255.066587pt;}
.x42{left:264.905067pt;}
.x14{left:267.686880pt;}
.x44{left:273.693707pt;}
.x43{left:276.417547pt;}
.x2a{left:284.194933pt;}
.x39{left:296.841280pt;}
.x68{left:304.564587pt;}
.x4d{left:305.762533pt;}
.x66{left:310.390800pt;}
.x2b{left:313.476213pt;}
.x2c{left:324.201333pt;}
.x67{left:329.270667pt;}
.x18{left:330.569280pt;}
.x56{left:341.469867pt;}
.x33{left:349.722133pt;}
.x34{left:358.914533pt;}
.xc{left:365.359467pt;}
.x55{left:369.384000pt;}
.x47{left:390.092773pt;}
.x5{left:394.270933pt;}
.x45{left:395.880933pt;}
.x46{left:408.351013pt;}
.x50{left:414.001067pt;}
.x15{left:416.753280pt;}
.x6f{left:418.376667pt;}
.x5b{left:425.250133pt;}
.x24{left:427.080000pt;}
.x22{left:429.120800pt;}
.x51{left:432.881067pt;}
.x6{left:443.555413pt;}
.x25{left:445.960000pt;}
.x65{left:492.214053pt;}
.x63{left:498.040267pt;}
.x53{left:499.720000pt;}
.x71{left:510.230587pt;}
.x64{left:516.920133pt;}
.x79{left:521.578933pt;}
.x7a{left:527.399467pt;}
.x2d{left:528.497600pt;}
.x2e{left:532.476960pt;}
.x70{left:534.936667pt;}
.x9{left:541.258667pt;}
.x2f{left:544.308640pt;}
.x54{left:545.384000pt;}
.x7b{left:546.279467pt;}
.x3c{left:554.798800pt;}
.x69{left:559.378533pt;}
.x6a{left:565.199067pt;}
.x12{left:571.731733pt;}
.x20{left:578.604267pt;}
.x6b{left:584.079067pt;}
.x1e{left:591.404133pt;}
.x35{left:610.592667pt;}
.x36{left:629.472667pt;}
.x23{left:636.643360pt;}
.x17{left:637.958880pt;}
.x26{left:669.000000pt;}
.x48{left:672.034827pt;}
.x40{left:685.287493pt;}
.x3e{left:688.193707pt;}
.x41{left:691.692773pt;}
.x29{left:698.348000pt;}
.x49{left:704.827307pt;}
.x3d{left:708.345867pt;}
.x7c{left:720.047307pt;}
.x30{left:723.523467pt;}
.xd{left:737.035467pt;}
.x52{left:757.361067pt;}
.x31{left:764.487467pt;}
.x11{left:775.137733pt;}
.x38{left:779.859600pt;}
.x37{left:781.492800pt;}
.x5d{left:789.055707pt;}
.x5c{left:802.403067pt;}
.x77{left:822.905600pt;}
.x1f{left:901.215333pt;}
}




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