
    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_40a183d3e7eb4009173f1812.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_bfb1401bf697ddce7c3e29d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_33f1b88fd18704f4f11c924b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_4eb08a5f69e845b6e3950bfa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:43.396200px;}
.v2{vertical-align:48.000000px;}
.ls75{letter-spacing:-1.933800px;}
.ls76{letter-spacing:-1.749000px;}
.ls3d{letter-spacing:-1.630200px;}
.lsa1{letter-spacing:-1.512000px;}
.ls71{letter-spacing:-1.504800px;}
.ls97{letter-spacing:-1.453500px;}
.ls52{letter-spacing:-1.452000px;}
.ls6a{letter-spacing:-1.445400px;}
.ls7c{letter-spacing:-1.392600px;}
.ls72{letter-spacing:-1.333200px;}
.ls83{letter-spacing:-1.326600px;}
.ls62{letter-spacing:-1.267200px;}
.ls95{letter-spacing:-1.266000px;}
.ls57{letter-spacing:-1.207800px;}
.ls6f{letter-spacing:-1.148400px;}
.ls77{letter-spacing:-1.141800px;}
.ls3a{letter-spacing:-1.089000px;}
.ls70{letter-spacing:-1.023000px;}
.ls9d{letter-spacing:-0.972000px;}
.ls82{letter-spacing:-0.970200px;}
.ls9e{letter-spacing:-0.966000px;}
.ls58{letter-spacing:-0.963600px;}
.ls9c{letter-spacing:-0.958500px;}
.ls3b{letter-spacing:-0.957000px;}
.ls14{letter-spacing:-0.906300px;}
.ls69{letter-spacing:-0.904200px;}
.ls46{letter-spacing:-0.844800px;}
.ls59{letter-spacing:-0.792000px;}
.lsa2{letter-spacing:-0.787500px;}
.lsa0{letter-spacing:-0.786000px;}
.ls49{letter-spacing:-0.785400px;}
.ls6b{letter-spacing:-0.778800px;}
.ls9f{letter-spacing:-0.778500px;}
.ls99{letter-spacing:-0.744000px;}
.ls98{letter-spacing:-0.732000px;}
.ls40{letter-spacing:-0.726000px;}
.ls73{letter-spacing:-0.706200px;}
.ls53{letter-spacing:-0.679800px;}
.ls29{letter-spacing:-0.673200px;}
.ls2b{letter-spacing:-0.666600px;}
.lsa8{letter-spacing:-0.666000px;}
.lsa7{letter-spacing:-0.661500px;}
.ls54{letter-spacing:-0.620400px;}
.ls84{letter-spacing:-0.613800px;}
.ls27{letter-spacing:-0.607200px;}
.ls2e{letter-spacing:-0.604200px;}
.ls55{letter-spacing:-0.554400px;}
.ls2a{letter-spacing:-0.547800px;}
.ls9b{letter-spacing:-0.546000px;}
.ls64{letter-spacing:-0.495000px;}
.ls12{letter-spacing:-0.490200px;}
.ls23{letter-spacing:-0.488400px;}
.ls5e{letter-spacing:-0.481800px;}
.ls80{letter-spacing:-0.435600px;}
.lsa4{letter-spacing:-0.432000px;}
.ls28{letter-spacing:-0.429000px;}
.ls74{letter-spacing:-0.422400px;}
.lsa3{letter-spacing:-0.418500px;}
.ls41{letter-spacing:-0.369600px;}
.ls43{letter-spacing:-0.363000px;}
.ls42{letter-spacing:-0.310200px;}
.ls5f{letter-spacing:-0.303600px;}
.ls61{letter-spacing:-0.297000px;}
.ls3e{letter-spacing:-0.250800px;}
.lsa6{letter-spacing:-0.246000px;}
.ls13{letter-spacing:-0.245100px;}
.ls24{letter-spacing:-0.244200px;}
.lsa5{letter-spacing:-0.238500px;}
.ls47{letter-spacing:-0.237600px;}
.ls65{letter-spacing:-0.191400px;}
.ls11{letter-spacing:-0.188100px;}
.lsaf{letter-spacing:-0.186000px;}
.ls26{letter-spacing:-0.184800px;}
.lsad{letter-spacing:-0.184500px;}
.lsae{letter-spacing:-0.180000px;}
.ls4a{letter-spacing:-0.132000px;}
.ls15{letter-spacing:-0.125400px;}
.ls96{letter-spacing:-0.076500px;}
.ls56{letter-spacing:-0.072600px;}
.ls3c{letter-spacing:-0.066000px;}
.ls16{letter-spacing:-0.062700px;}
.ls2d{letter-spacing:-0.039900px;}
.ls7a{letter-spacing:-0.033000px;}
.ls79{letter-spacing:-0.026400px;}
.ls48{letter-spacing:-0.019800px;}
.lsb{letter-spacing:-0.019200px;}
.ls92{letter-spacing:-0.018000px;}
.ls94{letter-spacing:-0.013500px;}
.ls25{letter-spacing:-0.013200px;}
.ls91{letter-spacing:-0.012000px;}
.ls10{letter-spacing:-0.011400px;}
.lse{letter-spacing:-0.010800px;}
.lsc{letter-spacing:-0.009600px;}
.ls9a{letter-spacing:-0.009000px;}
.lsd{letter-spacing:-0.007200px;}
.ls22{letter-spacing:-0.006600px;}
.ls60{letter-spacing:-0.006000px;}
.lsf{letter-spacing:-0.005700px;}
.lsa{letter-spacing:-0.004800px;}
.ls93{letter-spacing:-0.004500px;}
.ls2c{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.046200px;}
.ls30{letter-spacing:0.052800px;}
.ls0{letter-spacing:0.057000px;}
.ls63{letter-spacing:0.059400px;}
.ls5{letter-spacing:0.102600px;}
.ls4c{letter-spacing:0.105600px;}
.ls18{letter-spacing:0.112200px;}
.ls90{letter-spacing:0.157500px;}
.ls5a{letter-spacing:0.165000px;}
.ls89{letter-spacing:0.166500px;}
.ls8a{letter-spacing:0.168000px;}
.ls35{letter-spacing:0.171600px;}
.ls86{letter-spacing:0.174000px;}
.lsa9{letter-spacing:0.175500px;}
.ls85{letter-spacing:0.180000px;}
.ls66{letter-spacing:0.224400px;}
.ls1c{letter-spacing:0.231000px;}
.ls3{letter-spacing:0.233700px;}
.ls1a{letter-spacing:0.237600px;}
.ls39{letter-spacing:0.283800px;}
.ls21{letter-spacing:0.290400px;}
.ls4{letter-spacing:0.290700px;}
.ls1{letter-spacing:0.296400px;}
.ls34{letter-spacing:0.297000px;}
.ls9{letter-spacing:0.347700px;}
.ls4d{letter-spacing:0.349800px;}
.ls8{letter-spacing:0.353400px;}
.ls6c{letter-spacing:0.356400px;}
.ls17{letter-spacing:0.388800px;}
.ls4e{letter-spacing:0.409200px;}
.ls6{letter-spacing:0.410400px;}
.ls20{letter-spacing:0.415800px;}
.ls7b{letter-spacing:0.422400px;}
.ls19{letter-spacing:0.462000px;}
.ls4b{letter-spacing:0.468600px;}
.ls8e{letter-spacing:0.472500px;}
.ls8d{letter-spacing:0.474000px;}
.ls3f{letter-spacing:0.475200px;}
.ls8c{letter-spacing:0.477000px;}
.ls7{letter-spacing:0.478800px;}
.ls8b{letter-spacing:0.480000px;}
.ls67{letter-spacing:0.528000px;}
.ls33{letter-spacing:0.534600px;}
.lsab{letter-spacing:0.540000px;}
.lsb0{letter-spacing:0.576000px;}
.ls6e{letter-spacing:0.587400px;}
.lsac{letter-spacing:0.589500px;}
.ls37{letter-spacing:0.594000px;}
.lsb1{letter-spacing:0.600000px;}
.ls78{letter-spacing:0.600600px;}
.ls8f{letter-spacing:0.642000px;}
.ls7e{letter-spacing:0.646800px;}
.ls50{letter-spacing:0.653400px;}
.ls2{letter-spacing:0.655500px;}
.ls4f{letter-spacing:0.660000px;}
.ls31{letter-spacing:0.706200px;}
.ls38{letter-spacing:0.712800px;}
.ls2f{letter-spacing:0.772200px;}
.ls7f{letter-spacing:0.778800px;}
.ls32{letter-spacing:0.825000px;}
.lsaa{letter-spacing:0.828000px;}
.ls6d{letter-spacing:0.831600px;}
.ls81{letter-spacing:0.838200px;}
.ls1f{letter-spacing:0.891000px;}
.ls88{letter-spacing:0.894000px;}
.ls1b{letter-spacing:0.897600px;}
.ls87{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.950400px;}
.ls7d{letter-spacing:0.957000px;}
.ls44{letter-spacing:1.016400px;}
.ls68{letter-spacing:1.075800px;}
.ls1d{letter-spacing:1.122000px;}
.ls51{letter-spacing:1.194600px;}
.ls36{letter-spacing:1.366200px;}
.ls5b{letter-spacing:1.491600px;}
.ls5d{letter-spacing:1.669800px;}
.ls5c{letter-spacing:1.795200px;}
.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;}
}
.ws6a{word-spacing:-17.153400px;}
.ws18{word-spacing:-16.823400px;}
.ws9e{word-spacing:-16.816800px;}
.ws8d{word-spacing:-16.559400px;}
.ws84{word-spacing:-16.480200px;}
.ws9b{word-spacing:-16.196400px;}
.wsd6{word-spacing:-15.600000px;}
.wsa3{word-spacing:-15.000000px;}
.wsd8{word-spacing:-14.988000px;}
.ws0{word-spacing:-14.529300px;}
.wsa6{word-spacing:-14.268000px;}
.ws1b{word-spacing:-14.238600px;}
.ws1a{word-spacing:-14.210100px;}
.ws72{word-spacing:-12.000000px;}
.wsd7{word-spacing:-11.839500px;}
.wsd5{word-spacing:-11.826000px;}
.wsab{word-spacing:-11.727000px;}
.wsac{word-spacing:-11.722500px;}
.wsd3{word-spacing:-11.425500px;}
.wsa8{word-spacing:-11.416500px;}
.ws9f{word-spacing:-11.407500px;}
.wsd4{word-spacing:-11.250000px;}
.wsa7{word-spacing:-11.241000px;}
.wsa0{word-spacing:-11.232000px;}
.wsa4{word-spacing:-11.173500px;}
.wsd2{word-spacing:-11.070000px;}
.wsd0{word-spacing:-11.065500px;}
.wsb1{word-spacing:-11.011500px;}
.wsb0{word-spacing:-10.831500px;}
.wsb2{word-spacing:-10.588500px;}
.wsae{word-spacing:-10.471500px;}
.wsaf{word-spacing:-10.462500px;}
.wsad{word-spacing:-10.291500px;}
.wsa5{word-spacing:-9.796500px;}
.ws34{word-spacing:-2.160300px;}
.ws71{word-spacing:-0.844800px;}
.ws24{word-spacing:-0.838200px;}
.ws91{word-spacing:-0.831600px;}
.ws52{word-spacing:-0.825000px;}
.ws87{word-spacing:-0.798600px;}
.ws89{word-spacing:-0.785400px;}
.ws3b{word-spacing:-0.778800px;}
.ws41{word-spacing:-0.772200px;}
.ws94{word-spacing:-0.726000px;}
.ws44{word-spacing:-0.719400px;}
.ws2{word-spacing:-0.718200px;}
.ws55{word-spacing:-0.712800px;}
.ws8e{word-spacing:-0.699600px;}
.ws88{word-spacing:-0.666600px;}
.wsb8{word-spacing:-0.666000px;}
.ws14{word-spacing:-0.661200px;}
.ws3a{word-spacing:-0.660000px;}
.wsb7{word-spacing:-0.654000px;}
.ws6d{word-spacing:-0.653400px;}
.ws8b{word-spacing:-0.646800px;}
.wsbe{word-spacing:-0.618000px;}
.ws50{word-spacing:-0.607200px;}
.ws12{word-spacing:-0.604200px;}
.ws1f{word-spacing:-0.600600px;}
.wsbd{word-spacing:-0.600000px;}
.ws3{word-spacing:-0.598500px;}
.ws4e{word-spacing:-0.594000px;}
.wsda{word-spacing:-0.570000px;}
.wsca{word-spacing:-0.558000px;}
.ws78{word-spacing:-0.547800px;}
.ws27{word-spacing:-0.541200px;}
.wsc9{word-spacing:-0.540000px;}
.ws5{word-spacing:-0.535800px;}
.ws40{word-spacing:-0.534600px;}
.wsc5{word-spacing:-0.534000px;}
.wsd9{word-spacing:-0.510000px;}
.ws6c{word-spacing:-0.488400px;}
.ws49{word-spacing:-0.481800px;}
.ws48{word-spacing:-0.475200px;}
.wsd{word-spacing:-0.473100px;}
.ws3c{word-spacing:-0.468600px;}
.ws4c{word-spacing:-0.422400px;}
.ws29{word-spacing:-0.415800px;}
.ws8a{word-spacing:-0.409200px;}
.ws4a{word-spacing:-0.363000px;}
.ws1e{word-spacing:-0.356400px;}
.wsc8{word-spacing:-0.354000px;}
.ws7e{word-spacing:-0.349800px;}
.ws54{word-spacing:-0.303600px;}
.ws13{word-spacing:-0.302100px;}
.ws31{word-spacing:-0.297000px;}
.ws5e{word-spacing:-0.290400px;}
.ws2a{word-spacing:-0.237600px;}
.wsc{word-spacing:-0.233700px;}
.ws51{word-spacing:-0.231000px;}
.ws5b{word-spacing:-0.224400px;}
.wsbf{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.178200px;}
.wsc0{word-spacing:-0.174000px;}
.ws2b{word-spacing:-0.171600px;}
.ws5a{word-spacing:-0.165000px;}
.ws53{word-spacing:-0.118800px;}
.wscb{word-spacing:-0.096000px;}
.ws83{word-spacing:-0.066000px;}
.wscc{word-spacing:-0.060000px;}
.ws2d{word-spacing:-0.059400px;}
.ws5f{word-spacing:-0.052800px;}
.wsbb{word-spacing:-0.042000px;}
.wsb4{word-spacing:-0.018000px;}
.ws82{word-spacing:-0.006600px;}
.wscf{word-spacing:-0.006000px;}
.wsf{word-spacing:-0.005700px;}
.ws1{word-spacing:0.000000px;}
.ws33{word-spacing:0.004800px;}
.wsb9{word-spacing:0.006000px;}
.ws26{word-spacing:0.006600px;}
.wsb3{word-spacing:0.012000px;}
.ws79{word-spacing:0.052800px;}
.ws15{word-spacing:0.057000px;}
.ws7b{word-spacing:0.059400px;}
.wsc7{word-spacing:0.060000px;}
.ws37{word-spacing:0.112200px;}
.ws6f{word-spacing:0.118800px;}
.ws7c{word-spacing:0.125400px;}
.wsc6{word-spacing:0.126000px;}
.ws8c{word-spacing:0.151800px;}
.ws6b{word-spacing:0.178200px;}
.ws11{word-spacing:0.182400px;}
.ws46{word-spacing:0.184800px;}
.wsc3{word-spacing:0.192000px;}
.ws73{word-spacing:0.231000px;}
.ws96{word-spacing:0.237600px;}
.wsc4{word-spacing:0.246000px;}
.ws3e{word-spacing:0.290400px;}
.ws58{word-spacing:0.297000px;}
.ws35{word-spacing:0.303600px;}
.ws43{word-spacing:0.356400px;}
.ws6e{word-spacing:0.363000px;}
.ws97{word-spacing:0.369600px;}
.ws7f{word-spacing:0.415800px;}
.ws32{word-spacing:0.422400px;}
.ws69{word-spacing:0.475200px;}
.ws9d{word-spacing:0.481800px;}
.ws2c{word-spacing:0.488400px;}
.ws74{word-spacing:0.534600px;}
.wsb5{word-spacing:0.540000px;}
.ws21{word-spacing:0.541200px;}
.wsb6{word-spacing:0.546000px;}
.ws95{word-spacing:0.547800px;}
.wsdb{word-spacing:0.582000px;}
.ws59{word-spacing:0.594000px;}
.wsba{word-spacing:0.600000px;}
.ws57{word-spacing:0.600600px;}
.ws45{word-spacing:0.607200px;}
.ws99{word-spacing:0.653400px;}
.ws4f{word-spacing:0.660000px;}
.ws60{word-spacing:0.666600px;}
.ws90{word-spacing:0.673200px;}
.ws8f{word-spacing:0.679800px;}
.ws56{word-spacing:0.712800px;}
.ws7{word-spacing:0.718200px;}
.ws20{word-spacing:0.719400px;}
.ws28{word-spacing:0.772200px;}
.ws2f{word-spacing:0.778800px;}
.ws3f{word-spacing:0.785400px;}
.ws9a{word-spacing:0.831600px;}
.ws75{word-spacing:0.838200px;}
.wscd{word-spacing:0.846000px;}
.wsce{word-spacing:0.858000px;}
.ws98{word-spacing:0.891000px;}
.ws36{word-spacing:0.897600px;}
.wsdd{word-spacing:0.900000px;}
.ws39{word-spacing:0.904200px;}
.ws66{word-spacing:0.957000px;}
.wse{word-spacing:0.957600px;}
.ws7a{word-spacing:0.963600px;}
.ws86{word-spacing:0.970200px;}
.wsc1{word-spacing:1.008000px;}
.ws93{word-spacing:1.009800px;}
.wsdc{word-spacing:1.014000px;}
.ws64{word-spacing:1.016400px;}
.wsc2{word-spacing:1.020000px;}
.wsb{word-spacing:1.020300px;}
.ws65{word-spacing:1.023000px;}
.ws5c{word-spacing:1.075800px;}
.ws81{word-spacing:1.082400px;}
.ws16{word-spacing:1.083000px;}
.ws9c{word-spacing:1.089000px;}
.ws6{word-spacing:1.134300px;}
.ws76{word-spacing:1.135200px;}
.ws9{word-spacing:1.140000px;}
.ws5d{word-spacing:1.141800px;}
.ws1d{word-spacing:1.148400px;}
.ws92{word-spacing:1.188000px;}
.ws30{word-spacing:1.194600px;}
.ws77{word-spacing:1.201200px;}
.ws8{word-spacing:1.202700px;}
.ws25{word-spacing:1.254000px;}
.ws61{word-spacing:1.260600px;}
.ws63{word-spacing:1.267200px;}
.ws85{word-spacing:1.313400px;}
.ws67{word-spacing:1.320000px;}
.wsbc{word-spacing:1.326000px;}
.ws4b{word-spacing:1.326600px;}
.wsa{word-spacing:1.328100px;}
.ws47{word-spacing:1.372800px;}
.ws10{word-spacing:1.373700px;}
.ws4{word-spacing:1.379400px;}
.ws68{word-spacing:1.386000px;}
.ws23{word-spacing:1.432200px;}
.ws42{word-spacing:1.438800px;}
.ws70{word-spacing:1.445400px;}
.ws3d{word-spacing:1.498200px;}
.ws62{word-spacing:1.504800px;}
.ws1c{word-spacing:1.557600px;}
.ws4d{word-spacing:1.564200px;}
.ws80{word-spacing:1.610400px;}
.ws38{word-spacing:1.617000px;}
.ws2e{word-spacing:1.623600px;}
.wsa9{word-spacing:3.100500px;}
.wsaa{word-spacing:3.181500px;}
.wsd1{word-spacing:3.210000px;}
.wsa1{word-spacing:3.760500px;}
.wsa2{word-spacing:3.781500px;}
.ws17{word-spacing:3.840000px;}
.ws19{word-spacing:35.760000px;}
.ws7d{word-spacing:562.219200px;}
._c{margin-left:-1391.097600px;}
._10{margin-left:-10.917000px;}
._d{margin-left:-8.599800px;}
._2{margin-left:-7.432800px;}
._5{margin-left:-5.477100px;}
._4{margin-left:-3.510600px;}
._1{margin-left:-1.699200px;}
._3{width:1.031700px;}
._f{width:3.013200px;}
._a{width:9.642600px;}
._8{width:14.424000px;}
._9{width:18.121500px;}
._0{width:47.721600px;}
._7{width:305.164800px;}
._b{width:497.449800px;}
._e{width:538.915200px;}
._6{width:1252.555200px;}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1b4{bottom:13.937505px;}
.y198{bottom:15.439005px;}
.y118{bottom:15.443955px;}
.y7c{bottom:15.808605px;}
.yb1{bottom:15.811905px;}
.y103{bottom:15.815205px;}
.y131{bottom:15.826755px;}
.y174{bottom:15.833355px;}
.y14c{bottom:15.838305px;}
.yd7{bottom:15.869505px;}
.y48{bottom:18.324105px;}
.y9d{bottom:24.438105px;}
.y1d7{bottom:26.341605px;}
.y25{bottom:27.961605px;}
.y1b3{bottom:31.188255px;}
.y197{bottom:32.689755px;}
.y117{bottom:32.694705px;}
.y7b{bottom:33.059355px;}
.yb0{bottom:33.062655px;}
.y102{bottom:33.065955px;}
.y130{bottom:33.077505px;}
.y173{bottom:33.084105px;}
.y14b{bottom:33.089055px;}
.yd6{bottom:33.120255px;}
.y47{bottom:35.574855px;}
.y9c{bottom:41.688855px;}
.y1d6{bottom:42.091605px;}
.y24{bottom:42.964005px;}
.y1b2{bottom:48.439005px;}
.y196{bottom:49.940505px;}
.y116{bottom:49.945455px;}
.y7a{bottom:50.310105px;}
.yaf{bottom:50.313405px;}
.y101{bottom:50.316705px;}
.y12f{bottom:50.328255px;}
.y172{bottom:50.334855px;}
.y14a{bottom:50.339805px;}
.yd5{bottom:50.371005px;}
.y46{bottom:52.825605px;}
.y1d5{bottom:57.841755px;}
.y9b{bottom:58.939605px;}
.y23{bottom:63.964230px;}
.y1b1{bottom:65.689755px;}
.y195{bottom:67.191255px;}
.y115{bottom:67.196205px;}
.y79{bottom:67.560855px;}
.ybd{bottom:67.564155px;}
.y12e{bottom:67.579005px;}
.y171{bottom:67.585605px;}
.y149{bottom:67.590555px;}
.yd4{bottom:67.621755px;}
.y45{bottom:70.076355px;}
.y1d4{bottom:73.591755px;}
.y9a{bottom:76.190355px;}
.y100{bottom:76.192005px;}
.y22{bottom:78.963780px;}
.y1b0{bottom:82.940505px;}
.y194{bottom:84.442005px;}
.y114{bottom:84.446955px;}
.y78{bottom:84.811605px;}
.yae{bottom:84.813255px;}
.ybc{bottom:84.814905px;}
.y12d{bottom:84.829755px;}
.y170{bottom:84.836355px;}
.y148{bottom:84.841305px;}
.yd3{bottom:84.872505px;}
.y44{bottom:87.327105px;}
.y1d3{bottom:89.341755px;}
.y99{bottom:93.441105px;}
.y21{bottom:93.963330px;}
.y1af{bottom:100.191255px;}
.y193{bottom:101.692755px;}
.y113{bottom:101.697705px;}
.y77{bottom:102.062355px;}
.yad{bottom:102.064005px;}
.ybb{bottom:102.065655px;}
.y12c{bottom:102.080505px;}
.y16f{bottom:102.087105px;}
.yd2{bottom:102.123255px;}
.y43{bottom:104.577855px;}
.y1d2{bottom:105.091755px;}
.y20{bottom:108.962880px;}
.y98{bottom:110.691855px;}
.y1ae{bottom:117.442005px;}
.y192{bottom:118.943505px;}
.y76{bottom:119.313105px;}
.yac{bottom:119.314755px;}
.yba{bottom:119.316405px;}
.y12b{bottom:119.331255px;}
.y16e{bottom:119.337855px;}
.y147{bottom:119.341155px;}
.yd1{bottom:119.374005px;}
.y1d1{bottom:120.841755px;}
.y42{bottom:121.828605px;}
.y1f{bottom:123.962430px;}
.y112{bottom:127.573005px;}
.y97{bottom:127.942605px;}
.y1ad{bottom:134.692755px;}
.y191{bottom:136.194255px;}
.y75{bottom:136.563855px;}
.yab{bottom:136.565505px;}
.yb9{bottom:136.567155px;}
.y12a{bottom:136.582005px;}
.y16d{bottom:136.588605px;}
.y146{bottom:136.590255px;}
.y1d0{bottom:136.591755px;}
.yd0{bottom:136.624755px;}
.y1e{bottom:138.961980px;}
.y41{bottom:139.079355px;}
.y111{bottom:144.823755px;}
.y96{bottom:145.193355px;}
.y1ac{bottom:151.943505px;}
.y1cf{bottom:152.341755px;}
.y190{bottom:153.445005px;}
.y74{bottom:153.814605px;}
.yaa{bottom:153.816255px;}
.yb8{bottom:153.817905px;}
.y153{bottom:153.831105px;}
.y129{bottom:153.832755px;}
.y145{bottom:153.839355px;}
.ycf{bottom:153.875505px;}
.y1d{bottom:153.961530px;}
.y40{bottom:156.330105px;}
.y110{bottom:162.074505px;}
.y95{bottom:162.444105px;}
.y16c{bottom:162.463905px;}
.y1ce{bottom:168.091755px;}
.y1c{bottom:168.961080px;}
.y1ab{bottom:169.194255px;}
.y18f{bottom:170.695755px;}
.y73{bottom:171.065355px;}
.ya9{bottom:171.067005px;}
.yb7{bottom:171.068655px;}
.y152{bottom:171.081855px;}
.y128{bottom:171.083505px;}
.y144{bottom:171.088455px;}
.yce{bottom:171.126255px;}
.y10f{bottom:179.325255px;}
.y94{bottom:179.694855px;}
.y3f{bottom:182.205405px;}
.y1cd{bottom:183.841755px;}
.y1aa{bottom:186.445005px;}
.y18e{bottom:187.946505px;}
.y72{bottom:188.316105px;}
.ya8{bottom:188.317755px;}
.yb6{bottom:188.319405px;}
.y151{bottom:188.332605px;}
.y127{bottom:188.334255px;}
.y143{bottom:188.337555px;}
.ycd{bottom:188.377005px;}
.y10e{bottom:196.576005px;}
.y93{bottom:196.945605px;}
.y1b{bottom:198.961605px;}
.y1cc{bottom:199.591755px;}
.y18d{bottom:205.197255px;}
.y71{bottom:205.566855px;}
.ya7{bottom:205.568505px;}
.yb5{bottom:205.570155px;}
.y126{bottom:205.583355px;}
.y142{bottom:205.586655px;}
.y16b{bottom:205.588305px;}
.ycc{bottom:205.627755px;}
.y1a9{bottom:212.320305px;}
.y10d{bottom:213.826755px;}
.y92{bottom:214.196355px;}
.y1cb{bottom:215.341755px;}
.y70{bottom:222.817605px;}
.ya6{bottom:222.819255px;}
.yb4{bottom:222.820905px;}
.y125{bottom:222.832455px;}
.y150{bottom:222.834105px;}
.y141{bottom:222.835755px;}
.y16a{bottom:222.837405px;}
.ycb{bottom:222.878505px;}
.y3e{bottom:225.329805px;}
.y1a8{bottom:229.571055px;}
.y18c{bottom:231.072555px;}
.y10c{bottom:231.077505px;}
.y1ca{bottom:231.091755px;}
.y91{bottom:231.447105px;}
.y1a{bottom:234.963555px;}
.y6f{bottom:240.068355px;}
.ya5{bottom:240.070005px;}
.yb3{bottom:240.071655px;}
.y124{bottom:240.081555px;}
.y140{bottom:240.084855px;}
.y169{bottom:240.086505px;}
.yca{bottom:240.129255px;}
.y3d{bottom:242.580555px;}
.y1a7{bottom:246.821805px;}
.y1c9{bottom:246.841605px;}
.y10b{bottom:248.328255px;}
.y19{bottom:249.963105px;}
.y6e{bottom:257.319105px;}
.ya4{bottom:257.320755px;}
.y90{bottom:257.322405px;}
.y123{bottom:257.330655px;}
.y13f{bottom:257.333955px;}
.y14f{bottom:257.335605px;}
.yc9{bottom:257.380005px;}
.y3c{bottom:259.831305px;}
.y1c8{bottom:262.591605px;}
.y1a6{bottom:264.072555px;}
.y10a{bottom:265.579005px;}
.y18b{bottom:270.448155px;}
.y18{bottom:270.963330px;}
.y6d{bottom:274.569855px;}
.ya3{bottom:274.571505px;}
.y8f{bottom:274.573155px;}
.y122{bottom:274.579755px;}
.y13e{bottom:274.583055px;}
.y168{bottom:274.584705px;}
.y14e{bottom:274.586355px;}
.yc8{bottom:274.630755px;}
.y3b{bottom:277.082055px;}
.y1c7{bottom:278.341605px;}
.y1a5{bottom:281.323305px;}
.y109{bottom:282.829755px;}
.y17{bottom:285.962880px;}
.y18a{bottom:287.698905px;}
.y6c{bottom:291.820605px;}
.ya2{bottom:291.822255px;}
.y8e{bottom:291.823905px;}
.y121{bottom:291.828855px;}
.y13d{bottom:291.832155px;}
.y167{bottom:291.833805px;}
.y14d{bottom:291.837105px;}
.yc7{bottom:291.881505px;}
.y1c6{bottom:294.091455px;}
.y3a{bottom:294.332805px;}
.y1a4{bottom:298.574055px;}
.y108{bottom:300.080505px;}
.y16{bottom:300.962430px;}
.y189{bottom:304.949655px;}
.y6b{bottom:309.071355px;}
.ya1{bottom:309.073005px;}
.y8d{bottom:309.074655px;}
.y120{bottom:309.077955px;}
.y13c{bottom:309.081255px;}
.y166{bottom:309.082905px;}
.yc6{bottom:309.132255px;}
.y1c5{bottom:309.841455px;}
.y39{bottom:311.583555px;}
.y1a3{bottom:315.824805px;}
.y15{bottom:315.961980px;}
.y107{bottom:317.331255px;}
.y188{bottom:322.200405px;}
.y1c4{bottom:325.591455px;}
.y6a{bottom:326.322105px;}
.ya0{bottom:326.323755px;}
.y8c{bottom:326.325405px;}
.y11f{bottom:326.327055px;}
.y13b{bottom:326.330355px;}
.y165{bottom:326.332005px;}
.yc5{bottom:326.381355px;}
.y38{bottom:328.834305px;}
.y14{bottom:330.961530px;}
.y1a2{bottom:333.075555px;}
.y106{bottom:334.582005px;}
.y187{bottom:339.451155px;}
.y1c3{bottom:341.341455px;}
.y15d{bottom:343.201605px;}
.y69{bottom:343.572855px;}
.y9f{bottom:343.574505px;}
.y8b{bottom:343.576155px;}
.y13a{bottom:343.579455px;}
.y164{bottom:343.581105px;}
.yc4{bottom:343.632105px;}
.y13{bottom:345.961080px;}
.y37{bottom:346.085055px;}
.y1a1{bottom:350.326305px;}
.y105{bottom:351.832755px;}
.y186{bottom:356.701905px;}
.y1c2{bottom:357.091455px;}
.y68{bottom:360.823605px;}
.y9e{bottom:360.825255px;}
.y8a{bottom:360.826905px;}
.y139{bottom:360.828555px;}
.y163{bottom:360.830205px;}
.yc3{bottom:360.882855px;}
.y36{bottom:363.335805px;}
.y1a0{bottom:367.577055px;}
.y104{bottom:369.083505px;}
.y1c1{bottom:372.841455px;}
.y185{bottom:373.952655px;}
.y12{bottom:375.961605px;}
.y67{bottom:378.074355px;}
.yff{bottom:378.076005px;}
.y89{bottom:378.077655px;}
.y162{bottom:378.079305px;}
.yc2{bottom:378.133605px;}
.y35{bottom:380.586555px;}
.y19f{bottom:384.827805px;}
.y1c0{bottom:388.591455px;}
.y184{bottom:391.203405px;}
.y15c{bottom:394.723305px;}
.y66{bottom:395.325105px;}
.yfe{bottom:395.326755px;}
.y88{bottom:395.328405px;}
.yc1{bottom:395.384355px;}
.y34{bottom:397.837305px;}
.y19e{bottom:402.078555px;}
.y161{bottom:403.954605px;}
.y1bf{bottom:404.341455px;}
.y15b{bottom:406.723305px;}
.y11e{bottom:407.131605px;}
.y183{bottom:408.454155px;}
.y11{bottom:411.964455px;}
.y65{bottom:412.575855px;}
.yfd{bottom:412.577505px;}
.y87{bottom:412.579155px;}
.yc0{bottom:412.635105px;}
.y33{bottom:415.088055px;}
.y19d{bottom:419.329305px;}
.y1be{bottom:420.091305px;}
.y182{bottom:425.704905px;}
.y10{bottom:426.964005px;}
.y64{bottom:429.826605px;}
.yfc{bottom:429.828255px;}
.y86{bottom:429.829905px;}
.ybf{bottom:429.885855px;}
.y32{bottom:432.338805px;}
.y1bd{bottom:435.841305px;}
.y19c{bottom:436.580055px;}
.y181{bottom:442.955655px;}
.y15a{bottom:443.374905px;}
.y63{bottom:447.077355px;}
.yfb{bottom:447.079005px;}
.y85{bottom:447.080655px;}
.ybe{bottom:447.136605px;}
.yf{bottom:447.964230px;}
.y31{bottom:449.589555px;}
.y1bc{bottom:451.591305px;}
.y19b{bottom:453.830805px;}
.y159{bottom:455.374905px;}
.y11d{bottom:456.130155px;}
.y180{bottom:460.206405px;}
.ye{bottom:462.963780px;}
.y62{bottom:464.328105px;}
.yfa{bottom:464.329755px;}
.y84{bottom:464.331405px;}
.y30{bottom:466.840305px;}
.y1bb{bottom:467.341455px;}
.y158{bottom:467.374905px;}
.y19a{bottom:471.081555px;}
.y17f{bottom:477.457155px;}
.yd{bottom:477.963330px;}
.ye9{bottom:481.246605px;}
.y61{bottom:481.578855px;}
.yf9{bottom:481.580505px;}
.y83{bottom:481.582155px;}
.y1ba{bottom:483.091605px;}
.y2f{bottom:484.091055px;}
.y1b5{bottom:490.206705px;}
.yc{bottom:492.962880px;}
.y17e{bottom:494.707905px;}
.y199{bottom:496.956855px;}
.y60{bottom:498.829605px;}
.yf8{bottom:498.831255px;}
.y82{bottom:498.832905px;}
.y2e{bottom:501.341805px;}
.y1b9{bottom:507.457455px;}
.yb{bottom:507.962430px;}
.ye5{bottom:510.457305px;}
.y17d{bottom:511.958655px;}
.y157{bottom:512.974905px;}
.y5f{bottom:516.080355px;}
.yf7{bottom:516.082005px;}
.y81{bottom:516.083655px;}
.y2d{bottom:518.592555px;}
.ya{bottom:522.961980px;}
.y156{bottom:524.974905px;}
.y11b{bottom:527.997555px;}
.y11a{bottom:529.148505px;}
.y17c{bottom:529.209405px;}
.y5e{bottom:533.331105px;}
.yf6{bottom:533.332755px;}
.y80{bottom:533.334405px;}
.y11c{bottom:535.148505px;}
.y2c{bottom:535.843305px;}
.y9{bottom:537.961530px;}
.y119{bottom:541.148505px;}
.y17b{bottom:546.460155px;}
.y5d{bottom:550.581855px;}
.yf5{bottom:550.583505px;}
.y7f{bottom:550.585155px;}
.y8{bottom:552.961080px;}
.y2b{bottom:553.094055px;}
.y17a{bottom:563.710905px;}
.y5c{bottom:567.832605px;}
.yf4{bottom:567.834255px;}
.y7e{bottom:567.835905px;}
.y155{bottom:568.174905px;}
.y2a{bottom:570.344805px;}
.yb2{bottom:576.460455px;}
.y179{bottom:580.961655px;}
.y7{bottom:582.961605px;}
.y5b{bottom:585.083355px;}
.yf3{bottom:585.085005px;}
.y138{bottom:585.086655px;}
.y29{bottom:587.595555px;}
.y7d{bottom:593.711205px;}
.ye4{bottom:601.270905px;}
.y5a{bottom:602.334105px;}
.yf2{bottom:602.335755px;}
.y137{bottom:602.337405px;}
.y28{bottom:604.846305px;}
.y178{bottom:606.836955px;}
.y154{bottom:611.374905px;}
.ye3{bottom:613.270905px;}
.y59{bottom:619.584855px;}
.yf1{bottom:619.586505px;}
.y136{bottom:619.588155px;}
.ye2{bottom:625.270905px;}
.y27{bottom:630.721605px;}
.y58{bottom:636.835605px;}
.yf0{bottom:636.837255px;}
.y135{bottom:636.838905px;}
.ye1{bottom:637.270905px;}
.y177{bottom:645.461805px;}
.y1df{bottom:648.841605px;}
.ye0{bottom:649.270905px;}
.ydc{bottom:650.619705px;}
.y57{bottom:654.086355px;}
.yef{bottom:654.088005px;}
.y134{bottom:654.089655px;}
.ye8{bottom:656.767305px;}
.y6{bottom:660.046755px;}
.ydb{bottom:662.619705px;}
.y176{bottom:662.712555px;}
.y1de{bottom:664.591605px;}
.ye7{bottom:668.767305px;}
.y56{bottom:671.337105px;}
.yee{bottom:671.338755px;}
.y1b8{bottom:671.340405px;}
.yda{bottom:674.619705px;}
.y5{bottom:678.046605px;}
.y175{bottom:679.963305px;}
.y133{bottom:679.964955px;}
.y1dd{bottom:680.341455px;}
.ye6{bottom:680.767305px;}
.yd9{bottom:686.619705px;}
.y4f{bottom:687.690930px;}
.y55{bottom:688.587855px;}
.y160{bottom:688.589505px;}
.y1b7{bottom:688.591155px;}
.y4d{bottom:693.691605px;}
.y1dc{bottom:696.091455px;}
.yed{bottom:697.214055px;}
.y132{bottom:697.215705px;}
.y54{bottom:705.838605px;}
.y15f{bottom:705.840255px;}
.y4e{bottom:708.691155px;}
.y1db{bottom:711.841605px;}
.yec{bottom:714.464805px;}
.y1b6{bottom:714.466455px;}
.y4c{bottom:714.691830px;}
.y4{bottom:723.046605px;}
.y53{bottom:723.089355px;}
.y15e{bottom:723.091005px;}
.y1da{bottom:727.591605px;}
.y4b{bottom:729.691380px;}
.yeb{bottom:731.715555px;}
.y52{bottom:740.340105px;}
.y1d9{bottom:743.341455px;}
.ydf{bottom:744.967305px;}
.y3{bottom:747.046605px;}
.yea{bottom:748.966305px;}
.y4a{bottom:750.691605px;}
.yde{bottom:756.967305px;}
.y51{bottom:757.590855px;}
.y1d8{bottom:759.091455px;}
.ydd{bottom:768.967305px;}
.y2{bottom:771.046605px;}
.y50{bottom:774.841605px;}
.y49{bottom:776.626605px;}
.yd8{bottom:777.967305px;}
.y1{bottom:822.046755px;}
.y26{bottom:1016.206605px;}
.h8{height:33.843750px;}
.hb{height:40.368000px;}
.h2{height:40.608000px;}
.h5{height:45.414000px;}
.h7{height:47.937000px;}
.h6{height:48.222000px;}
.hf{height:50.460000px;}
.h10{height:50.460600px;}
.hc{height:50.760000px;}
.ha{height:55.506000px;}
.h9{height:55.836000px;}
.h4{height:60.552000px;}
.h3{height:80.736000px;}
.hd{height:83.764200px;}
.he{height:88.368000px;}
.h1{height:850.500000px;}
.h0{height:850.853760px;}
.w0{width:536.632680px;}
.w1{width:537.000000px;}
.x3{left:-109.297950px;}
.x0{left:0.000000px;}
.x2{left:27.682050px;}
.x18{left:38.328150px;}
.x7{left:42.997575px;}
.xa{left:47.497050px;}
.x4{left:49.371450px;}
.x11{left:61.184100px;}
.xe{left:144.364350px;}
.xf{left:160.015950px;}
.x12{left:164.235450px;}
.xc{left:170.342250px;}
.x6{left:184.282050px;}
.x8{left:194.332575px;}
.x13{left:206.805750px;}
.x14{left:210.171750px;}
.xd{left:235.586250px;}
.x16{left:243.274950px;}
.x5{left:246.202050px;}
.x15{left:247.494150px;}
.x17{left:252.069750px;}
.x9{left:283.356600px;}
.x10{left:339.268800px;}
.x1{left:394.297050px;}
.xb{left:406.133850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.574400pt;}
.v2{vertical-align:42.666667pt;}
.ls75{letter-spacing:-1.718933pt;}
.ls76{letter-spacing:-1.554667pt;}
.ls3d{letter-spacing:-1.449067pt;}
.lsa1{letter-spacing:-1.344000pt;}
.ls71{letter-spacing:-1.337600pt;}
.ls97{letter-spacing:-1.292000pt;}
.ls52{letter-spacing:-1.290667pt;}
.ls6a{letter-spacing:-1.284800pt;}
.ls7c{letter-spacing:-1.237867pt;}
.ls72{letter-spacing:-1.185067pt;}
.ls83{letter-spacing:-1.179200pt;}
.ls62{letter-spacing:-1.126400pt;}
.ls95{letter-spacing:-1.125333pt;}
.ls57{letter-spacing:-1.073600pt;}
.ls6f{letter-spacing:-1.020800pt;}
.ls77{letter-spacing:-1.014933pt;}
.ls3a{letter-spacing:-0.968000pt;}
.ls70{letter-spacing:-0.909333pt;}
.ls9d{letter-spacing:-0.864000pt;}
.ls82{letter-spacing:-0.862400pt;}
.ls9e{letter-spacing:-0.858667pt;}
.ls58{letter-spacing:-0.856533pt;}
.ls9c{letter-spacing:-0.852000pt;}
.ls3b{letter-spacing:-0.850667pt;}
.ls14{letter-spacing:-0.805600pt;}
.ls69{letter-spacing:-0.803733pt;}
.ls46{letter-spacing:-0.750933pt;}
.ls59{letter-spacing:-0.704000pt;}
.lsa2{letter-spacing:-0.700000pt;}
.lsa0{letter-spacing:-0.698667pt;}
.ls49{letter-spacing:-0.698133pt;}
.ls6b{letter-spacing:-0.692267pt;}
.ls9f{letter-spacing:-0.692000pt;}
.ls99{letter-spacing:-0.661333pt;}
.ls98{letter-spacing:-0.650667pt;}
.ls40{letter-spacing:-0.645333pt;}
.ls73{letter-spacing:-0.627733pt;}
.ls53{letter-spacing:-0.604267pt;}
.ls29{letter-spacing:-0.598400pt;}
.ls2b{letter-spacing:-0.592533pt;}
.lsa8{letter-spacing:-0.592000pt;}
.lsa7{letter-spacing:-0.588000pt;}
.ls54{letter-spacing:-0.551467pt;}
.ls84{letter-spacing:-0.545600pt;}
.ls27{letter-spacing:-0.539733pt;}
.ls2e{letter-spacing:-0.537067pt;}
.ls55{letter-spacing:-0.492800pt;}
.ls2a{letter-spacing:-0.486933pt;}
.ls9b{letter-spacing:-0.485333pt;}
.ls64{letter-spacing:-0.440000pt;}
.ls12{letter-spacing:-0.435733pt;}
.ls23{letter-spacing:-0.434133pt;}
.ls5e{letter-spacing:-0.428267pt;}
.ls80{letter-spacing:-0.387200pt;}
.lsa4{letter-spacing:-0.384000pt;}
.ls28{letter-spacing:-0.381333pt;}
.ls74{letter-spacing:-0.375467pt;}
.lsa3{letter-spacing:-0.372000pt;}
.ls41{letter-spacing:-0.328533pt;}
.ls43{letter-spacing:-0.322667pt;}
.ls42{letter-spacing:-0.275733pt;}
.ls5f{letter-spacing:-0.269867pt;}
.ls61{letter-spacing:-0.264000pt;}
.ls3e{letter-spacing:-0.222933pt;}
.lsa6{letter-spacing:-0.218667pt;}
.ls13{letter-spacing:-0.217867pt;}
.ls24{letter-spacing:-0.217067pt;}
.lsa5{letter-spacing:-0.212000pt;}
.ls47{letter-spacing:-0.211200pt;}
.ls65{letter-spacing:-0.170133pt;}
.ls11{letter-spacing:-0.167200pt;}
.lsaf{letter-spacing:-0.165333pt;}
.ls26{letter-spacing:-0.164267pt;}
.lsad{letter-spacing:-0.164000pt;}
.lsae{letter-spacing:-0.160000pt;}
.ls4a{letter-spacing:-0.117333pt;}
.ls15{letter-spacing:-0.111467pt;}
.ls96{letter-spacing:-0.068000pt;}
.ls56{letter-spacing:-0.064533pt;}
.ls3c{letter-spacing:-0.058667pt;}
.ls16{letter-spacing:-0.055733pt;}
.ls2d{letter-spacing:-0.035467pt;}
.ls7a{letter-spacing:-0.029333pt;}
.ls79{letter-spacing:-0.023467pt;}
.ls48{letter-spacing:-0.017600pt;}
.lsb{letter-spacing:-0.017067pt;}
.ls92{letter-spacing:-0.016000pt;}
.ls94{letter-spacing:-0.012000pt;}
.ls25{letter-spacing:-0.011733pt;}
.ls91{letter-spacing:-0.010667pt;}
.ls10{letter-spacing:-0.010133pt;}
.lse{letter-spacing:-0.009600pt;}
.lsc{letter-spacing:-0.008533pt;}
.ls9a{letter-spacing:-0.008000pt;}
.lsd{letter-spacing:-0.006400pt;}
.ls22{letter-spacing:-0.005867pt;}
.ls60{letter-spacing:-0.005333pt;}
.lsf{letter-spacing:-0.005067pt;}
.lsa{letter-spacing:-0.004267pt;}
.ls93{letter-spacing:-0.004000pt;}
.ls2c{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.041067pt;}
.ls30{letter-spacing:0.046933pt;}
.ls0{letter-spacing:0.050667pt;}
.ls63{letter-spacing:0.052800pt;}
.ls5{letter-spacing:0.091200pt;}
.ls4c{letter-spacing:0.093867pt;}
.ls18{letter-spacing:0.099733pt;}
.ls90{letter-spacing:0.140000pt;}
.ls5a{letter-spacing:0.146667pt;}
.ls89{letter-spacing:0.148000pt;}
.ls8a{letter-spacing:0.149333pt;}
.ls35{letter-spacing:0.152533pt;}
.ls86{letter-spacing:0.154667pt;}
.lsa9{letter-spacing:0.156000pt;}
.ls85{letter-spacing:0.160000pt;}
.ls66{letter-spacing:0.199467pt;}
.ls1c{letter-spacing:0.205333pt;}
.ls3{letter-spacing:0.207733pt;}
.ls1a{letter-spacing:0.211200pt;}
.ls39{letter-spacing:0.252267pt;}
.ls21{letter-spacing:0.258133pt;}
.ls4{letter-spacing:0.258400pt;}
.ls1{letter-spacing:0.263467pt;}
.ls34{letter-spacing:0.264000pt;}
.ls9{letter-spacing:0.309067pt;}
.ls4d{letter-spacing:0.310933pt;}
.ls8{letter-spacing:0.314133pt;}
.ls6c{letter-spacing:0.316800pt;}
.ls17{letter-spacing:0.345600pt;}
.ls4e{letter-spacing:0.363733pt;}
.ls6{letter-spacing:0.364800pt;}
.ls20{letter-spacing:0.369600pt;}
.ls7b{letter-spacing:0.375467pt;}
.ls19{letter-spacing:0.410667pt;}
.ls4b{letter-spacing:0.416533pt;}
.ls8e{letter-spacing:0.420000pt;}
.ls8d{letter-spacing:0.421333pt;}
.ls3f{letter-spacing:0.422400pt;}
.ls8c{letter-spacing:0.424000pt;}
.ls7{letter-spacing:0.425600pt;}
.ls8b{letter-spacing:0.426667pt;}
.ls67{letter-spacing:0.469333pt;}
.ls33{letter-spacing:0.475200pt;}
.lsab{letter-spacing:0.480000pt;}
.lsb0{letter-spacing:0.512000pt;}
.ls6e{letter-spacing:0.522133pt;}
.lsac{letter-spacing:0.524000pt;}
.ls37{letter-spacing:0.528000pt;}
.lsb1{letter-spacing:0.533333pt;}
.ls78{letter-spacing:0.533867pt;}
.ls8f{letter-spacing:0.570667pt;}
.ls7e{letter-spacing:0.574933pt;}
.ls50{letter-spacing:0.580800pt;}
.ls2{letter-spacing:0.582667pt;}
.ls4f{letter-spacing:0.586667pt;}
.ls31{letter-spacing:0.627733pt;}
.ls38{letter-spacing:0.633600pt;}
.ls2f{letter-spacing:0.686400pt;}
.ls7f{letter-spacing:0.692267pt;}
.ls32{letter-spacing:0.733333pt;}
.lsaa{letter-spacing:0.736000pt;}
.ls6d{letter-spacing:0.739200pt;}
.ls81{letter-spacing:0.745067pt;}
.ls1f{letter-spacing:0.792000pt;}
.ls88{letter-spacing:0.794667pt;}
.ls1b{letter-spacing:0.797867pt;}
.ls87{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.844800pt;}
.ls7d{letter-spacing:0.850667pt;}
.ls44{letter-spacing:0.903467pt;}
.ls68{letter-spacing:0.956267pt;}
.ls1d{letter-spacing:0.997333pt;}
.ls51{letter-spacing:1.061867pt;}
.ls36{letter-spacing:1.214400pt;}
.ls5b{letter-spacing:1.325867pt;}
.ls5d{letter-spacing:1.484267pt;}
.ls5c{letter-spacing:1.595733pt;}
.ws6a{word-spacing:-15.247467pt;}
.ws18{word-spacing:-14.954133pt;}
.ws9e{word-spacing:-14.948267pt;}
.ws8d{word-spacing:-14.719467pt;}
.ws84{word-spacing:-14.649067pt;}
.ws9b{word-spacing:-14.396800pt;}
.wsd6{word-spacing:-13.866667pt;}
.wsa3{word-spacing:-13.333333pt;}
.wsd8{word-spacing:-13.322667pt;}
.ws0{word-spacing:-12.914933pt;}
.wsa6{word-spacing:-12.682667pt;}
.ws1b{word-spacing:-12.656533pt;}
.ws1a{word-spacing:-12.631200pt;}
.ws72{word-spacing:-10.666667pt;}
.wsd7{word-spacing:-10.524000pt;}
.wsd5{word-spacing:-10.512000pt;}
.wsab{word-spacing:-10.424000pt;}
.wsac{word-spacing:-10.420000pt;}
.wsd3{word-spacing:-10.156000pt;}
.wsa8{word-spacing:-10.148000pt;}
.ws9f{word-spacing:-10.140000pt;}
.wsd4{word-spacing:-10.000000pt;}
.wsa7{word-spacing:-9.992000pt;}
.wsa0{word-spacing:-9.984000pt;}
.wsa4{word-spacing:-9.932000pt;}
.wsd2{word-spacing:-9.840000pt;}
.wsd0{word-spacing:-9.836000pt;}
.wsb1{word-spacing:-9.788000pt;}
.wsb0{word-spacing:-9.628000pt;}
.wsb2{word-spacing:-9.412000pt;}
.wsae{word-spacing:-9.308000pt;}
.wsaf{word-spacing:-9.300000pt;}
.wsad{word-spacing:-9.148000pt;}
.wsa5{word-spacing:-8.708000pt;}
.ws34{word-spacing:-1.920267pt;}
.ws71{word-spacing:-0.750933pt;}
.ws24{word-spacing:-0.745067pt;}
.ws91{word-spacing:-0.739200pt;}
.ws52{word-spacing:-0.733333pt;}
.ws87{word-spacing:-0.709867pt;}
.ws89{word-spacing:-0.698133pt;}
.ws3b{word-spacing:-0.692267pt;}
.ws41{word-spacing:-0.686400pt;}
.ws94{word-spacing:-0.645333pt;}
.ws44{word-spacing:-0.639467pt;}
.ws2{word-spacing:-0.638400pt;}
.ws55{word-spacing:-0.633600pt;}
.ws8e{word-spacing:-0.621867pt;}
.ws88{word-spacing:-0.592533pt;}
.wsb8{word-spacing:-0.592000pt;}
.ws14{word-spacing:-0.587733pt;}
.ws3a{word-spacing:-0.586667pt;}
.wsb7{word-spacing:-0.581333pt;}
.ws6d{word-spacing:-0.580800pt;}
.ws8b{word-spacing:-0.574933pt;}
.wsbe{word-spacing:-0.549333pt;}
.ws50{word-spacing:-0.539733pt;}
.ws12{word-spacing:-0.537067pt;}
.ws1f{word-spacing:-0.533867pt;}
.wsbd{word-spacing:-0.533333pt;}
.ws3{word-spacing:-0.532000pt;}
.ws4e{word-spacing:-0.528000pt;}
.wsda{word-spacing:-0.506667pt;}
.wsca{word-spacing:-0.496000pt;}
.ws78{word-spacing:-0.486933pt;}
.ws27{word-spacing:-0.481067pt;}
.wsc9{word-spacing:-0.480000pt;}
.ws5{word-spacing:-0.476267pt;}
.ws40{word-spacing:-0.475200pt;}
.wsc5{word-spacing:-0.474667pt;}
.wsd9{word-spacing:-0.453333pt;}
.ws6c{word-spacing:-0.434133pt;}
.ws49{word-spacing:-0.428267pt;}
.ws48{word-spacing:-0.422400pt;}
.wsd{word-spacing:-0.420533pt;}
.ws3c{word-spacing:-0.416533pt;}
.ws4c{word-spacing:-0.375467pt;}
.ws29{word-spacing:-0.369600pt;}
.ws8a{word-spacing:-0.363733pt;}
.ws4a{word-spacing:-0.322667pt;}
.ws1e{word-spacing:-0.316800pt;}
.wsc8{word-spacing:-0.314667pt;}
.ws7e{word-spacing:-0.310933pt;}
.ws54{word-spacing:-0.269867pt;}
.ws13{word-spacing:-0.268533pt;}
.ws31{word-spacing:-0.264000pt;}
.ws5e{word-spacing:-0.258133pt;}
.ws2a{word-spacing:-0.211200pt;}
.wsc{word-spacing:-0.207733pt;}
.ws51{word-spacing:-0.205333pt;}
.ws5b{word-spacing:-0.199467pt;}
.wsbf{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.158400pt;}
.wsc0{word-spacing:-0.154667pt;}
.ws2b{word-spacing:-0.152533pt;}
.ws5a{word-spacing:-0.146667pt;}
.ws53{word-spacing:-0.105600pt;}
.wscb{word-spacing:-0.085333pt;}
.ws83{word-spacing:-0.058667pt;}
.wscc{word-spacing:-0.053333pt;}
.ws2d{word-spacing:-0.052800pt;}
.ws5f{word-spacing:-0.046933pt;}
.wsbb{word-spacing:-0.037333pt;}
.wsb4{word-spacing:-0.016000pt;}
.ws82{word-spacing:-0.005867pt;}
.wscf{word-spacing:-0.005333pt;}
.wsf{word-spacing:-0.005067pt;}
.ws1{word-spacing:0.000000pt;}
.ws33{word-spacing:0.004267pt;}
.wsb9{word-spacing:0.005333pt;}
.ws26{word-spacing:0.005867pt;}
.wsb3{word-spacing:0.010667pt;}
.ws79{word-spacing:0.046933pt;}
.ws15{word-spacing:0.050667pt;}
.ws7b{word-spacing:0.052800pt;}
.wsc7{word-spacing:0.053333pt;}
.ws37{word-spacing:0.099733pt;}
.ws6f{word-spacing:0.105600pt;}
.ws7c{word-spacing:0.111467pt;}
.wsc6{word-spacing:0.112000pt;}
.ws8c{word-spacing:0.134933pt;}
.ws6b{word-spacing:0.158400pt;}
.ws11{word-spacing:0.162133pt;}
.ws46{word-spacing:0.164267pt;}
.wsc3{word-spacing:0.170667pt;}
.ws73{word-spacing:0.205333pt;}
.ws96{word-spacing:0.211200pt;}
.wsc4{word-spacing:0.218667pt;}
.ws3e{word-spacing:0.258133pt;}
.ws58{word-spacing:0.264000pt;}
.ws35{word-spacing:0.269867pt;}
.ws43{word-spacing:0.316800pt;}
.ws6e{word-spacing:0.322667pt;}
.ws97{word-spacing:0.328533pt;}
.ws7f{word-spacing:0.369600pt;}
.ws32{word-spacing:0.375467pt;}
.ws69{word-spacing:0.422400pt;}
.ws9d{word-spacing:0.428267pt;}
.ws2c{word-spacing:0.434133pt;}
.ws74{word-spacing:0.475200pt;}
.wsb5{word-spacing:0.480000pt;}
.ws21{word-spacing:0.481067pt;}
.wsb6{word-spacing:0.485333pt;}
.ws95{word-spacing:0.486933pt;}
.wsdb{word-spacing:0.517333pt;}
.ws59{word-spacing:0.528000pt;}
.wsba{word-spacing:0.533333pt;}
.ws57{word-spacing:0.533867pt;}
.ws45{word-spacing:0.539733pt;}
.ws99{word-spacing:0.580800pt;}
.ws4f{word-spacing:0.586667pt;}
.ws60{word-spacing:0.592533pt;}
.ws90{word-spacing:0.598400pt;}
.ws8f{word-spacing:0.604267pt;}
.ws56{word-spacing:0.633600pt;}
.ws7{word-spacing:0.638400pt;}
.ws20{word-spacing:0.639467pt;}
.ws28{word-spacing:0.686400pt;}
.ws2f{word-spacing:0.692267pt;}
.ws3f{word-spacing:0.698133pt;}
.ws9a{word-spacing:0.739200pt;}
.ws75{word-spacing:0.745067pt;}
.wscd{word-spacing:0.752000pt;}
.wsce{word-spacing:0.762667pt;}
.ws98{word-spacing:0.792000pt;}
.ws36{word-spacing:0.797867pt;}
.wsdd{word-spacing:0.800000pt;}
.ws39{word-spacing:0.803733pt;}
.ws66{word-spacing:0.850667pt;}
.wse{word-spacing:0.851200pt;}
.ws7a{word-spacing:0.856533pt;}
.ws86{word-spacing:0.862400pt;}
.wsc1{word-spacing:0.896000pt;}
.ws93{word-spacing:0.897600pt;}
.wsdc{word-spacing:0.901333pt;}
.ws64{word-spacing:0.903467pt;}
.wsc2{word-spacing:0.906667pt;}
.wsb{word-spacing:0.906933pt;}
.ws65{word-spacing:0.909333pt;}
.ws5c{word-spacing:0.956267pt;}
.ws81{word-spacing:0.962133pt;}
.ws16{word-spacing:0.962667pt;}
.ws9c{word-spacing:0.968000pt;}
.ws6{word-spacing:1.008267pt;}
.ws76{word-spacing:1.009067pt;}
.ws9{word-spacing:1.013333pt;}
.ws5d{word-spacing:1.014933pt;}
.ws1d{word-spacing:1.020800pt;}
.ws92{word-spacing:1.056000pt;}
.ws30{word-spacing:1.061867pt;}
.ws77{word-spacing:1.067733pt;}
.ws8{word-spacing:1.069067pt;}
.ws25{word-spacing:1.114667pt;}
.ws61{word-spacing:1.120533pt;}
.ws63{word-spacing:1.126400pt;}
.ws85{word-spacing:1.167467pt;}
.ws67{word-spacing:1.173333pt;}
.wsbc{word-spacing:1.178667pt;}
.ws4b{word-spacing:1.179200pt;}
.wsa{word-spacing:1.180533pt;}
.ws47{word-spacing:1.220267pt;}
.ws10{word-spacing:1.221067pt;}
.ws4{word-spacing:1.226133pt;}
.ws68{word-spacing:1.232000pt;}
.ws23{word-spacing:1.273067pt;}
.ws42{word-spacing:1.278933pt;}
.ws70{word-spacing:1.284800pt;}
.ws3d{word-spacing:1.331733pt;}
.ws62{word-spacing:1.337600pt;}
.ws1c{word-spacing:1.384533pt;}
.ws4d{word-spacing:1.390400pt;}
.ws80{word-spacing:1.431467pt;}
.ws38{word-spacing:1.437333pt;}
.ws2e{word-spacing:1.443200pt;}
.wsa9{word-spacing:2.756000pt;}
.wsaa{word-spacing:2.828000pt;}
.wsd1{word-spacing:2.853333pt;}
.wsa1{word-spacing:3.342667pt;}
.wsa2{word-spacing:3.361333pt;}
.ws17{word-spacing:3.413333pt;}
.ws19{word-spacing:31.786667pt;}
.ws7d{word-spacing:499.750400pt;}
._c{margin-left:-1236.531200pt;}
._10{margin-left:-9.704000pt;}
._d{margin-left:-7.644267pt;}
._2{margin-left:-6.606933pt;}
._5{margin-left:-4.868533pt;}
._4{margin-left:-3.120533pt;}
._1{margin-left:-1.510400pt;}
._3{width:0.917067pt;}
._f{width:2.678400pt;}
._a{width:8.571200pt;}
._8{width:12.821333pt;}
._9{width:16.108000pt;}
._0{width:42.419200pt;}
._7{width:271.257600pt;}
._b{width:442.177600pt;}
._e{width:479.035733pt;}
._6{width:1113.382400pt;}
.fs7{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1b4{bottom:12.388893pt;}
.y198{bottom:13.723560pt;}
.y118{bottom:13.727960pt;}
.y7c{bottom:14.052093pt;}
.yb1{bottom:14.055027pt;}
.y103{bottom:14.057960pt;}
.y131{bottom:14.068227pt;}
.y174{bottom:14.074093pt;}
.y14c{bottom:14.078493pt;}
.yd7{bottom:14.106227pt;}
.y48{bottom:16.288093pt;}
.y9d{bottom:21.722760pt;}
.y1d7{bottom:23.414760pt;}
.y25{bottom:24.854760pt;}
.y1b3{bottom:27.722893pt;}
.y197{bottom:29.057560pt;}
.y117{bottom:29.061960pt;}
.y7b{bottom:29.386093pt;}
.yb0{bottom:29.389027pt;}
.y102{bottom:29.391960pt;}
.y130{bottom:29.402227pt;}
.y173{bottom:29.408093pt;}
.y14b{bottom:29.412493pt;}
.yd6{bottom:29.440227pt;}
.y47{bottom:31.622093pt;}
.y9c{bottom:37.056760pt;}
.y1d6{bottom:37.414760pt;}
.y24{bottom:38.190227pt;}
.y1b2{bottom:43.056893pt;}
.y196{bottom:44.391560pt;}
.y116{bottom:44.395960pt;}
.y7a{bottom:44.720093pt;}
.yaf{bottom:44.723027pt;}
.y101{bottom:44.725960pt;}
.y12f{bottom:44.736227pt;}
.y172{bottom:44.742093pt;}
.y14a{bottom:44.746493pt;}
.yd5{bottom:44.774227pt;}
.y46{bottom:46.956093pt;}
.y1d5{bottom:51.414893pt;}
.y9b{bottom:52.390760pt;}
.y23{bottom:56.857093pt;}
.y1b1{bottom:58.390893pt;}
.y195{bottom:59.725560pt;}
.y115{bottom:59.729960pt;}
.y79{bottom:60.054093pt;}
.ybd{bottom:60.057027pt;}
.y12e{bottom:60.070227pt;}
.y171{bottom:60.076093pt;}
.y149{bottom:60.080493pt;}
.yd4{bottom:60.108227pt;}
.y45{bottom:62.290093pt;}
.y1d4{bottom:65.414893pt;}
.y9a{bottom:67.724760pt;}
.y100{bottom:67.726227pt;}
.y22{bottom:70.190027pt;}
.y1b0{bottom:73.724893pt;}
.y194{bottom:75.059560pt;}
.y114{bottom:75.063960pt;}
.y78{bottom:75.388093pt;}
.yae{bottom:75.389560pt;}
.ybc{bottom:75.391027pt;}
.y12d{bottom:75.404227pt;}
.y170{bottom:75.410093pt;}
.y148{bottom:75.414493pt;}
.yd3{bottom:75.442227pt;}
.y44{bottom:77.624093pt;}
.y1d3{bottom:79.414893pt;}
.y99{bottom:83.058760pt;}
.y21{bottom:83.522960pt;}
.y1af{bottom:89.058893pt;}
.y193{bottom:90.393560pt;}
.y113{bottom:90.397960pt;}
.y77{bottom:90.722093pt;}
.yad{bottom:90.723560pt;}
.ybb{bottom:90.725027pt;}
.y12c{bottom:90.738227pt;}
.y16f{bottom:90.744093pt;}
.yd2{bottom:90.776227pt;}
.y43{bottom:92.958093pt;}
.y1d2{bottom:93.414893pt;}
.y20{bottom:96.855893pt;}
.y98{bottom:98.392760pt;}
.y1ae{bottom:104.392893pt;}
.y192{bottom:105.727560pt;}
.y76{bottom:106.056093pt;}
.yac{bottom:106.057560pt;}
.yba{bottom:106.059027pt;}
.y12b{bottom:106.072227pt;}
.y16e{bottom:106.078093pt;}
.y147{bottom:106.081027pt;}
.yd1{bottom:106.110227pt;}
.y1d1{bottom:107.414893pt;}
.y42{bottom:108.292093pt;}
.y1f{bottom:110.188827pt;}
.y112{bottom:113.398227pt;}
.y97{bottom:113.726760pt;}
.y1ad{bottom:119.726893pt;}
.y191{bottom:121.061560pt;}
.y75{bottom:121.390093pt;}
.yab{bottom:121.391560pt;}
.yb9{bottom:121.393027pt;}
.y12a{bottom:121.406227pt;}
.y16d{bottom:121.412093pt;}
.y146{bottom:121.413560pt;}
.y1d0{bottom:121.414893pt;}
.yd0{bottom:121.444227pt;}
.y1e{bottom:123.521760pt;}
.y41{bottom:123.626093pt;}
.y111{bottom:128.732227pt;}
.y96{bottom:129.060760pt;}
.y1ac{bottom:135.060893pt;}
.y1cf{bottom:135.414893pt;}
.y190{bottom:136.395560pt;}
.y74{bottom:136.724093pt;}
.yaa{bottom:136.725560pt;}
.yb8{bottom:136.727027pt;}
.y153{bottom:136.738760pt;}
.y129{bottom:136.740227pt;}
.y145{bottom:136.746093pt;}
.ycf{bottom:136.778227pt;}
.y1d{bottom:136.854693pt;}
.y40{bottom:138.960093pt;}
.y110{bottom:144.066227pt;}
.y95{bottom:144.394760pt;}
.y16c{bottom:144.412360pt;}
.y1ce{bottom:149.414893pt;}
.y1c{bottom:150.187627pt;}
.y1ab{bottom:150.394893pt;}
.y18f{bottom:151.729560pt;}
.y73{bottom:152.058093pt;}
.ya9{bottom:152.059560pt;}
.yb7{bottom:152.061027pt;}
.y152{bottom:152.072760pt;}
.y128{bottom:152.074227pt;}
.y144{bottom:152.078627pt;}
.yce{bottom:152.112227pt;}
.y10f{bottom:159.400227pt;}
.y94{bottom:159.728760pt;}
.y3f{bottom:161.960360pt;}
.y1cd{bottom:163.414893pt;}
.y1aa{bottom:165.728893pt;}
.y18e{bottom:167.063560pt;}
.y72{bottom:167.392093pt;}
.ya8{bottom:167.393560pt;}
.yb6{bottom:167.395027pt;}
.y151{bottom:167.406760pt;}
.y127{bottom:167.408227pt;}
.y143{bottom:167.411160pt;}
.ycd{bottom:167.446227pt;}
.y10e{bottom:174.734227pt;}
.y93{bottom:175.062760pt;}
.y1b{bottom:176.854760pt;}
.y1cc{bottom:177.414893pt;}
.y18d{bottom:182.397560pt;}
.y71{bottom:182.726093pt;}
.ya7{bottom:182.727560pt;}
.yb5{bottom:182.729027pt;}
.y126{bottom:182.740760pt;}
.y142{bottom:182.743693pt;}
.y16b{bottom:182.745160pt;}
.ycc{bottom:182.780227pt;}
.y1a9{bottom:188.729160pt;}
.y10d{bottom:190.068227pt;}
.y92{bottom:190.396760pt;}
.y1cb{bottom:191.414893pt;}
.y70{bottom:198.060093pt;}
.ya6{bottom:198.061560pt;}
.yb4{bottom:198.063027pt;}
.y125{bottom:198.073293pt;}
.y150{bottom:198.074760pt;}
.y141{bottom:198.076227pt;}
.y16a{bottom:198.077693pt;}
.ycb{bottom:198.114227pt;}
.y3e{bottom:200.293160pt;}
.y1a8{bottom:204.063160pt;}
.y18c{bottom:205.397827pt;}
.y10c{bottom:205.402227pt;}
.y1ca{bottom:205.414893pt;}
.y91{bottom:205.730760pt;}
.y1a{bottom:208.856493pt;}
.y6f{bottom:213.394093pt;}
.ya5{bottom:213.395560pt;}
.yb3{bottom:213.397027pt;}
.y124{bottom:213.405827pt;}
.y140{bottom:213.408760pt;}
.y169{bottom:213.410227pt;}
.yca{bottom:213.448227pt;}
.y3d{bottom:215.627160pt;}
.y1a7{bottom:219.397160pt;}
.y1c9{bottom:219.414760pt;}
.y10b{bottom:220.736227pt;}
.y19{bottom:222.189427pt;}
.y6e{bottom:228.728093pt;}
.ya4{bottom:228.729560pt;}
.y90{bottom:228.731027pt;}
.y123{bottom:228.738360pt;}
.y13f{bottom:228.741293pt;}
.y14f{bottom:228.742760pt;}
.yc9{bottom:228.782227pt;}
.y3c{bottom:230.961160pt;}
.y1c8{bottom:233.414760pt;}
.y1a6{bottom:234.731160pt;}
.y10a{bottom:236.070227pt;}
.y18b{bottom:240.398360pt;}
.y18{bottom:240.856293pt;}
.y6d{bottom:244.062093pt;}
.ya3{bottom:244.063560pt;}
.y8f{bottom:244.065027pt;}
.y122{bottom:244.070893pt;}
.y13e{bottom:244.073827pt;}
.y168{bottom:244.075293pt;}
.y14e{bottom:244.076760pt;}
.yc8{bottom:244.116227pt;}
.y3b{bottom:246.295160pt;}
.y1c7{bottom:247.414760pt;}
.y1a5{bottom:250.065160pt;}
.y109{bottom:251.404227pt;}
.y17{bottom:254.189227pt;}
.y18a{bottom:255.732360pt;}
.y6c{bottom:259.396093pt;}
.ya2{bottom:259.397560pt;}
.y8e{bottom:259.399027pt;}
.y121{bottom:259.403427pt;}
.y13d{bottom:259.406360pt;}
.y167{bottom:259.407827pt;}
.y14d{bottom:259.410760pt;}
.yc7{bottom:259.450227pt;}
.y1c6{bottom:261.414627pt;}
.y3a{bottom:261.629160pt;}
.y1a4{bottom:265.399160pt;}
.y108{bottom:266.738227pt;}
.y16{bottom:267.522160pt;}
.y189{bottom:271.066360pt;}
.y6b{bottom:274.730093pt;}
.ya1{bottom:274.731560pt;}
.y8d{bottom:274.733027pt;}
.y120{bottom:274.735960pt;}
.y13c{bottom:274.738893pt;}
.y166{bottom:274.740360pt;}
.yc6{bottom:274.784227pt;}
.y1c5{bottom:275.414627pt;}
.y39{bottom:276.963160pt;}
.y1a3{bottom:280.733160pt;}
.y15{bottom:280.855093pt;}
.y107{bottom:282.072227pt;}
.y188{bottom:286.400360pt;}
.y1c4{bottom:289.414627pt;}
.y6a{bottom:290.064093pt;}
.ya0{bottom:290.065560pt;}
.y8c{bottom:290.067027pt;}
.y11f{bottom:290.068493pt;}
.y13b{bottom:290.071427pt;}
.y165{bottom:290.072893pt;}
.yc5{bottom:290.116760pt;}
.y38{bottom:292.297160pt;}
.y14{bottom:294.188027pt;}
.y1a2{bottom:296.067160pt;}
.y106{bottom:297.406227pt;}
.y187{bottom:301.734360pt;}
.y1c3{bottom:303.414627pt;}
.y15d{bottom:305.068093pt;}
.y69{bottom:305.398093pt;}
.y9f{bottom:305.399560pt;}
.y8b{bottom:305.401027pt;}
.y13a{bottom:305.403960pt;}
.y164{bottom:305.405427pt;}
.yc4{bottom:305.450760pt;}
.y13{bottom:307.520960pt;}
.y37{bottom:307.631160pt;}
.y1a1{bottom:311.401160pt;}
.y105{bottom:312.740227pt;}
.y186{bottom:317.068360pt;}
.y1c2{bottom:317.414627pt;}
.y68{bottom:320.732093pt;}
.y9e{bottom:320.733560pt;}
.y8a{bottom:320.735027pt;}
.y139{bottom:320.736493pt;}
.y163{bottom:320.737960pt;}
.yc3{bottom:320.784760pt;}
.y36{bottom:322.965160pt;}
.y1a0{bottom:326.735160pt;}
.y104{bottom:328.074227pt;}
.y1c1{bottom:331.414627pt;}
.y185{bottom:332.402360pt;}
.y12{bottom:334.188093pt;}
.y67{bottom:336.066093pt;}
.yff{bottom:336.067560pt;}
.y89{bottom:336.069027pt;}
.y162{bottom:336.070493pt;}
.yc2{bottom:336.118760pt;}
.y35{bottom:338.299160pt;}
.y19f{bottom:342.069160pt;}
.y1c0{bottom:345.414627pt;}
.y184{bottom:347.736360pt;}
.y15c{bottom:350.865160pt;}
.y66{bottom:351.400093pt;}
.yfe{bottom:351.401560pt;}
.y88{bottom:351.403027pt;}
.yc1{bottom:351.452760pt;}
.y34{bottom:353.633160pt;}
.y19e{bottom:357.403160pt;}
.y161{bottom:359.070760pt;}
.y1bf{bottom:359.414627pt;}
.y15b{bottom:361.531827pt;}
.y11e{bottom:361.894760pt;}
.y183{bottom:363.070360pt;}
.y11{bottom:366.190627pt;}
.y65{bottom:366.734093pt;}
.yfd{bottom:366.735560pt;}
.y87{bottom:366.737027pt;}
.yc0{bottom:366.786760pt;}
.y33{bottom:368.967160pt;}
.y19d{bottom:372.737160pt;}
.y1be{bottom:373.414493pt;}
.y182{bottom:378.404360pt;}
.y10{bottom:379.523560pt;}
.y64{bottom:382.068093pt;}
.yfc{bottom:382.069560pt;}
.y86{bottom:382.071027pt;}
.ybf{bottom:382.120760pt;}
.y32{bottom:384.301160pt;}
.y1bd{bottom:387.414493pt;}
.y19c{bottom:388.071160pt;}
.y181{bottom:393.738360pt;}
.y15a{bottom:394.111027pt;}
.y63{bottom:397.402093pt;}
.yfb{bottom:397.403560pt;}
.y85{bottom:397.405027pt;}
.ybe{bottom:397.454760pt;}
.yf{bottom:398.190427pt;}
.y31{bottom:399.635160pt;}
.y1bc{bottom:401.414493pt;}
.y19b{bottom:403.405160pt;}
.y159{bottom:404.777693pt;}
.y11d{bottom:405.449027pt;}
.y180{bottom:409.072360pt;}
.ye{bottom:411.523360pt;}
.y62{bottom:412.736093pt;}
.yfa{bottom:412.737560pt;}
.y84{bottom:412.739027pt;}
.y30{bottom:414.969160pt;}
.y1bb{bottom:415.414627pt;}
.y158{bottom:415.444360pt;}
.y19a{bottom:418.739160pt;}
.y17f{bottom:424.406360pt;}
.yd{bottom:424.856293pt;}
.ye9{bottom:427.774760pt;}
.y61{bottom:428.070093pt;}
.yf9{bottom:428.071560pt;}
.y83{bottom:428.073027pt;}
.y1ba{bottom:429.414760pt;}
.y2f{bottom:430.303160pt;}
.y1b5{bottom:435.739293pt;}
.yc{bottom:438.189227pt;}
.y17e{bottom:439.740360pt;}
.y199{bottom:441.739427pt;}
.y60{bottom:443.404093pt;}
.yf8{bottom:443.405560pt;}
.y82{bottom:443.407027pt;}
.y2e{bottom:445.637160pt;}
.y1b9{bottom:451.073293pt;}
.yb{bottom:451.522160pt;}
.ye5{bottom:453.739827pt;}
.y17d{bottom:455.074360pt;}
.y157{bottom:455.977693pt;}
.y5f{bottom:458.738093pt;}
.yf7{bottom:458.739560pt;}
.y81{bottom:458.741027pt;}
.y2d{bottom:460.971160pt;}
.ya{bottom:464.855093pt;}
.y156{bottom:466.644360pt;}
.y11b{bottom:469.331160pt;}
.y11a{bottom:470.354227pt;}
.y17c{bottom:470.408360pt;}
.y5e{bottom:474.072093pt;}
.yf6{bottom:474.073560pt;}
.y80{bottom:474.075027pt;}
.y11c{bottom:475.687560pt;}
.y2c{bottom:476.305160pt;}
.y9{bottom:478.188027pt;}
.y119{bottom:481.020893pt;}
.y17b{bottom:485.742360pt;}
.y5d{bottom:489.406093pt;}
.yf5{bottom:489.407560pt;}
.y7f{bottom:489.409027pt;}
.y8{bottom:491.520960pt;}
.y2b{bottom:491.639160pt;}
.y17a{bottom:501.076360pt;}
.y5c{bottom:504.740093pt;}
.yf4{bottom:504.741560pt;}
.y7e{bottom:504.743027pt;}
.y155{bottom:505.044360pt;}
.y2a{bottom:506.973160pt;}
.yb2{bottom:512.409293pt;}
.y179{bottom:516.410360pt;}
.y7{bottom:518.188093pt;}
.y5b{bottom:520.074093pt;}
.yf3{bottom:520.075560pt;}
.y138{bottom:520.077027pt;}
.y29{bottom:522.307160pt;}
.y7d{bottom:527.743293pt;}
.ye4{bottom:534.463027pt;}
.y5a{bottom:535.408093pt;}
.yf2{bottom:535.409560pt;}
.y137{bottom:535.411027pt;}
.y28{bottom:537.641160pt;}
.y178{bottom:539.410627pt;}
.y154{bottom:543.444360pt;}
.ye3{bottom:545.129693pt;}
.y59{bottom:550.742093pt;}
.yf1{bottom:550.743560pt;}
.y136{bottom:550.745027pt;}
.ye2{bottom:555.796360pt;}
.y27{bottom:560.641427pt;}
.y58{bottom:566.076093pt;}
.yf0{bottom:566.077560pt;}
.y135{bottom:566.079027pt;}
.ye1{bottom:566.463027pt;}
.y177{bottom:573.743827pt;}
.y1df{bottom:576.748093pt;}
.ye0{bottom:577.129693pt;}
.ydc{bottom:578.328627pt;}
.y57{bottom:581.410093pt;}
.yef{bottom:581.411560pt;}
.y134{bottom:581.413027pt;}
.ye8{bottom:583.793160pt;}
.y6{bottom:586.708227pt;}
.ydb{bottom:588.995293pt;}
.y176{bottom:589.077827pt;}
.y1de{bottom:590.748093pt;}
.ye7{bottom:594.459827pt;}
.y56{bottom:596.744093pt;}
.yee{bottom:596.745560pt;}
.y1b8{bottom:596.747027pt;}
.yda{bottom:599.661960pt;}
.y5{bottom:602.708093pt;}
.y175{bottom:604.411827pt;}
.y133{bottom:604.413293pt;}
.y1dd{bottom:604.747960pt;}
.ye6{bottom:605.126493pt;}
.yd9{bottom:610.328627pt;}
.y4f{bottom:611.280827pt;}
.y55{bottom:612.078093pt;}
.y160{bottom:612.079560pt;}
.y1b7{bottom:612.081027pt;}
.y4d{bottom:616.614760pt;}
.y1dc{bottom:618.747960pt;}
.yed{bottom:619.745827pt;}
.y132{bottom:619.747293pt;}
.y54{bottom:627.412093pt;}
.y15f{bottom:627.413560pt;}
.y4e{bottom:629.947693pt;}
.y1db{bottom:632.748093pt;}
.yec{bottom:635.079827pt;}
.y1b6{bottom:635.081293pt;}
.y4c{bottom:635.281627pt;}
.y4{bottom:642.708093pt;}
.y53{bottom:642.746093pt;}
.y15e{bottom:642.747560pt;}
.y1da{bottom:646.748093pt;}
.y4b{bottom:648.614560pt;}
.yeb{bottom:650.413827pt;}
.y52{bottom:658.080093pt;}
.y1d9{bottom:660.747960pt;}
.ydf{bottom:662.193160pt;}
.y3{bottom:664.041427pt;}
.yea{bottom:665.747827pt;}
.y4a{bottom:667.281427pt;}
.yde{bottom:672.859827pt;}
.y51{bottom:673.414093pt;}
.y1d8{bottom:674.747960pt;}
.ydd{bottom:683.526493pt;}
.y2{bottom:685.374760pt;}
.y50{bottom:688.748093pt;}
.y49{bottom:690.334760pt;}
.yd8{bottom:691.526493pt;}
.y1{bottom:730.708227pt;}
.y26{bottom:903.294760pt;}
.h8{height:30.083333pt;}
.hb{height:35.882667pt;}
.h2{height:36.096000pt;}
.h5{height:40.368000pt;}
.h7{height:42.610667pt;}
.h6{height:42.864000pt;}
.hf{height:44.853333pt;}
.h10{height:44.853867pt;}
.hc{height:45.120000pt;}
.ha{height:49.338667pt;}
.h9{height:49.632000pt;}
.h4{height:53.824000pt;}
.h3{height:71.765333pt;}
.hd{height:74.457067pt;}
.he{height:78.549333pt;}
.h1{height:756.000000pt;}
.h0{height:756.314453pt;}
.w0{width:477.006827pt;}
.w1{width:477.333333pt;}
.x3{left:-97.153733pt;}
.x0{left:0.000000pt;}
.x2{left:24.606267pt;}
.x18{left:34.069467pt;}
.x7{left:38.220067pt;}
.xa{left:42.219600pt;}
.x4{left:43.885733pt;}
.x11{left:54.385867pt;}
.xe{left:128.323867pt;}
.xf{left:142.236400pt;}
.x12{left:145.987067pt;}
.xc{left:151.415333pt;}
.x6{left:163.806267pt;}
.x8{left:172.740067pt;}
.x13{left:183.827333pt;}
.x14{left:186.819333pt;}
.xd{left:209.410000pt;}
.x16{left:216.244400pt;}
.x5{left:218.846267pt;}
.x15{left:219.994800pt;}
.x17{left:224.062000pt;}
.x9{left:251.872533pt;}
.x10{left:301.572267pt;}
.x1{left:350.486267pt;}
.xb{left:361.007867pt;}
}




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