
    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_21a704df7e28bf7f0f253ca7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_dde8b7e8ee3d2b96b484d625.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_a8db9927c5b4d56b50bb7571.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_cd38617014ea526743f4a1f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_6b8f74babca640ad2b49efcf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_6f53516cfcfe8125d4f6c627.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_a8f0b8ffd83eccbcff722942.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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:-1.082160px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.126120px;}
.v1{vertical-align:34.560000px;}
.ls7b{letter-spacing:-0.505008px;}
.ls66{letter-spacing:-0.456912px;}
.ls65{letter-spacing:-0.402804px;}
.ls4d{letter-spacing:-0.378756px;}
.ls9a{letter-spacing:-0.366732px;}
.ls9b{letter-spacing:-0.312624px;}
.ls73{letter-spacing:-0.306612px;}
.ls52{letter-spacing:-0.300600px;}
.ls84{letter-spacing:-0.282564px;}
.ls24{letter-spacing:-0.276552px;}
.ls74{letter-spacing:-0.270540px;}
.ls20{letter-spacing:-0.253800px;}
.ls72{letter-spacing:-0.252504px;}
.ls7d{letter-spacing:-0.246492px;}
.ls93{letter-spacing:-0.240480px;}
.ls68{letter-spacing:-0.222444px;}
.ls4a{letter-spacing:-0.216432px;}
.ls3f{letter-spacing:-0.210420px;}
.ls7f{letter-spacing:-0.204408px;}
.ls4e{letter-spacing:-0.198396px;}
.ls75{letter-spacing:-0.192384px;}
.ls32{letter-spacing:-0.186372px;}
.ls69{letter-spacing:-0.180360px;}
.ls7c{letter-spacing:-0.174348px;}
.ls29{letter-spacing:-0.168336px;}
.ls43{letter-spacing:-0.162324px;}
.ls41{letter-spacing:-0.156312px;}
.ls62{letter-spacing:-0.150300px;}
.ls2e{letter-spacing:-0.144288px;}
.ls27{letter-spacing:-0.138276px;}
.ls37{letter-spacing:-0.132264px;}
.ls31{letter-spacing:-0.126252px;}
.ls2c{letter-spacing:-0.120240px;}
.ls2d{letter-spacing:-0.114228px;}
.ls48{letter-spacing:-0.108216px;}
.ls30{letter-spacing:-0.102204px;}
.ls51{letter-spacing:-0.096192px;}
.ls28{letter-spacing:-0.090180px;}
.ls47{letter-spacing:-0.084168px;}
.ls44{letter-spacing:-0.078156px;}
.ls46{letter-spacing:-0.072144px;}
.ls1f{letter-spacing:-0.070200px;}
.ls45{letter-spacing:-0.066132px;}
.ls2b{letter-spacing:-0.060120px;}
.ls49{letter-spacing:-0.054108px;}
.ls53{letter-spacing:-0.048096px;}
.ls70{letter-spacing:-0.042084px;}
.ls4b{letter-spacing:-0.036072px;}
.ls3d{letter-spacing:-0.030060px;}
.ls26{letter-spacing:-0.024048px;}
.ls1b{letter-spacing:-0.021600px;}
.ls1a{letter-spacing:-0.019152px;}
.ls5a{letter-spacing:-0.018036px;}
.ls1e{letter-spacing:-0.016200px;}
.ls50{letter-spacing:-0.012024px;}
.ls1d{letter-spacing:-0.010800px;}
.ls4f{letter-spacing:-0.006012px;}
.ls21{letter-spacing:-0.005400px;}
.ls1c{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005400px;}
.ls19{letter-spacing:0.006012px;}
.ls1{letter-spacing:0.009576px;}
.lsa{letter-spacing:0.010800px;}
.ls16{letter-spacing:0.012024px;}
.ls13{letter-spacing:0.016200px;}
.ls5c{letter-spacing:0.018036px;}
.ls8{letter-spacing:0.021600px;}
.ls7a{letter-spacing:0.024048px;}
.ls0{letter-spacing:0.025164px;}
.ls6{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.030060px;}
.ls4{letter-spacing:0.032400px;}
.ls3a{letter-spacing:0.036072px;}
.ls5{letter-spacing:0.037800px;}
.ls17{letter-spacing:0.042084px;}
.lse{letter-spacing:0.043200px;}
.ls34{letter-spacing:0.048096px;}
.lsf{letter-spacing:0.048600px;}
.ls10{letter-spacing:0.054000px;}
.ls5d{letter-spacing:0.054108px;}
.ls11{letter-spacing:0.059400px;}
.ls36{letter-spacing:0.060120px;}
.ls7{letter-spacing:0.064800px;}
.ls3c{letter-spacing:0.066132px;}
.ls67{letter-spacing:0.072144px;}
.lsc{letter-spacing:0.075600px;}
.ls35{letter-spacing:0.078156px;}
.lsb{letter-spacing:0.081000px;}
.ls25{letter-spacing:0.084168px;}
.lsd{letter-spacing:0.086400px;}
.ls54{letter-spacing:0.090180px;}
.ls2f{letter-spacing:0.096192px;}
.ls23{letter-spacing:0.097200px;}
.ls33{letter-spacing:0.102204px;}
.ls12{letter-spacing:0.102600px;}
.ls18{letter-spacing:0.108216px;}
.ls22{letter-spacing:0.113400px;}
.ls39{letter-spacing:0.114228px;}
.ls3e{letter-spacing:0.120240px;}
.ls3{letter-spacing:0.124488px;}
.ls4c{letter-spacing:0.126252px;}
.ls2a{letter-spacing:0.132264px;}
.ls2{letter-spacing:0.134064px;}
.ls40{letter-spacing:0.138276px;}
.ls56{letter-spacing:0.144288px;}
.ls3b{letter-spacing:0.150300px;}
.ls60{letter-spacing:0.156312px;}
.ls14{letter-spacing:0.162000px;}
.ls6a{letter-spacing:0.162324px;}
.ls58{letter-spacing:0.168336px;}
.ls6d{letter-spacing:0.180360px;}
.ls77{letter-spacing:0.186372px;}
.ls91{letter-spacing:0.210420px;}
.ls42{letter-spacing:1.172340px;}
.ls6f{letter-spacing:1.202400px;}
.ls61{letter-spacing:1.503000px;}
.ls7e{letter-spacing:1.527048px;}
.ls64{letter-spacing:1.887768px;}
.ls94{letter-spacing:2.609208px;}
.ls76{letter-spacing:4.028040px;}
.ls88{letter-spacing:4.052088px;}
.ls95{letter-spacing:4.767516px;}
.ls83{letter-spacing:5.849676px;}
.ls5e{letter-spacing:6.553080px;}
.ls80{letter-spacing:6.931836px;}
.ls92{letter-spacing:7.292556px;}
.ls6e{letter-spacing:9.078120px;}
.ls82{letter-spacing:9.438840px;}
.ls63{letter-spacing:10.887732px;}
.ls59{letter-spacing:11.248452px;}
.ls5b{letter-spacing:11.603160px;}
.ls87{letter-spacing:12.324600px;}
.ls57{letter-spacing:12.691332px;}
.ls99{letter-spacing:15.931800px;}
.ls81{letter-spacing:16.653240px;}
.ls71{letter-spacing:18.090108px;}
.ls6b{letter-spacing:18.096120px;}
.ls55{letter-spacing:18.450828px;}
.ls96{letter-spacing:18.811548px;}
.ls6c{letter-spacing:19.178280px;}
.ls85{letter-spacing:19.887696px;}
.ls5f{letter-spacing:20.260440px;}
.ls38{letter-spacing:22.064040px;}
.ls78{letter-spacing:22.785480px;}
.ls79{letter-spacing:27.474840px;}
.ls98{letter-spacing:36.192240px;}
.ls8a{letter-spacing:51.222240px;}
.ls8e{letter-spacing:61.262280px;}
.ls97{letter-spacing:66.432600px;}
.ls89{letter-spacing:67.626720px;}
.ls8d{letter-spacing:239.518080px;}
.ls8f{letter-spacing:297.834480px;}
.ls8b{letter-spacing:383.130000px;}
.ls90{letter-spacing:610.999560px;}
.ls8c{letter-spacing:932.850000px;}
.ls86{letter-spacing:950.130000px;}
.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;}
}
.wsc{word-spacing:-16.500000px;}
.ws66{word-spacing:-15.210360px;}
.ws6e{word-spacing:-15.192324px;}
.ws61{word-spacing:-15.174288px;}
.ws47{word-spacing:-15.168276px;}
.ws32{word-spacing:-15.156252px;}
.ws2f{word-spacing:-15.120180px;}
.ws51{word-spacing:-15.114168px;}
.ws67{word-spacing:-15.108156px;}
.wsa{word-spacing:-15.096132px;}
.wsb{word-spacing:-15.090120px;}
.ws31{word-spacing:-15.084108px;}
.ws50{word-spacing:-15.066072px;}
.ws6d{word-spacing:-15.048036px;}
.ws25{word-spacing:-15.042024px;}
.ws64{word-spacing:-15.036012px;}
.wsf{word-spacing:-15.030000px;}
.ws55{word-spacing:-15.023988px;}
.ws22{word-spacing:-15.017976px;}
.ws13{word-spacing:-15.011964px;}
.ws6c{word-spacing:-15.005952px;}
.ws12{word-spacing:-14.993928px;}
.ws2e{word-spacing:-14.981904px;}
.ws24{word-spacing:-14.957856px;}
.ws10{word-spacing:-14.951844px;}
.ws34{word-spacing:-14.939820px;}
.ws33{word-spacing:-14.933808px;}
.ws40{word-spacing:-14.927796px;}
.ws54{word-spacing:-14.921784px;}
.ws11{word-spacing:-14.915772px;}
.ws23{word-spacing:-14.903748px;}
.ws3f{word-spacing:-14.897736px;}
.ws57{word-spacing:-14.891724px;}
.ws21{word-spacing:-14.885712px;}
.ws63{word-spacing:-14.879700px;}
.ws53{word-spacing:-14.873688px;}
.ws41{word-spacing:-14.867676px;}
.ws46{word-spacing:-14.861664px;}
.ws14{word-spacing:-14.849640px;}
.wse{word-spacing:-14.843628px;}
.ws30{word-spacing:-14.819580px;}
.ws7b{word-spacing:-14.663268px;}
.ws62{word-spacing:-14.627196px;}
.ws0{word-spacing:-13.602600px;}
.ws81{word-spacing:-0.372744px;}
.ws83{word-spacing:-0.360720px;}
.ws84{word-spacing:-0.336672px;}
.ws7a{word-spacing:-0.300600px;}
.ws70{word-spacing:-0.258516px;}
.ws78{word-spacing:-0.234468px;}
.ws8{word-spacing:-0.183600px;}
.ws80{word-spacing:-0.120240px;}
.ws4e{word-spacing:-0.108216px;}
.ws7c{word-spacing:-0.096192px;}
.ws5d{word-spacing:-0.048096px;}
.ws75{word-spacing:-0.030060px;}
.ws1{word-spacing:0.000000px;}
.ws77{word-spacing:0.096192px;}
.ws88{word-spacing:0.168336px;}
.ws9{word-spacing:0.189000px;}
.ws85{word-spacing:0.216432px;}
.ws56{word-spacing:0.222444px;}
.ws5e{word-spacing:0.240480px;}
.ws65{word-spacing:0.246492px;}
.ws82{word-spacing:0.264528px;}
.ws44{word-spacing:0.342684px;}
.ws26{word-spacing:0.468936px;}
.ws43{word-spacing:0.889776px;}
.ws58{word-spacing:0.955908px;}
.ws3c{word-spacing:1.190376px;}
.ws7{word-spacing:1.236600px;}
.ws5{word-spacing:1.252800px;}
.ws6{word-spacing:1.269000px;}
.ws1e{word-spacing:1.430856px;}
.ws2c{word-spacing:1.496988px;}
.ws17{word-spacing:1.653300px;}
.ws48{word-spacing:1.665324px;}
.ws59{word-spacing:2.284560px;}
.ws16{word-spacing:2.356704px;}
.ws2{word-spacing:2.408400px;}
.ws6a{word-spacing:2.711412px;}
.ws35{word-spacing:2.735460px;}
.ws39{word-spacing:3.090168px;}
.ws42{word-spacing:3.769524px;}
.ws4c{word-spacing:3.799584px;}
.ws36{word-spacing:4.142268px;}
.ws3d{word-spacing:4.809600px;}
.ws74{word-spacing:5.026032px;}
.ws3e{word-spacing:5.236452px;}
.ws20{word-spacing:5.849676px;}
.ws19{word-spacing:6.114204px;}
.ws72{word-spacing:6.468912px;}
.ws87{word-spacing:6.523020px;}
.ws27{word-spacing:6.685344px;}
.ws1b{word-spacing:7.058088px;}
.ws79{word-spacing:7.202376px;}
.ws7e{word-spacing:7.280532px;}
.ws6b{word-spacing:7.659288px;}
.ws7d{word-spacing:7.863696px;}
.ws4d{word-spacing:9.204372px;}
.ws4a{word-spacing:9.486936px;}
.ws86{word-spacing:9.721404px;}
.ws4{word-spacing:9.865800px;}
.ws3{word-spacing:9.887400px;}
.ws15{word-spacing:10.436832px;}
.ws2d{word-spacing:11.019996px;}
.ws45{word-spacing:11.512980px;}
.ws4b{word-spacing:11.591136px;}
.ws1f{word-spacing:11.723400px;}
.ws3b{word-spacing:12.270492px;}
.ws5b{word-spacing:12.426804px;}
.wsd{word-spacing:12.835620px;}
.ws76{word-spacing:14.272488px;}
.ws89{word-spacing:14.963868px;}
.ws3a{word-spacing:15.516972px;}
.ws6f{word-spacing:16.520976px;}
.ws49{word-spacing:17.146224px;}
.ws29{word-spacing:18.192312px;}
.ws2a{word-spacing:18.204336px;}
.ws5a{word-spacing:18.240408px;}
.ws2b{word-spacing:18.703332px;}
.ws73{word-spacing:19.989900px;}
.ws1a{word-spacing:20.254428px;}
.ws69{word-spacing:20.368656px;}
.ws68{word-spacing:20.735388px;}
.ws18{word-spacing:21.054024px;}
.ws1d{word-spacing:22.436784px;}
.ws37{word-spacing:22.869648px;}
.ws28{word-spacing:25.430760px;}
.ws1c{word-spacing:25.731360px;}
.ws38{word-spacing:27.180252px;}
.ws71{word-spacing:32.657184px;}
.ws7f{word-spacing:41.765364px;}
.ws52{word-spacing:79.845372px;}
.ws5f{word-spacing:124.098552px;}
.ws4f{word-spacing:353.694780px;}
.ws5c{word-spacing:651.080592px;}
.ws60{word-spacing:697.160592px;}
._27{margin-left:-20.011104px;}
._15{margin-left:-18.841068px;}
._16{margin-left:-17.688924px;}
._45{margin-left:-15.979464px;}
._46{margin-left:-14.824440px;}
._19{margin-left:-13.302036px;}
._18{margin-left:-12.122712px;}
._1b{margin-left:-11.104164px;}
._1c{margin-left:-9.932040px;}
._42{margin-left:-7.927488px;}
._22{margin-left:-6.887916px;}
._26{margin-left:-5.195304px;}
._1d{margin-left:-3.237012px;}
._12{margin-left:-2.081520px;}
._1{margin-left:-1.000692px;}
._0{width:1.235304px;}
._7{width:2.421792px;}
._4{width:3.769200px;}
._5{width:5.054400px;}
._6{width:6.496200px;}
._3{width:7.890768px;}
._2{width:9.147600px;}
._8{width:10.292400px;}
._c{width:11.826000px;}
._11{width:13.037184px;}
._9{width:14.368284px;}
._f{width:15.639516px;}
._a{width:17.474400px;}
._b{width:18.593892px;}
._10{width:19.830024px;}
._d{width:21.405600px;}
._e{width:22.890600px;}
._1a{width:24.234372px;}
._1e{width:26.176248px;}
._21{width:27.177408px;}
._14{width:28.881648px;}
._13{width:29.909700px;}
._17{width:31.082040px;}
._23{width:32.104080px;}
._24{width:33.643152px;}
._25{width:35.016588px;}
._43{width:36.728676px;}
._44{width:37.913040px;}
._47{width:40.947732px;}
._20{width:42.390612px;}
._1f{width:44.013852px;}
._38{width:50.047056px;}
._3a{width:51.748452px;}
._40{width:64.941948px;}
._2d{width:79.652988px;}
._2f{width:106.346268px;}
._30{width:111.438756px;}
._33{width:133.556580px;}
._2c{width:152.776944px;}
._28{width:165.233376px;}
._35{width:185.846112px;}
._29{width:198.592200px;}
._3d{width:237.948948px;}
._39{width:239.199444px;}
._32{width:244.817352px;}
._37{width:248.041152px;}
._3c{width:268.682292px;}
._2e{width:274.369644px;}
._3e{width:305.008164px;}
._36{width:345.066120px;}
._31{width:358.555680px;}
._41{width:404.373888px;}
._3b{width:486.671400px;}
._3f{width:525.833568px;}
._2b{width:728.396640px;}
._34{width:840.766176px;}
._2a{width:1025.622036px;}
.fc2{color:rgb(75,172,198);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:11.880000px;}
.fs6{font-size:42.000000px;}
.fs1{font-size:47.880000px;}
.fs4{font-size:53.999400px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:83.880000px;}
.yc8{bottom:-0.000750px;}
.y0{bottom:0.000000px;}
.yd4{bottom:0.089250px;}
.ye6{bottom:15.029250px;}
.y107{bottom:15.030750px;}
.y126{bottom:15.389250px;}
.yee{bottom:19.169250px;}
.yd7{bottom:21.599250px;}
.ycd{bottom:32.489250px;}
.ye3{bottom:35.009250px;}
.y112{bottom:37.439250px;}
.y33{bottom:41.404800px;}
.y121{bottom:46.709250px;}
.yda{bottom:49.499250px;}
.yf9{bottom:54.989250px;}
.yeb{bottom:55.439250px;}
.y31{bottom:55.905300px;}
.yf0{bottom:57.509250px;}
.yf3{bottom:59.129250px;}
.y102{bottom:63.719250px;}
.y32{bottom:68.799300px;}
.y30{bottom:69.345300px;}
.y11f{bottom:72.089250px;}
.yf5{bottom:97.469250px;}
.yfb{bottom:114.765750px;}
.yc4{bottom:117.240450px;}
.ye1{bottom:122.595750px;}
.yf2{bottom:122.596500px;}
.yc6{bottom:122.685750px;}
.yfd{bottom:122.775750px;}
.yc3{bottom:123.057330px;}
.y2e{bottom:124.189500px;}
.y63{bottom:125.311830px;}
.yd1{bottom:126.629250px;}
.yab{bottom:129.820830px;}
.yfe{bottom:133.666500px;}
.yc2{bottom:140.341830px;}
.yff{bottom:141.136500px;}
.y2d{bottom:141.474000px;}
.y62{bottom:142.596330px;}
.y89{bottom:144.850830px;}
.yaa{bottom:147.105330px;}
.y100{bottom:148.605750px;}
.y123{bottom:150.029250px;}
.ydc{bottom:151.199250px;}
.yf7{bottom:152.549250px;}
.yc1{bottom:157.626330px;}
.y2c{bottom:158.758500px;}
.y61{bottom:159.880830px;}
.y88{bottom:162.135330px;}
.ya9{bottom:164.389830px;}
.yc0{bottom:174.820650px;}
.y2b{bottom:175.952820px;}
.y60{bottom:177.075150px;}
.y87{bottom:179.329650px;}
.ya8{bottom:181.584150px;}
.y114{bottom:185.956500px;}
.yf4{bottom:189.285750px;}
.ybf{bottom:192.105150px;}
.y2a{bottom:193.237320px;}
.y5f{bottom:194.359650px;}
.y86{bottom:196.614150px;}
.ya7{bottom:198.868650px;}
.y101{bottom:209.086500px;}
.ybe{bottom:209.389650px;}
.y29{bottom:210.431640px;}
.y5e{bottom:211.644150px;}
.y85{bottom:213.898650px;}
.ya6{bottom:216.153150px;}
.ybd{bottom:226.583970px;}
.yf6{bottom:227.625750px;}
.y28{bottom:227.716140px;}
.y5d{bottom:228.838470px;}
.y84{bottom:231.092970px;}
.y113{bottom:231.849450px;}
.ya5{bottom:233.347470px;}
.y115{bottom:235.905750px;}
.ybc{bottom:243.868470px;}
.y27{bottom:245.000640px;}
.y5c{bottom:246.122970px;}
.y83{bottom:248.377470px;}
.ya4{bottom:250.631970px;}
.ybb{bottom:261.152970px;}
.y26{bottom:262.194960px;}
.y5b{bottom:263.407470px;}
.y82{bottom:265.661970px;}
.ya3{bottom:267.916470px;}
.yba{bottom:278.347290px;}
.y25{bottom:279.479460px;}
.y103{bottom:280.365750px;}
.yb8{bottom:280.601790px;}
.y81{bottom:282.856290px;}
.yfc{bottom:283.161870px;}
.ya2{bottom:285.110790px;}
.y5a{bottom:295.631790px;}
.y24{bottom:296.763960px;}
.yb7{bottom:297.886290px;}
.y80{bottom:300.140790px;}
.ya1{bottom:302.395290px;}
.yf8{bottom:303.765750px;}
.ye2{bottom:303.766500px;}
.y104{bottom:303.946500px;}
.ye0{bottom:306.645750px;}
.y59{bottom:312.916290px;}
.y23{bottom:313.958280px;}
.yb6{bottom:315.170790px;}
.y7f{bottom:317.425290px;}
.ya0{bottom:319.679790px;}
.yc5{bottom:327.705750px;}
.y58{bottom:330.110610px;}
.y22{bottom:331.242780px;}
.yb5{bottom:332.365110px;}
.yb9{bottom:332.455290px;}
.y7e{bottom:334.619610px;}
.y11d{bottom:335.446500px;}
.y11a{bottom:335.450430px;}
.y9f{bottom:336.874110px;}
.y11e{bottom:343.005750px;}
.y57{bottom:347.395110px;}
.y21{bottom:348.527280px;}
.yd3{bottom:349.126500px;}
.yd0{bottom:349.216500px;}
.yca{bottom:349.217910px;}
.yb4{bottom:349.649610px;}
.y7d{bottom:351.904110px;}
.y9e{bottom:354.158610px;}
.y127{bottom:358.395750px;}
.yd5{bottom:360.555750px;}
.yd6{bottom:360.556500px;}
.y56{bottom:364.679610px;}
.y20{bottom:365.721600px;}
.yec{bottom:366.765750px;}
.yb3{bottom:366.934110px;}
.y7c{bottom:369.188610px;}
.y9d{bottom:371.443110px;}
.y55{bottom:381.873930px;}
.y1f{bottom:383.006100px;}
.yb2{bottom:384.128430px;}
.y7b{bottom:386.382930px;}
.y9c{bottom:388.637430px;}
.yd8{bottom:389.715750px;}
.yd9{bottom:393.496500px;}
.y54{bottom:399.158430px;}
.y1e{bottom:400.290600px;}
.yb1{bottom:401.412930px;}
.y7a{bottom:403.667430px;}
.y9b{bottom:405.921930px;}
.ye8{bottom:406.996500px;}
.ye4{bottom:407.085750px;}
.yed{bottom:407.086500px;}
.y120{bottom:415.095750px;}
.y53{bottom:416.442930px;}
.ye9{bottom:418.335750px;}
.yb0{bottom:418.697430px;}
.y79{bottom:420.861750px;}
.y9a{bottom:423.116250px;}
.y1d{bottom:432.150450px;}
.y52{bottom:433.637250px;}
.yaf{bottom:435.891750px;}
.y78{bottom:438.146250px;}
.y99{bottom:440.400750px;}
.y105{bottom:446.415750px;}
.y10b{bottom:446.416740px;}
.y1c{bottom:447.715950px;}
.ydb{bottom:450.465750px;}
.y51{bottom:450.921750px;}
.yae{bottom:453.176250px;}
.y77{bottom:455.430750px;}
.y98{bottom:457.685250px;}
.y1b{bottom:463.200450px;}
.y50{bottom:468.116070px;}
.yad{bottom:470.370570px;}
.y76{bottom:472.625070px;}
.y97{bottom:474.879570px;}
.y1a{bottom:478.765950px;}
.yd2{bottom:483.405750px;}
.y4f{bottom:485.400570px;}
.yac{bottom:487.655070px;}
.y75{bottom:489.909570px;}
.y96{bottom:492.164070px;}
.y124{bottom:492.945750px;}
.y19{bottom:494.250450px;}
.y4e{bottom:502.685070px;}
.y136{bottom:504.939570px;}
.y74{bottom:507.194070px;}
.y95{bottom:509.448570px;}
.y18{bottom:509.815950px;}
.y4d{bottom:519.879390px;}
.y135{bottom:522.133890px;}
.y73{bottom:524.388390px;}
.y17{bottom:525.300450px;}
.y94{bottom:526.642890px;}
.y4c{bottom:537.163890px;}
.y134{bottom:539.418390px;}
.y16{bottom:540.865950px;}
.y72{bottom:541.672890px;}
.y93{bottom:543.927390px;}
.y4b{bottom:554.448390px;}
.y15{bottom:556.350450px;}
.y133{bottom:556.702890px;}
.y71{bottom:558.957390px;}
.y92{bottom:561.211890px;}
.y4a{bottom:571.642710px;}
.y14{bottom:571.915950px;}
.y132{bottom:573.897210px;}
.y70{bottom:576.151710px;}
.y91{bottom:578.496390px;}
.yea{bottom:582.583590px;}
.yef{bottom:582.585750px;}
.ye5{bottom:582.586500px;}
.y125{bottom:586.808100px;}
.y116{bottom:586.816500px;}
.y122{bottom:586.819170px;}
.y11b{bottom:586.827180px;}
.y13{bottom:587.400450px;}
.y49{bottom:588.927210px;}
.y131{bottom:591.181710px;}
.y6f{bottom:593.436210px;}
.y12{bottom:602.965950px;}
.y48{bottom:606.211710px;}
.y130{bottom:608.466210px;}
.ye7{bottom:609.225750px;}
.y6e{bottom:610.720710px;}
.y117{bottom:613.455750px;}
.y11{bottom:618.450450px;}
.y47{bottom:623.406030px;}
.y12f{bottom:625.660530px;}
.y6d{bottom:627.915030px;}
.y10{bottom:634.015950px;}
.y46{bottom:640.690530px;}
.y12e{bottom:642.945030px;}
.yfa{bottom:645.135750px;}
.y6c{bottom:645.199530px;}
.yf1{bottom:647.655750px;}
.yf{bottom:649.500450px;}
.y45{bottom:657.975030px;}
.y12d{bottom:660.229530px;}
.y6b{bottom:662.484030px;}
.ye{bottom:665.065950px;}
.y44{bottom:675.169350px;}
.y12c{bottom:677.423850px;}
.y6a{bottom:679.678350px;}
.yd{bottom:680.550450px;}
.ydd{bottom:682.665750px;}
.ycc{bottom:682.666500px;}
.ycb{bottom:682.673490px;}
.y10e{bottom:686.176500px;}
.y106{bottom:686.265000px;}
.y10c{bottom:686.265480px;}
.y43{bottom:692.453850px;}
.y12b{bottom:694.708350px;}
.yc{bottom:696.115950px;}
.y69{bottom:696.962850px;}
.y10f{bottom:697.605750px;}
.yde{bottom:698.146500px;}
.ydf{bottom:705.615750px;}
.y42{bottom:709.738350px;}
.yb{bottom:711.600450px;}
.y12a{bottom:711.992850px;}
.y68{bottom:714.247350px;}
.yce{bottom:722.715750px;}
.y41{bottom:726.932670px;}
.ya{bottom:727.165950px;}
.y129{bottom:729.187170px;}
.y67{bottom:731.441670px;}
.y111{bottom:741.346500px;}
.y9{bottom:742.650450px;}
.y40{bottom:744.217170px;}
.y128{bottom:746.471670px;}
.y66{bottom:748.726170px;}
.y8{bottom:758.215950px;}
.y3f{bottom:761.501670px;}
.y65{bottom:765.920490px;}
.y7{bottom:773.700450px;}
.y3e{bottom:778.695990px;}
.y90{bottom:783.204990px;}
.y6{bottom:789.265950px;}
.y3d{bottom:795.980490px;}
.y64{bottom:798.144810px;}
.y8f{bottom:800.489490px;}
.y5{bottom:804.750450px;}
.y3c{bottom:813.174810px;}
.y8e{bottom:817.683810px;}
.y3b{bottom:830.459310px;}
.y8d{bottom:834.968310px;}
.y4{bottom:834.994950px;}
.y3a{bottom:847.743810px;}
.y3{bottom:848.760450px;}
.y11c{bottom:850.438350px;}
.y8c{bottom:852.252810px;}
.y110{bottom:854.203320px;}
.y108{bottom:854.205750px;}
.y10d{bottom:854.210700px;}
.y39{bottom:864.938130px;}
.y8b{bottom:869.447130px;}
.y2{bottom:879.454950px;}
.y38{bottom:882.222630px;}
.ycf{bottom:895.245120px;}
.yc7{bottom:895.246500px;}
.y118{bottom:898.756500px;}
.y37{bottom:899.507130px;}
.y8a{bottom:901.671450px;}
.y109{bottom:902.536500px;}
.yc9{bottom:902.805750px;}
.y1{bottom:903.570450px;}
.y119{bottom:906.315750px;}
.y10a{bottom:910.095750px;}
.y36{bottom:916.701450px;}
.y35{bottom:933.985950px;}
.y34{bottom:951.270450px;}
.y2f{bottom:1018.668450px;}
.h1a{height:7.470000px;}
.h1e{height:7.560000px;}
.he{height:7.830000px;}
.h9{height:10.424004px;}
.h14{height:26.640000px;}
.h7{height:29.162109px;}
.h16{height:30.780000px;}
.hf{height:32.940000px;}
.h2{height:42.011895px;}
.h25{height:42.120000px;}
.h1d{height:44.910000px;}
.hb{height:45.810000px;}
.h6{height:45.826172px;}
.h3{height:47.381836px;}
.h4{height:47.513672px;}
.h13{height:49.950000px;}
.h12{height:51.660000px;}
.h22{height:51.669617px;}
.h5{height:52.751777px;}
.h8{height:52.898555px;}
.hc{height:56.610000px;}
.h1b{height:64.170000px;}
.h21{height:71.640000px;}
.h1{height:73.599785px;}
.h1c{height:77.850000px;}
.h15{height:79.560000px;}
.h24{height:85.877897px;}
.h20{height:86.960057px;}
.ha{height:87.311777px;}
.h11{height:87.320777px;}
.h1f{height:119.970000px;}
.h10{height:155.340000px;}
.h18{height:157.590000px;}
.h23{height:170.010000px;}
.h17{height:181.620000px;}
.hd{height:182.880000px;}
.h19{height:205.740000px;}
.h0{height:1080.000000px;}
.w2{width:16.740000px;}
.w1{width:756.750000px;}
.w0{width:756.850500px;}
.x0{left:0.000000px;}
.x13{left:13.499985px;}
.x6{left:102.110250px;}
.x4{left:115.696290px;}
.x8{left:123.434220px;}
.xb{left:129.140550px;}
.xc{left:131.419050px;}
.x4c{left:133.344570px;}
.x70{left:140.346570px;}
.x3c{left:148.464750px;}
.x4d{left:150.629070px;}
.x2{left:161.229900px;}
.xe{left:163.044300px;}
.x12{left:169.970265px;}
.x11{left:174.830250px;}
.xd{left:177.440610px;}
.x14{left:183.470250px;}
.x4f{left:202.370265px;}
.x1{left:206.420250px;}
.x16{left:214.254030px;}
.x4e{left:215.870250px;}
.x1c{left:222.926340px;}
.x17{left:231.538530px;}
.x52{left:233.871960px;}
.x1d{left:240.210840px;}
.x18{left:248.823030px;}
.x53{left:251.156460px;}
.x6f{left:254.334090px;}
.x15{left:257.450250px;}
.x3{left:260.150250px;}
.x19{left:266.017350px;}
.x54{left:268.350780px;}
.x1e{left:274.689660px;}
.x1a{left:283.301850px;}
.x50{left:285.620250px;}
.x1f{left:291.974160px;}
.x51{left:294.262500px;}
.x21{left:295.610265px;}
.x1b{left:300.586350px;}
.xf{left:302.670570px;}
.x20{left:309.168480px;}
.x7{left:314.330250px;}
.x55{left:320.114100px;}
.x23{left:331.335750px;}
.x10{left:333.827760px;}
.x56{left:337.398600px;}
.x5{left:343.220250px;}
.x22{left:348.620250px;}
.x25{left:352.310265px;}
.x3d{left:357.262500px;}
.x58{left:359.060265px;}
.x57{left:364.010250px;}
.x24{left:365.814570px;}
.xa{left:370.871550px;}
.x59{left:372.560250px;}
.x27{left:388.035750px;}
.x5b{left:390.555750px;}
.x2a{left:396.680250px;}
.x26{left:405.320250px;}
.x5a{left:407.840250px;}
.x28{left:409.010265px;}
.x5d{left:411.620265px;}
.x2b{left:413.964750px;}
.x29{left:422.510250px;}
.x5c{left:425.124750px;}
.x3e{left:439.811850px;}
.x60{left:443.128710px;}
.x2e{left:444.738000px;}
.x2f{left:448.520265px;}
.x5f{left:451.755930px;}
.x2c{left:453.380250px;}
.x61{left:460.323030px;}
.x2d{left:462.022500px;}
.x5e{left:468.950250px;}
.x3f{left:470.655930px;}
.x62{left:477.607530px;}
.x41{left:479.223030px;}
.x9{left:487.053600px;}
.x63{left:494.892030px;}
.x30{left:497.120250px;}
.x42{left:500.270265px;}
.x40{left:505.134750px;}
.x43{left:513.770250px;}
.x32{left:518.720265px;}
.x67{left:521.413500px;}
.x64{left:529.790250px;}
.x31{left:532.220250px;}
.x65{left:533.840265px;}
.x47{left:535.916280px;}
.x68{left:538.698000px;}
.x66{left:547.340250px;}
.x45{left:553.185750px;}
.x36{left:554.355750px;}
.x34{left:558.140265px;}
.x33{left:563.000250px;}
.x6b{left:569.120265px;}
.x44{left:570.470250px;}
.x35{left:571.640250px;}
.x69{left:573.620250px;}
.x38{left:580.370265px;}
.x6a{left:582.623220px;}
.x46{left:587.664570px;}
.x49{left:591.440265px;}
.x37{left:593.870250px;}
.x6c{left:600.620250px;}
.x3a{left:602.510265px;}
.x48{left:604.964100px;}
.x39{left:616.010250px;}
.x6d{left:617.814570px;}
.x4a{left:625.010250px;}
.x6e{left:635.099070px;}
.x3b{left:636.170250px;}
.x4b{left:642.294750px;}
@media print{
.v2{vertical-align:-0.961920pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.445440pt;}
.v1{vertical-align:30.720000pt;}
.ls7b{letter-spacing:-0.448896pt;}
.ls66{letter-spacing:-0.406144pt;}
.ls65{letter-spacing:-0.358048pt;}
.ls4d{letter-spacing:-0.336672pt;}
.ls9a{letter-spacing:-0.325984pt;}
.ls9b{letter-spacing:-0.277888pt;}
.ls73{letter-spacing:-0.272544pt;}
.ls52{letter-spacing:-0.267200pt;}
.ls84{letter-spacing:-0.251168pt;}
.ls24{letter-spacing:-0.245824pt;}
.ls74{letter-spacing:-0.240480pt;}
.ls20{letter-spacing:-0.225600pt;}
.ls72{letter-spacing:-0.224448pt;}
.ls7d{letter-spacing:-0.219104pt;}
.ls93{letter-spacing:-0.213760pt;}
.ls68{letter-spacing:-0.197728pt;}
.ls4a{letter-spacing:-0.192384pt;}
.ls3f{letter-spacing:-0.187040pt;}
.ls7f{letter-spacing:-0.181696pt;}
.ls4e{letter-spacing:-0.176352pt;}
.ls75{letter-spacing:-0.171008pt;}
.ls32{letter-spacing:-0.165664pt;}
.ls69{letter-spacing:-0.160320pt;}
.ls7c{letter-spacing:-0.154976pt;}
.ls29{letter-spacing:-0.149632pt;}
.ls43{letter-spacing:-0.144288pt;}
.ls41{letter-spacing:-0.138944pt;}
.ls62{letter-spacing:-0.133600pt;}
.ls2e{letter-spacing:-0.128256pt;}
.ls27{letter-spacing:-0.122912pt;}
.ls37{letter-spacing:-0.117568pt;}
.ls31{letter-spacing:-0.112224pt;}
.ls2c{letter-spacing:-0.106880pt;}
.ls2d{letter-spacing:-0.101536pt;}
.ls48{letter-spacing:-0.096192pt;}
.ls30{letter-spacing:-0.090848pt;}
.ls51{letter-spacing:-0.085504pt;}
.ls28{letter-spacing:-0.080160pt;}
.ls47{letter-spacing:-0.074816pt;}
.ls44{letter-spacing:-0.069472pt;}
.ls46{letter-spacing:-0.064128pt;}
.ls1f{letter-spacing:-0.062400pt;}
.ls45{letter-spacing:-0.058784pt;}
.ls2b{letter-spacing:-0.053440pt;}
.ls49{letter-spacing:-0.048096pt;}
.ls53{letter-spacing:-0.042752pt;}
.ls70{letter-spacing:-0.037408pt;}
.ls4b{letter-spacing:-0.032064pt;}
.ls3d{letter-spacing:-0.026720pt;}
.ls26{letter-spacing:-0.021376pt;}
.ls1b{letter-spacing:-0.019200pt;}
.ls1a{letter-spacing:-0.017024pt;}
.ls5a{letter-spacing:-0.016032pt;}
.ls1e{letter-spacing:-0.014400pt;}
.ls50{letter-spacing:-0.010688pt;}
.ls1d{letter-spacing:-0.009600pt;}
.ls4f{letter-spacing:-0.005344pt;}
.ls21{letter-spacing:-0.004800pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.004800pt;}
.ls19{letter-spacing:0.005344pt;}
.ls1{letter-spacing:0.008512pt;}
.lsa{letter-spacing:0.009600pt;}
.ls16{letter-spacing:0.010688pt;}
.ls13{letter-spacing:0.014400pt;}
.ls5c{letter-spacing:0.016032pt;}
.ls8{letter-spacing:0.019200pt;}
.ls7a{letter-spacing:0.021376pt;}
.ls0{letter-spacing:0.022368pt;}
.ls6{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.026720pt;}
.ls4{letter-spacing:0.028800pt;}
.ls3a{letter-spacing:0.032064pt;}
.ls5{letter-spacing:0.033600pt;}
.ls17{letter-spacing:0.037408pt;}
.lse{letter-spacing:0.038400pt;}
.ls34{letter-spacing:0.042752pt;}
.lsf{letter-spacing:0.043200pt;}
.ls10{letter-spacing:0.048000pt;}
.ls5d{letter-spacing:0.048096pt;}
.ls11{letter-spacing:0.052800pt;}
.ls36{letter-spacing:0.053440pt;}
.ls7{letter-spacing:0.057600pt;}
.ls3c{letter-spacing:0.058784pt;}
.ls67{letter-spacing:0.064128pt;}
.lsc{letter-spacing:0.067200pt;}
.ls35{letter-spacing:0.069472pt;}
.lsb{letter-spacing:0.072000pt;}
.ls25{letter-spacing:0.074816pt;}
.lsd{letter-spacing:0.076800pt;}
.ls54{letter-spacing:0.080160pt;}
.ls2f{letter-spacing:0.085504pt;}
.ls23{letter-spacing:0.086400pt;}
.ls33{letter-spacing:0.090848pt;}
.ls12{letter-spacing:0.091200pt;}
.ls18{letter-spacing:0.096192pt;}
.ls22{letter-spacing:0.100800pt;}
.ls39{letter-spacing:0.101536pt;}
.ls3e{letter-spacing:0.106880pt;}
.ls3{letter-spacing:0.110656pt;}
.ls4c{letter-spacing:0.112224pt;}
.ls2a{letter-spacing:0.117568pt;}
.ls2{letter-spacing:0.119168pt;}
.ls40{letter-spacing:0.122912pt;}
.ls56{letter-spacing:0.128256pt;}
.ls3b{letter-spacing:0.133600pt;}
.ls60{letter-spacing:0.138944pt;}
.ls14{letter-spacing:0.144000pt;}
.ls6a{letter-spacing:0.144288pt;}
.ls58{letter-spacing:0.149632pt;}
.ls6d{letter-spacing:0.160320pt;}
.ls77{letter-spacing:0.165664pt;}
.ls91{letter-spacing:0.187040pt;}
.ls42{letter-spacing:1.042080pt;}
.ls6f{letter-spacing:1.068800pt;}
.ls61{letter-spacing:1.336000pt;}
.ls7e{letter-spacing:1.357376pt;}
.ls64{letter-spacing:1.678016pt;}
.ls94{letter-spacing:2.319296pt;}
.ls76{letter-spacing:3.580480pt;}
.ls88{letter-spacing:3.601856pt;}
.ls95{letter-spacing:4.237792pt;}
.ls83{letter-spacing:5.199712pt;}
.ls5e{letter-spacing:5.824960pt;}
.ls80{letter-spacing:6.161632pt;}
.ls92{letter-spacing:6.482272pt;}
.ls6e{letter-spacing:8.069440pt;}
.ls82{letter-spacing:8.390080pt;}
.ls63{letter-spacing:9.677984pt;}
.ls59{letter-spacing:9.998624pt;}
.ls5b{letter-spacing:10.313920pt;}
.ls87{letter-spacing:10.955200pt;}
.ls57{letter-spacing:11.281184pt;}
.ls99{letter-spacing:14.161600pt;}
.ls81{letter-spacing:14.802880pt;}
.ls71{letter-spacing:16.080096pt;}
.ls6b{letter-spacing:16.085440pt;}
.ls55{letter-spacing:16.400736pt;}
.ls96{letter-spacing:16.721376pt;}
.ls6c{letter-spacing:17.047360pt;}
.ls85{letter-spacing:17.677952pt;}
.ls5f{letter-spacing:18.009280pt;}
.ls38{letter-spacing:19.612480pt;}
.ls78{letter-spacing:20.253760pt;}
.ls79{letter-spacing:24.422080pt;}
.ls98{letter-spacing:32.170880pt;}
.ls8a{letter-spacing:45.530880pt;}
.ls8e{letter-spacing:54.455360pt;}
.ls97{letter-spacing:59.051200pt;}
.ls89{letter-spacing:60.112640pt;}
.ls8d{letter-spacing:212.904960pt;}
.ls8f{letter-spacing:264.741760pt;}
.ls8b{letter-spacing:340.560000pt;}
.ls90{letter-spacing:543.110720pt;}
.ls8c{letter-spacing:829.200000pt;}
.ls86{letter-spacing:844.560000pt;}
.wsc{word-spacing:-14.666667pt;}
.ws66{word-spacing:-13.520320pt;}
.ws6e{word-spacing:-13.504288pt;}
.ws61{word-spacing:-13.488256pt;}
.ws47{word-spacing:-13.482912pt;}
.ws32{word-spacing:-13.472224pt;}
.ws2f{word-spacing:-13.440160pt;}
.ws51{word-spacing:-13.434816pt;}
.ws67{word-spacing:-13.429472pt;}
.wsa{word-spacing:-13.418784pt;}
.wsb{word-spacing:-13.413440pt;}
.ws31{word-spacing:-13.408096pt;}
.ws50{word-spacing:-13.392064pt;}
.ws6d{word-spacing:-13.376032pt;}
.ws25{word-spacing:-13.370688pt;}
.ws64{word-spacing:-13.365344pt;}
.wsf{word-spacing:-13.360000pt;}
.ws55{word-spacing:-13.354656pt;}
.ws22{word-spacing:-13.349312pt;}
.ws13{word-spacing:-13.343968pt;}
.ws6c{word-spacing:-13.338624pt;}
.ws12{word-spacing:-13.327936pt;}
.ws2e{word-spacing:-13.317248pt;}
.ws24{word-spacing:-13.295872pt;}
.ws10{word-spacing:-13.290528pt;}
.ws34{word-spacing:-13.279840pt;}
.ws33{word-spacing:-13.274496pt;}
.ws40{word-spacing:-13.269152pt;}
.ws54{word-spacing:-13.263808pt;}
.ws11{word-spacing:-13.258464pt;}
.ws23{word-spacing:-13.247776pt;}
.ws3f{word-spacing:-13.242432pt;}
.ws57{word-spacing:-13.237088pt;}
.ws21{word-spacing:-13.231744pt;}
.ws63{word-spacing:-13.226400pt;}
.ws53{word-spacing:-13.221056pt;}
.ws41{word-spacing:-13.215712pt;}
.ws46{word-spacing:-13.210368pt;}
.ws14{word-spacing:-13.199680pt;}
.wse{word-spacing:-13.194336pt;}
.ws30{word-spacing:-13.172960pt;}
.ws7b{word-spacing:-13.034016pt;}
.ws62{word-spacing:-13.001952pt;}
.ws0{word-spacing:-12.091200pt;}
.ws81{word-spacing:-0.331328pt;}
.ws83{word-spacing:-0.320640pt;}
.ws84{word-spacing:-0.299264pt;}
.ws7a{word-spacing:-0.267200pt;}
.ws70{word-spacing:-0.229792pt;}
.ws78{word-spacing:-0.208416pt;}
.ws8{word-spacing:-0.163200pt;}
.ws80{word-spacing:-0.106880pt;}
.ws4e{word-spacing:-0.096192pt;}
.ws7c{word-spacing:-0.085504pt;}
.ws5d{word-spacing:-0.042752pt;}
.ws75{word-spacing:-0.026720pt;}
.ws1{word-spacing:0.000000pt;}
.ws77{word-spacing:0.085504pt;}
.ws88{word-spacing:0.149632pt;}
.ws9{word-spacing:0.168000pt;}
.ws85{word-spacing:0.192384pt;}
.ws56{word-spacing:0.197728pt;}
.ws5e{word-spacing:0.213760pt;}
.ws65{word-spacing:0.219104pt;}
.ws82{word-spacing:0.235136pt;}
.ws44{word-spacing:0.304608pt;}
.ws26{word-spacing:0.416832pt;}
.ws43{word-spacing:0.790912pt;}
.ws58{word-spacing:0.849696pt;}
.ws3c{word-spacing:1.058112pt;}
.ws7{word-spacing:1.099200pt;}
.ws5{word-spacing:1.113600pt;}
.ws6{word-spacing:1.128000pt;}
.ws1e{word-spacing:1.271872pt;}
.ws2c{word-spacing:1.330656pt;}
.ws17{word-spacing:1.469600pt;}
.ws48{word-spacing:1.480288pt;}
.ws59{word-spacing:2.030720pt;}
.ws16{word-spacing:2.094848pt;}
.ws2{word-spacing:2.140800pt;}
.ws6a{word-spacing:2.410144pt;}
.ws35{word-spacing:2.431520pt;}
.ws39{word-spacing:2.746816pt;}
.ws42{word-spacing:3.350688pt;}
.ws4c{word-spacing:3.377408pt;}
.ws36{word-spacing:3.682016pt;}
.ws3d{word-spacing:4.275200pt;}
.ws74{word-spacing:4.467584pt;}
.ws3e{word-spacing:4.654624pt;}
.ws20{word-spacing:5.199712pt;}
.ws19{word-spacing:5.434848pt;}
.ws72{word-spacing:5.750144pt;}
.ws87{word-spacing:5.798240pt;}
.ws27{word-spacing:5.942528pt;}
.ws1b{word-spacing:6.273856pt;}
.ws79{word-spacing:6.402112pt;}
.ws7e{word-spacing:6.471584pt;}
.ws6b{word-spacing:6.808256pt;}
.ws7d{word-spacing:6.989952pt;}
.ws4d{word-spacing:8.181664pt;}
.ws4a{word-spacing:8.432832pt;}
.ws86{word-spacing:8.641248pt;}
.ws4{word-spacing:8.769600pt;}
.ws3{word-spacing:8.788800pt;}
.ws15{word-spacing:9.277184pt;}
.ws2d{word-spacing:9.795552pt;}
.ws45{word-spacing:10.233760pt;}
.ws4b{word-spacing:10.303232pt;}
.ws1f{word-spacing:10.420800pt;}
.ws3b{word-spacing:10.907104pt;}
.ws5b{word-spacing:11.046048pt;}
.wsd{word-spacing:11.409440pt;}
.ws76{word-spacing:12.686656pt;}
.ws89{word-spacing:13.301216pt;}
.ws3a{word-spacing:13.792864pt;}
.ws6f{word-spacing:14.685312pt;}
.ws49{word-spacing:15.241088pt;}
.ws29{word-spacing:16.170944pt;}
.ws2a{word-spacing:16.181632pt;}
.ws5a{word-spacing:16.213696pt;}
.ws2b{word-spacing:16.625184pt;}
.ws73{word-spacing:17.768800pt;}
.ws1a{word-spacing:18.003936pt;}
.ws69{word-spacing:18.105472pt;}
.ws68{word-spacing:18.431456pt;}
.ws18{word-spacing:18.714688pt;}
.ws1d{word-spacing:19.943808pt;}
.ws37{word-spacing:20.328576pt;}
.ws28{word-spacing:22.605120pt;}
.ws1c{word-spacing:22.872320pt;}
.ws38{word-spacing:24.160224pt;}
.ws71{word-spacing:29.028608pt;}
.ws7f{word-spacing:37.124768pt;}
.ws52{word-spacing:70.973664pt;}
.ws5f{word-spacing:110.309824pt;}
.ws4f{word-spacing:314.395360pt;}
.ws5c{word-spacing:578.738304pt;}
.ws60{word-spacing:619.698304pt;}
._27{margin-left:-17.787648pt;}
._15{margin-left:-16.747616pt;}
._16{margin-left:-15.723488pt;}
._45{margin-left:-14.203968pt;}
._46{margin-left:-13.177280pt;}
._19{margin-left:-11.824032pt;}
._18{margin-left:-10.775744pt;}
._1b{margin-left:-9.870368pt;}
._1c{margin-left:-8.828480pt;}
._42{margin-left:-7.046656pt;}
._22{margin-left:-6.122592pt;}
._26{margin-left:-4.618048pt;}
._1d{margin-left:-2.877344pt;}
._12{margin-left:-1.850240pt;}
._1{margin-left:-0.889504pt;}
._0{width:1.098048pt;}
._7{width:2.152704pt;}
._4{width:3.350400pt;}
._5{width:4.492800pt;}
._6{width:5.774400pt;}
._3{width:7.014016pt;}
._2{width:8.131200pt;}
._8{width:9.148800pt;}
._c{width:10.512000pt;}
._11{width:11.588608pt;}
._9{width:12.771808pt;}
._f{width:13.901792pt;}
._a{width:15.532800pt;}
._b{width:16.527904pt;}
._10{width:17.626688pt;}
._d{width:19.027200pt;}
._e{width:20.347200pt;}
._1a{width:21.541664pt;}
._1e{width:23.267776pt;}
._21{width:24.157696pt;}
._14{width:25.672576pt;}
._13{width:26.586400pt;}
._17{width:27.628480pt;}
._23{width:28.536960pt;}
._24{width:29.905024pt;}
._25{width:31.125856pt;}
._43{width:32.647712pt;}
._44{width:33.700480pt;}
._47{width:36.397984pt;}
._20{width:37.680544pt;}
._1f{width:39.123424pt;}
._38{width:44.486272pt;}
._3a{width:45.998624pt;}
._40{width:57.726176pt;}
._2d{width:70.802656pt;}
._2f{width:94.530016pt;}
._30{width:99.056672pt;}
._33{width:118.716960pt;}
._2c{width:135.801728pt;}
._28{width:146.874112pt;}
._35{width:165.196544pt;}
._29{width:176.526400pt;}
._3d{width:211.510176pt;}
._39{width:212.621728pt;}
._32{width:217.615424pt;}
._37{width:220.481024pt;}
._3c{width:238.828704pt;}
._2e{width:243.884128pt;}
._3e{width:271.118368pt;}
._36{width:306.725440pt;}
._31{width:318.716160pt;}
._41{width:359.443456pt;}
._3b{width:432.596800pt;}
._3f{width:467.407616pt;}
._2b{width:647.463680pt;}
._34{width:747.347712pt;}
._2a{width:911.664032pt;}
.fs7{font-size:10.560000pt;}
.fs6{font-size:37.333333pt;}
.fs1{font-size:42.560000pt;}
.fs4{font-size:47.999467pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:74.560000pt;}
.yc8{bottom:-0.000667pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:0.079333pt;}
.ye6{bottom:13.359333pt;}
.y107{bottom:13.360667pt;}
.y126{bottom:13.679333pt;}
.yee{bottom:17.039333pt;}
.yd7{bottom:19.199333pt;}
.ycd{bottom:28.879333pt;}
.ye3{bottom:31.119333pt;}
.y112{bottom:33.279333pt;}
.y33{bottom:36.804267pt;}
.y121{bottom:41.519333pt;}
.yda{bottom:43.999333pt;}
.yf9{bottom:48.879333pt;}
.yeb{bottom:49.279333pt;}
.y31{bottom:49.693600pt;}
.yf0{bottom:51.119333pt;}
.yf3{bottom:52.559333pt;}
.y102{bottom:56.639333pt;}
.y32{bottom:61.154933pt;}
.y30{bottom:61.640267pt;}
.y11f{bottom:64.079333pt;}
.yf5{bottom:86.639333pt;}
.yfb{bottom:102.014000pt;}
.yc4{bottom:104.213733pt;}
.ye1{bottom:108.974000pt;}
.yf2{bottom:108.974667pt;}
.yc6{bottom:109.054000pt;}
.yfd{bottom:109.134000pt;}
.yc3{bottom:109.384293pt;}
.y2e{bottom:110.390667pt;}
.y63{bottom:111.388293pt;}
.yd1{bottom:112.559333pt;}
.yab{bottom:115.396293pt;}
.yfe{bottom:118.814667pt;}
.yc2{bottom:124.748293pt;}
.yff{bottom:125.454667pt;}
.y2d{bottom:125.754667pt;}
.y62{bottom:126.752293pt;}
.y89{bottom:128.756293pt;}
.yaa{bottom:130.760293pt;}
.y100{bottom:132.094000pt;}
.y123{bottom:133.359333pt;}
.ydc{bottom:134.399333pt;}
.yf7{bottom:135.599333pt;}
.yc1{bottom:140.112293pt;}
.y2c{bottom:141.118667pt;}
.y61{bottom:142.116293pt;}
.y88{bottom:144.120293pt;}
.ya9{bottom:146.124293pt;}
.yc0{bottom:155.396133pt;}
.y2b{bottom:156.402507pt;}
.y60{bottom:157.400133pt;}
.y87{bottom:159.404133pt;}
.ya8{bottom:161.408133pt;}
.y114{bottom:165.294667pt;}
.yf4{bottom:168.254000pt;}
.ybf{bottom:170.760133pt;}
.y2a{bottom:171.766507pt;}
.y5f{bottom:172.764133pt;}
.y86{bottom:174.768133pt;}
.ya7{bottom:176.772133pt;}
.y101{bottom:185.854667pt;}
.ybe{bottom:186.124133pt;}
.y29{bottom:187.050347pt;}
.y5e{bottom:188.128133pt;}
.y85{bottom:190.132133pt;}
.ya6{bottom:192.136133pt;}
.ybd{bottom:201.407973pt;}
.yf6{bottom:202.334000pt;}
.y28{bottom:202.414347pt;}
.y5d{bottom:203.411973pt;}
.y84{bottom:205.415973pt;}
.y113{bottom:206.088400pt;}
.ya5{bottom:207.419973pt;}
.y115{bottom:209.694000pt;}
.ybc{bottom:216.771973pt;}
.y27{bottom:217.778347pt;}
.y5c{bottom:218.775973pt;}
.y83{bottom:220.779973pt;}
.ya4{bottom:222.783973pt;}
.ybb{bottom:232.135973pt;}
.y26{bottom:233.062187pt;}
.y5b{bottom:234.139973pt;}
.y82{bottom:236.143973pt;}
.ya3{bottom:238.147973pt;}
.yba{bottom:247.419813pt;}
.y25{bottom:248.426187pt;}
.y103{bottom:249.214000pt;}
.yb8{bottom:249.423813pt;}
.y81{bottom:251.427813pt;}
.yfc{bottom:251.699440pt;}
.ya2{bottom:253.431813pt;}
.y5a{bottom:262.783813pt;}
.y24{bottom:263.790187pt;}
.yb7{bottom:264.787813pt;}
.y80{bottom:266.791813pt;}
.ya1{bottom:268.795813pt;}
.yf8{bottom:270.014000pt;}
.ye2{bottom:270.014667pt;}
.y104{bottom:270.174667pt;}
.ye0{bottom:272.574000pt;}
.y59{bottom:278.147813pt;}
.y23{bottom:279.074027pt;}
.yb6{bottom:280.151813pt;}
.y7f{bottom:282.155813pt;}
.ya0{bottom:284.159813pt;}
.yc5{bottom:291.294000pt;}
.y58{bottom:293.431653pt;}
.y22{bottom:294.438027pt;}
.yb5{bottom:295.435653pt;}
.yb9{bottom:295.515813pt;}
.y7e{bottom:297.439653pt;}
.y11d{bottom:298.174667pt;}
.y11a{bottom:298.178160pt;}
.y9f{bottom:299.443653pt;}
.y11e{bottom:304.894000pt;}
.y57{bottom:308.795653pt;}
.y21{bottom:309.802027pt;}
.yd3{bottom:310.334667pt;}
.yd0{bottom:310.414667pt;}
.yca{bottom:310.415920pt;}
.yb4{bottom:310.799653pt;}
.y7d{bottom:312.803653pt;}
.y9e{bottom:314.807653pt;}
.y127{bottom:318.574000pt;}
.yd5{bottom:320.494000pt;}
.yd6{bottom:320.494667pt;}
.y56{bottom:324.159653pt;}
.y20{bottom:325.085867pt;}
.yec{bottom:326.014000pt;}
.yb3{bottom:326.163653pt;}
.y7c{bottom:328.167653pt;}
.y9d{bottom:330.171653pt;}
.y55{bottom:339.443493pt;}
.y1f{bottom:340.449867pt;}
.yb2{bottom:341.447493pt;}
.y7b{bottom:343.451493pt;}
.y9c{bottom:345.455493pt;}
.yd8{bottom:346.414000pt;}
.yd9{bottom:349.774667pt;}
.y54{bottom:354.807493pt;}
.y1e{bottom:355.813867pt;}
.yb1{bottom:356.811493pt;}
.y7a{bottom:358.815493pt;}
.y9b{bottom:360.819493pt;}
.ye8{bottom:361.774667pt;}
.ye4{bottom:361.854000pt;}
.yed{bottom:361.854667pt;}
.y120{bottom:368.974000pt;}
.y53{bottom:370.171493pt;}
.ye9{bottom:371.854000pt;}
.yb0{bottom:372.175493pt;}
.y79{bottom:374.099333pt;}
.y9a{bottom:376.103333pt;}
.y1d{bottom:384.133733pt;}
.y52{bottom:385.455333pt;}
.yaf{bottom:387.459333pt;}
.y78{bottom:389.463333pt;}
.y99{bottom:391.467333pt;}
.y105{bottom:396.814000pt;}
.y10b{bottom:396.814880pt;}
.y1c{bottom:397.969733pt;}
.ydb{bottom:400.414000pt;}
.y51{bottom:400.819333pt;}
.yae{bottom:402.823333pt;}
.y77{bottom:404.827333pt;}
.y98{bottom:406.831333pt;}
.y1b{bottom:411.733733pt;}
.y50{bottom:416.103173pt;}
.yad{bottom:418.107173pt;}
.y76{bottom:420.111173pt;}
.y97{bottom:422.115173pt;}
.y1a{bottom:425.569733pt;}
.yd2{bottom:429.694000pt;}
.y4f{bottom:431.467173pt;}
.yac{bottom:433.471173pt;}
.y75{bottom:435.475173pt;}
.y96{bottom:437.479173pt;}
.y124{bottom:438.174000pt;}
.y19{bottom:439.333733pt;}
.y4e{bottom:446.831173pt;}
.y136{bottom:448.835173pt;}
.y74{bottom:450.839173pt;}
.y95{bottom:452.843173pt;}
.y18{bottom:453.169733pt;}
.y4d{bottom:462.115013pt;}
.y135{bottom:464.119013pt;}
.y73{bottom:466.123013pt;}
.y17{bottom:466.933733pt;}
.y94{bottom:468.127013pt;}
.y4c{bottom:477.479013pt;}
.y134{bottom:479.483013pt;}
.y16{bottom:480.769733pt;}
.y72{bottom:481.487013pt;}
.y93{bottom:483.491013pt;}
.y4b{bottom:492.843013pt;}
.y15{bottom:494.533733pt;}
.y133{bottom:494.847013pt;}
.y71{bottom:496.851013pt;}
.y92{bottom:498.855013pt;}
.y4a{bottom:508.126853pt;}
.y14{bottom:508.369733pt;}
.y132{bottom:510.130853pt;}
.y70{bottom:512.134853pt;}
.y91{bottom:514.219013pt;}
.yea{bottom:517.852080pt;}
.yef{bottom:517.854000pt;}
.ye5{bottom:517.854667pt;}
.y125{bottom:521.607200pt;}
.y116{bottom:521.614667pt;}
.y122{bottom:521.617040pt;}
.y11b{bottom:521.624160pt;}
.y13{bottom:522.133733pt;}
.y49{bottom:523.490853pt;}
.y131{bottom:525.494853pt;}
.y6f{bottom:527.498853pt;}
.y12{bottom:535.969733pt;}
.y48{bottom:538.854853pt;}
.y130{bottom:540.858853pt;}
.ye7{bottom:541.534000pt;}
.y6e{bottom:542.862853pt;}
.y117{bottom:545.294000pt;}
.y11{bottom:549.733733pt;}
.y47{bottom:554.138693pt;}
.y12f{bottom:556.142693pt;}
.y6d{bottom:558.146693pt;}
.y10{bottom:563.569733pt;}
.y46{bottom:569.502693pt;}
.y12e{bottom:571.506693pt;}
.yfa{bottom:573.454000pt;}
.y6c{bottom:573.510693pt;}
.yf1{bottom:575.694000pt;}
.yf{bottom:577.333733pt;}
.y45{bottom:584.866693pt;}
.y12d{bottom:586.870693pt;}
.y6b{bottom:588.874693pt;}
.ye{bottom:591.169733pt;}
.y44{bottom:600.150533pt;}
.y12c{bottom:602.154533pt;}
.y6a{bottom:604.158533pt;}
.yd{bottom:604.933733pt;}
.ydd{bottom:606.814000pt;}
.ycc{bottom:606.814667pt;}
.ycb{bottom:606.820880pt;}
.y10e{bottom:609.934667pt;}
.y106{bottom:610.013333pt;}
.y10c{bottom:610.013760pt;}
.y43{bottom:615.514533pt;}
.y12b{bottom:617.518533pt;}
.yc{bottom:618.769733pt;}
.y69{bottom:619.522533pt;}
.y10f{bottom:620.094000pt;}
.yde{bottom:620.574667pt;}
.ydf{bottom:627.214000pt;}
.y42{bottom:630.878533pt;}
.yb{bottom:632.533733pt;}
.y12a{bottom:632.882533pt;}
.y68{bottom:634.886533pt;}
.yce{bottom:642.414000pt;}
.y41{bottom:646.162373pt;}
.ya{bottom:646.369733pt;}
.y129{bottom:648.166373pt;}
.y67{bottom:650.170373pt;}
.y111{bottom:658.974667pt;}
.y9{bottom:660.133733pt;}
.y40{bottom:661.526373pt;}
.y128{bottom:663.530373pt;}
.y66{bottom:665.534373pt;}
.y8{bottom:673.969733pt;}
.y3f{bottom:676.890373pt;}
.y65{bottom:680.818213pt;}
.y7{bottom:687.733733pt;}
.y3e{bottom:692.174213pt;}
.y90{bottom:696.182213pt;}
.y6{bottom:701.569733pt;}
.y3d{bottom:707.538213pt;}
.y64{bottom:709.462053pt;}
.y8f{bottom:711.546213pt;}
.y5{bottom:715.333733pt;}
.y3c{bottom:722.822053pt;}
.y8e{bottom:726.830053pt;}
.y3b{bottom:738.186053pt;}
.y8d{bottom:742.194053pt;}
.y4{bottom:742.217733pt;}
.y3a{bottom:753.550053pt;}
.y3{bottom:754.453733pt;}
.y11c{bottom:755.945200pt;}
.y8c{bottom:757.558053pt;}
.y110{bottom:759.291840pt;}
.y108{bottom:759.294000pt;}
.y10d{bottom:759.298400pt;}
.y39{bottom:768.833893pt;}
.y8b{bottom:772.841893pt;}
.y2{bottom:781.737733pt;}
.y38{bottom:784.197893pt;}
.ycf{bottom:795.773440pt;}
.yc7{bottom:795.774667pt;}
.y118{bottom:798.894667pt;}
.y37{bottom:799.561893pt;}
.y8a{bottom:801.485733pt;}
.y109{bottom:802.254667pt;}
.yc9{bottom:802.494000pt;}
.y1{bottom:803.173733pt;}
.y119{bottom:805.614000pt;}
.y10a{bottom:808.974000pt;}
.y36{bottom:814.845733pt;}
.y35{bottom:830.209733pt;}
.y34{bottom:845.573733pt;}
.y2f{bottom:905.483067pt;}
.h1a{height:6.640000pt;}
.h1e{height:6.720000pt;}
.he{height:6.960000pt;}
.h9{height:9.265781pt;}
.h14{height:23.680000pt;}
.h7{height:25.921875pt;}
.h16{height:27.360000pt;}
.hf{height:29.280000pt;}
.h2{height:37.343906pt;}
.h25{height:37.440000pt;}
.h1d{height:39.920000pt;}
.hb{height:40.720000pt;}
.h6{height:40.734375pt;}
.h3{height:42.117188pt;}
.h4{height:42.234375pt;}
.h13{height:44.400000pt;}
.h12{height:45.920000pt;}
.h22{height:45.928549pt;}
.h5{height:46.890469pt;}
.h8{height:47.020937pt;}
.hc{height:50.320000pt;}
.h1b{height:57.040000pt;}
.h21{height:63.680000pt;}
.h1{height:65.422031pt;}
.h1c{height:69.200000pt;}
.h15{height:70.720000pt;}
.h24{height:76.335909pt;}
.h20{height:77.297829pt;}
.ha{height:77.610469pt;}
.h11{height:77.618469pt;}
.h1f{height:106.640000pt;}
.h10{height:138.080000pt;}
.h18{height:140.080000pt;}
.h23{height:151.120000pt;}
.h17{height:161.440000pt;}
.hd{height:162.560000pt;}
.h19{height:182.880000pt;}
.h0{height:960.000000pt;}
.w2{width:14.880000pt;}
.w1{width:672.666667pt;}
.w0{width:672.756000pt;}
.x0{left:0.000000pt;}
.x13{left:11.999987pt;}
.x6{left:90.764667pt;}
.x4{left:102.841147pt;}
.x8{left:109.719307pt;}
.xb{left:114.791600pt;}
.xc{left:116.816933pt;}
.x4c{left:118.528507pt;}
.x70{left:124.752507pt;}
.x3c{left:131.968667pt;}
.x4d{left:133.892507pt;}
.x2{left:143.315467pt;}
.xe{left:144.928267pt;}
.x12{left:151.084680pt;}
.x11{left:155.404667pt;}
.xd{left:157.724987pt;}
.x14{left:163.084667pt;}
.x4f{left:179.884680pt;}
.x1{left:183.484667pt;}
.x16{left:190.448027pt;}
.x4e{left:191.884667pt;}
.x1c{left:198.156747pt;}
.x17{left:205.812027pt;}
.x52{left:207.886187pt;}
.x1d{left:213.520747pt;}
.x18{left:221.176027pt;}
.x53{left:223.250187pt;}
.x6f{left:226.074747pt;}
.x15{left:228.844667pt;}
.x3{left:231.244667pt;}
.x19{left:236.459867pt;}
.x54{left:238.534027pt;}
.x1e{left:244.168587pt;}
.x1a{left:251.823867pt;}
.x50{left:253.884667pt;}
.x1f{left:259.532587pt;}
.x51{left:261.566667pt;}
.x21{left:262.764680pt;}
.x1b{left:267.187867pt;}
.xf{left:269.040507pt;}
.x20{left:274.816427pt;}
.x7{left:279.404667pt;}
.x55{left:284.545867pt;}
.x23{left:294.520667pt;}
.x10{left:296.735787pt;}
.x56{left:299.909867pt;}
.x5{left:305.084667pt;}
.x22{left:309.884667pt;}
.x25{left:313.164680pt;}
.x3d{left:317.566667pt;}
.x58{left:319.164680pt;}
.x57{left:323.564667pt;}
.x24{left:325.168507pt;}
.xa{left:329.663600pt;}
.x59{left:331.164667pt;}
.x27{left:344.920667pt;}
.x5b{left:347.160667pt;}
.x2a{left:352.604667pt;}
.x26{left:360.284667pt;}
.x5a{left:362.524667pt;}
.x28{left:363.564680pt;}
.x5d{left:365.884680pt;}
.x2b{left:367.968667pt;}
.x29{left:375.564667pt;}
.x5c{left:377.888667pt;}
.x3e{left:390.943867pt;}
.x60{left:393.892187pt;}
.x2e{left:395.322667pt;}
.x2f{left:398.684680pt;}
.x5f{left:401.560827pt;}
.x2c{left:403.004667pt;}
.x61{left:409.176027pt;}
.x2d{left:410.686667pt;}
.x5e{left:416.844667pt;}
.x3f{left:418.360827pt;}
.x62{left:424.540027pt;}
.x41{left:425.976027pt;}
.x9{left:432.936533pt;}
.x63{left:439.904027pt;}
.x30{left:441.884667pt;}
.x42{left:444.684680pt;}
.x40{left:449.008667pt;}
.x43{left:456.684667pt;}
.x32{left:461.084680pt;}
.x67{left:463.478667pt;}
.x64{left:470.924667pt;}
.x31{left:473.084667pt;}
.x65{left:474.524680pt;}
.x47{left:476.370027pt;}
.x68{left:478.842667pt;}
.x66{left:486.524667pt;}
.x45{left:491.720667pt;}
.x36{left:492.760667pt;}
.x34{left:496.124680pt;}
.x33{left:500.444667pt;}
.x6b{left:505.884680pt;}
.x44{left:507.084667pt;}
.x35{left:508.124667pt;}
.x69{left:509.884667pt;}
.x38{left:515.884680pt;}
.x6a{left:517.887307pt;}
.x46{left:522.368507pt;}
.x49{left:525.724680pt;}
.x37{left:527.884667pt;}
.x6c{left:533.884667pt;}
.x3a{left:535.564680pt;}
.x48{left:537.745867pt;}
.x39{left:547.564667pt;}
.x6d{left:549.168507pt;}
.x4a{left:555.564667pt;}
.x6e{left:564.532507pt;}
.x3b{left:565.484667pt;}
.x4b{left:570.928667pt;}
}




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