
    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_df55dfcf0fbed17cd4521dba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5353c2ec018da87d1f0093dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3303c61add4a001c20702882.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694000;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_6dc49aee721eed3d1430c7ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_eb4239b8b11e8d210a363766.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_1e1689fd48b289aa5a3b3f11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_014f0c2fbcfe508e45217ded.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c86d457c715836399a26f198.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_10d5c59006b7bf14c031d36c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_403e8c9f97da779b35668c67.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9da8baae43ba713af7019a63.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.022000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b154c771e8274c0244efcd11.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b7a2d1d502d325f02b5e6cfd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1fef41ef99546f02c9a73f31.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_16e9c189d5ec3c3c4f9985b0.woff2')format("woff");}.fff{font-family:fff;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9b88dac3836e0121484b2de7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.678000;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:ff11;src:url('chunks/assets/font_73f242a5434386b28934d9e2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.653000;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);}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-8.970000px;}
.va{vertical-align:-5.976000px;}
.v3{vertical-align:-2.988000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.814000px;}
.v5{vertical-align:14.838000px;}
.v7{vertical-align:16.926000px;}
.v1{vertical-align:21.690000px;}
.vb{vertical-align:24.678000px;}
.v6{vertical-align:36.528000px;}
.v9{vertical-align:56.784000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.002400px;}
.ls44{letter-spacing:0.002446px;}
.ls8{letter-spacing:0.002800px;}
.ls2b{letter-spacing:0.003031px;}
.ls39{letter-spacing:0.003269px;}
.ls2f{letter-spacing:0.003413px;}
.ls21{letter-spacing:0.004200px;}
.ls1b{letter-spacing:0.108227px;}
.lsf{letter-spacing:1.661781px;}
.ls30{letter-spacing:2.141039px;}
.ls17{letter-spacing:2.147039px;}
.ls13{letter-spacing:2.983140px;}
.ls0{letter-spacing:2.984525px;}
.ls2e{letter-spacing:2.987870px;}
.ls25{letter-spacing:2.988615px;}
.ls1f{letter-spacing:2.988775px;}
.ls12{letter-spacing:2.989140px;}
.ls3c{letter-spacing:2.989409px;}
.ls18{letter-spacing:2.990525px;}
.ls5{letter-spacing:3.443602px;}
.ls19{letter-spacing:4.000868px;}
.lsc{letter-spacing:4.276379px;}
.ls4c{letter-spacing:5.132525px;}
.ls2d{letter-spacing:5.408908px;}
.ls27{letter-spacing:13.724685px;}
.ls26{letter-spacing:13.726200px;}
.ls35{letter-spacing:16.598727px;}
.lse{letter-spacing:16.601607px;}
.ls11{letter-spacing:16.602538px;}
.ls4b{letter-spacing:16.606200px;}
.ls24{letter-spacing:16.608538px;}
.ls1e{letter-spacing:16.644538px;}
.ls36{letter-spacing:18.263781px;}
.ls16{letter-spacing:18.452338px;}
.ls1a{letter-spacing:18.454200px;}
.lsd{letter-spacing:19.591140px;}
.ls3d{letter-spacing:19.592525px;}
.ls10{letter-spacing:19.597140px;}
.ls1d{letter-spacing:19.627140px;}
.ls4a{letter-spacing:19.736338px;}
.ls22{letter-spacing:19.922338px;}
.ls20{letter-spacing:19.948200px;}
.ls23{letter-spacing:20.045602px;}
.ls2c{letter-spacing:20.792338px;}
.ls3b{letter-spacing:20.988538px;}
.ls38{letter-spacing:20.994538px;}
.lsa{letter-spacing:21.005607px;}
.ls7{letter-spacing:21.008727px;}
.ls15{letter-spacing:21.439140px;}
.ls34{letter-spacing:21.529140px;}
.ls42{letter-spacing:21.734525px;}
.ls41{letter-spacing:21.740525px;}
.ls33{letter-spacing:21.968408px;}
.ls4e{letter-spacing:22.064525px;}
.ls4f{letter-spacing:22.070525px;}
.ls49{letter-spacing:22.182538px;}
.ls14{letter-spacing:22.495140px;}
.ls51{letter-spacing:22.640525px;}
.ls1c{letter-spacing:22.933140px;}
.ls2a{letter-spacing:23.785140px;}
.ls50{letter-spacing:23.926379px;}
.ls32{letter-spacing:23.948908px;}
.ls37{letter-spacing:23.984525px;}
.ls9{letter-spacing:23.995140px;}
.ls4{letter-spacing:24.012300px;}
.ls29{letter-spacing:24.212408px;}
.lsb{letter-spacing:24.227781px;}
.ls48{letter-spacing:25.166525px;}
.ls3a{letter-spacing:26.132525px;}
.ls4d{letter-spacing:26.716379px;}
.ls28{letter-spacing:29.570338px;}
.ls43{letter-spacing:29.883030px;}
.ls3{letter-spacing:29.889030px;}
.ls1{letter-spacing:30.636532px;}
.ls46{letter-spacing:32.490538px;}
.ls3f{letter-spacing:33.426538px;}
.ls45{letter-spacing:35.474525px;}
.ls47{letter-spacing:35.480525px;}
.ls3e{letter-spacing:36.410525px;}
.ls40{letter-spacing:38.558525px;}
.ls31{letter-spacing:768.974908px;}
.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;}
}
.wsa9{word-spacing:-59.775600px;}
.ws9c{word-spacing:-38.937826px;}
.ws9a{word-spacing:-30.651144px;}
.ws99{word-spacing:-30.620334px;}
.wsbc{word-spacing:-29.015076px;}
.wsbd{word-spacing:-28.955301px;}
.wsde{word-spacing:-18.132396px;}
.wsb5{word-spacing:-17.426924px;}
.ws6b{word-spacing:-16.605662px;}
.ws12{word-spacing:-15.359443px;}
.wsce{word-spacing:-11.794190px;}
.wsb0{word-spacing:-7.557514px;}
.wsd7{word-spacing:-6.623136px;}
.wsb3{word-spacing:-6.366313px;}
.ws70{word-spacing:-3.610446px;}
.ws75{word-spacing:-3.335478px;}
.ws5f{word-spacing:-3.215927px;}
.ws71{word-spacing:-3.156152px;}
.wscb{word-spacing:-2.917049px;}
.wsc9{word-spacing:-2.883781px;}
.wsca{word-spacing:-2.857274px;}
.wsb9{word-spacing:-2.797498px;}
.wse9{word-spacing:-2.677947px;}
.wsf3{word-spacing:-2.609222px;}
.ws2f{word-spacing:-2.438844px;}
.wsf2{word-spacing:-2.394029px;}
.wsdf{word-spacing:-2.259518px;}
.wse0{word-spacing:-2.199742px;}
.wsb4{word-spacing:-1.841088px;}
.wsa0{word-spacing:-1.757403px;}
.wsa3{word-spacing:-1.601986px;}
.wsa1{word-spacing:-1.542210px;}
.ws103{word-spacing:-1.533254px;}
.ws5a{word-spacing:-1.482435px;}
.ws28{word-spacing:-1.362884px;}
.ws65{word-spacing:-1.303108px;}
.wsa5{word-spacing:-1.243332px;}
.wsfa{word-spacing:-1.210464px;}
.wsa4{word-spacing:-1.183557px;}
.wsf5{word-spacing:-1.156666px;}
.wse5{word-spacing:-1.123781px;}
.wsf9{word-spacing:-1.102867px;}
.wsd2{word-spacing:-1.004230px;}
.wsd1{word-spacing:-0.705352px;}
.ws82{word-spacing:-0.681442px;}
.ws27{word-spacing:-0.645576px;}
.wsac{word-spacing:-0.585801px;}
.ws44{word-spacing:-0.466250px;}
.wsea{word-spacing:-0.406474px;}
.ws6d{word-spacing:-0.346698px;}
.ws79{word-spacing:-0.286923px;}
.ws5e{word-spacing:-0.227147px;}
.ws107{word-spacing:-0.134496px;}
.ws7a{word-spacing:-0.107596px;}
.ws1{word-spacing:-0.086077px;}
.wsec{word-spacing:-0.071731px;}
.ws4{word-spacing:-0.053798px;}
.wscf{word-spacing:-0.041843px;}
.wsb1{word-spacing:-0.033440px;}
.ws20{word-spacing:0.000000px;}
.ws16{word-spacing:0.011955px;}
.wsed{word-spacing:0.071731px;}
.ws58{word-spacing:0.131506px;}
.wsba{word-spacing:0.251058px;}
.ws9f{word-spacing:0.310833px;}
.ws10b{word-spacing:0.349690px;}
.wsa8{word-spacing:0.490160px;}
.wseb{word-spacing:0.609711px;}
.ws4d{word-spacing:0.729262px;}
.wsd{word-spacing:0.833875px;}
.ws2b{word-spacing:0.848814px;}
.wsee{word-spacing:0.887674px;}
.ws7b{word-spacing:0.908589px;}
.ws92{word-spacing:0.965315px;}
.ws6c{word-spacing:0.968365px;}
.wsdd{word-spacing:1.028140px;}
.ws31{word-spacing:1.207467px;}
.ws76{word-spacing:1.248053px;}
.ws30{word-spacing:1.267243px;}
.wsd8{word-spacing:1.312883px;}
.wsd9{word-spacing:1.318883px;}
.ws4b{word-spacing:1.327018px;}
.ws8c{word-spacing:1.430805px;}
.ws86{word-spacing:1.446570px;}
.ws8f{word-spacing:1.478985px;}
.wsa7{word-spacing:1.506345px;}
.ws64{word-spacing:1.566121px;}
.wse7{word-spacing:1.625896px;}
.wsaf{word-spacing:1.685672px;}
.ws104{word-spacing:1.694650px;}
.ws24{word-spacing:1.745448px;}
.ws6e{word-spacing:1.805223px;}
.wsc1{word-spacing:1.830492px;}
.wsc0{word-spacing:1.845115px;}
.wsc3{word-spacing:1.864999px;}
.ws106{word-spacing:1.909843px;}
.ws6f{word-spacing:1.924774px;}
.wsd0{word-spacing:1.938421px;}
.ws83{word-spacing:1.984550px;}
.wsa2{word-spacing:2.104101px;}
.ws63{word-spacing:2.163877px;}
.ws66{word-spacing:2.223652px;}
.wse8{word-spacing:2.283428px;}
.ws93{word-spacing:2.343204px;}
.wse3{word-spacing:2.402979px;}
.ws3a{word-spacing:2.462755px;}
.wse1{word-spacing:2.475892px;}
.ws2c{word-spacing:2.642082px;}
.ws1b{word-spacing:2.761633px;}
.ws68{word-spacing:2.881184px;}
.wsf6{word-spacing:3.039610px;}
.wse2{word-spacing:3.045807px;}
.ws90{word-spacing:3.060511px;}
.wsf1{word-spacing:3.068072px;}
.ws3{word-spacing:3.093408px;}
.wsdc{word-spacing:3.119434px;}
.ws8e{word-spacing:3.120286px;}
.ws22{word-spacing:3.239838px;}
.ws108{word-spacing:3.254803px;}
.ws2{word-spacing:3.299613px;}
.wsc5{word-spacing:3.325326px;}
.wsc6{word-spacing:3.325499px;}
.wsc8{word-spacing:3.341753px;}
.ws41{word-spacing:3.359389px;}
.ws111{word-spacing:3.469997px;}
.ws49{word-spacing:3.538716px;}
.ws96{word-spacing:3.598491px;}
.ws2e{word-spacing:3.718042px;}
.ws74{word-spacing:3.777818px;}
.ws61{word-spacing:3.801728px;}
.ws81{word-spacing:3.837594px;}
.ws43{word-spacing:3.861504px;}
.ws94{word-spacing:3.897369px;}
.ws39{word-spacing:3.957145px;}
.ws1c{word-spacing:4.016920px;}
.ws23{word-spacing:4.076696px;}
.ws57{word-spacing:4.196247px;}
.ws55{word-spacing:4.234800px;}
.wsae{word-spacing:4.315798px;}
.wsbb{word-spacing:4.375574px;}
.wse4{word-spacing:4.435350px;}
.wsf0{word-spacing:4.545965px;}
.ws9{word-spacing:4.599763px;}
.ws91{word-spacing:4.614676px;}
.ws80{word-spacing:4.674452px;}
.wsc2{word-spacing:4.746183px;}
.ws21{word-spacing:4.794003px;}
.ws45{word-spacing:4.853779px;}
.ws3d{word-spacing:4.913554px;}
.ws10a{word-spacing:4.922554px;}
.ws17{word-spacing:4.973330px;}
.wsfb{word-spacing:4.976352px;}
.ws8d{word-spacing:5.092881px;}
.ws1e{word-spacing:5.152657px;}
.ws60{word-spacing:5.272208px;}
.ws4e{word-spacing:5.331984px;}
.ws36{word-spacing:5.391759px;}
.ws19{word-spacing:5.451535px;}
.wse{word-spacing:5.460538px;}
.ws33{word-spacing:5.571086px;}
.ws4a{word-spacing:5.630862px;}
.wsfd{word-spacing:5.675731px;}
.ws2a{word-spacing:5.690637px;}
.wsbe{word-spacing:5.702592px;}
.wsd4{word-spacing:5.737963px;}
.ws25{word-spacing:5.810188px;}
.ws6a{word-spacing:5.869964px;}
.ws29{word-spacing:5.929740px;}
.ws62{word-spacing:5.989515px;}
.wsaa{word-spacing:6.049291px;}
.ws48{word-spacing:6.109066px;}
.wsd6{word-spacing:6.121021px;}
.ws78{word-spacing:6.168842px;}
.ws59{word-spacing:6.228618px;}
.wsb8{word-spacing:6.288393px;}
.ws42{word-spacing:6.527496px;}
.wsd3{word-spacing:6.587271px;}
.wsda{word-spacing:6.647047px;}
.ws67{word-spacing:6.706822px;}
.ws84{word-spacing:6.826374px;}
.wsa{word-spacing:6.859296px;}
.ws85{word-spacing:6.886149px;}
.wsad{word-spacing:6.945925px;}
.ws5b{word-spacing:7.065476px;}
.ws2d{word-spacing:7.125252px;}
.wsf{word-spacing:7.182086px;}
.ws51{word-spacing:7.233591px;}
.ws50{word-spacing:7.424130px;}
.ws9b{word-spacing:7.543681px;}
.ws1f{word-spacing:7.603456px;}
.wsbf{word-spacing:7.658095px;}
.ws77{word-spacing:7.663232px;}
.ws3e{word-spacing:7.723008px;}
.ws95{word-spacing:7.782783px;}
.ws97{word-spacing:7.801711px;}
.ws38{word-spacing:7.842559px;}
.wsfe{word-spacing:7.881466px;}
.ws3f{word-spacing:7.902334px;}
.ws11{word-spacing:7.989062px;}
.ws7e{word-spacing:8.021886px;}
.ws102{word-spacing:8.096659px;}
.ws3b{word-spacing:8.201212px;}
.ws8{word-spacing:8.419450px;}
.ws3c{word-spacing:8.440315px;}
.wsab{word-spacing:8.500090px;}
.wsf4{word-spacing:8.527046px;}
.ws4c{word-spacing:8.559866px;}
.ws89{word-spacing:8.679417px;}
.wsb{word-spacing:8.688442px;}
.ws7c{word-spacing:8.788790px;}
.ws1a{word-spacing:8.858744px;}
.ws26{word-spacing:8.918520px;}
.ws105{word-spacing:8.957434px;}
.ws88{word-spacing:9.157622px;}
.ws112{word-spacing:9.172627px;}
.ws15{word-spacing:9.217398px;}
.ws109{word-spacing:9.387821px;}
.ws32{word-spacing:9.396724px;}
.ws1d{word-spacing:9.456500px;}
.ws34{word-spacing:9.516276px;}
.wsc4{word-spacing:9.568004px;}
.wsc7{word-spacing:9.573477px;}
.ws69{word-spacing:9.576051px;}
.ws14{word-spacing:9.695602px;}
.ws110{word-spacing:9.818208px;}
.ws4f{word-spacing:9.886884px;}
.wsfc{word-spacing:9.979603px;}
.wsc{word-spacing:10.140998px;}
.ws46{word-spacing:10.173807px;}
.wse6{word-spacing:10.233583px;}
.ws18{word-spacing:10.293358px;}
.ws7{word-spacing:10.356192px;}
.ws56{word-spacing:10.461477px;}
.wsa6{word-spacing:10.472685px;}
.ws6{word-spacing:10.571386px;}
.ws72{word-spacing:10.711788px;}
.ws9d{word-spacing:10.795473px;}
.wsdb{word-spacing:10.950890px;}
.ws5d{word-spacing:11.130217px;}
.ws7d{word-spacing:11.249768px;}
.ws52{word-spacing:11.464800px;}
.ws10f{word-spacing:11.485958px;}
.ws54{word-spacing:11.488870px;}
.ws37{word-spacing:11.668197px;}
.ws98{word-spacing:11.907300px;}
.ws87{word-spacing:11.967075px;}
.wsb6{word-spacing:12.265953px;}
.ws9e{word-spacing:12.385504px;}
.ws5c{word-spacing:12.564831px;}
.ws47{word-spacing:12.744158px;}
.ws40{word-spacing:12.863709px;}
.wscc{word-spacing:12.942824px;}
.wscd{word-spacing:12.983260px;}
.wsb7{word-spacing:13.102812px;}
.ws73{word-spacing:13.222363px;}
.ws35{word-spacing:13.282138px;}
.wsd5{word-spacing:13.401690px;}
.ws7f{word-spacing:13.999446px;}
.ws8b{word-spacing:14.537426px;}
.ws10e{word-spacing:14.713862px;}
.ws101{word-spacing:14.875258px;}
.ws10d{word-spacing:15.897427px;}
.ws53{word-spacing:17.692004px;}
.ws10c{word-spacing:18.910138px;}
.ws8a{word-spacing:26.827469px;}
.ws10{word-spacing:27.592038px;}
.ws5{word-spacing:29.830984px;}
.ws0{word-spacing:32.192873px;}
.wsf7{word-spacing:51.189178px;}
.wsff{word-spacing:56.838010px;}
.wsef{word-spacing:77.496595px;}
.ws13{word-spacing:80.625869px;}
.ws100{word-spacing:169.545658px;}
.wsf8{word-spacing:201.914807px;}
.wsb2{word-spacing:837.105385px;}
._2{margin-left:-29.887800px;}
._4{margin-left:-28.273859px;}
._1d{margin-left:-25.715689px;}
._1b{margin-left:-6.742733px;}
._8{margin-left:-5.140702px;}
._6{margin-left:-3.966698px;}
._1{margin-left:-2.668393px;}
._3{margin-left:-1.613941px;}
._5{width:1.398748px;}
._0{width:2.668393px;}
._19{width:4.179523px;}
._18{width:9.982525px;}
._10{width:13.824572px;}
._13{width:15.204511px;}
._9{width:16.297230px;}
._1c{width:17.420895px;}
._f{width:18.867581px;}
._7{width:20.959727px;}
._a{width:22.633444px;}
._d{width:23.769180px;}
._b{width:25.263570px;}
._11{width:26.339531px;}
._e{width:29.401891px;}
._14{width:31.449670px;}
._15{width:33.321309px;}
._17{width:34.922402px;}
._16{width:40.293580px;}
._1a{width:59.775600px;}
._c{width:68.741940px;}
._12{width:80.697600px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:28.110960px;}
.fs9{font-size:28.169525px;}
.fsb{font-size:29.887800px;}
.fs6{font-size:33.440330px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:70.335965px;}
.fs7{font-size:70.394529px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ye8{bottom:14.143327px;}
.ye7{bottom:22.591256px;}
.ye6{bottom:26.163690px;}
.ye5{bottom:34.611619px;}
.ye4{bottom:44.289403px;}
.ye3{bottom:105.855334px;}
.ye2{bottom:115.711739px;}
.ye0{bottom:156.086105px;}
.ydc{bottom:182.691958px;}
.yde{bottom:183.014063px;}
.ydb{bottom:192.542507px;}
.ydd{bottom:192.870468px;}
.ye1{bottom:221.180547px;}
.yfc{bottom:262.725000px;}
.yfb{bottom:263.247000px;}
.y25{bottom:266.956500px;}
.yda{bottom:282.749406px;}
.y14b{bottom:283.395000px;}
.y24{bottom:284.889000px;}
.yd9{bottom:292.605811px;}
.y14a{bottom:299.574000px;}
.y17b{bottom:299.833500px;}
.y4d{bottom:302.821500px;}
.y23{bottom:302.823000px;}
.y17a{bottom:315.190500px;}
.y149{bottom:315.753000px;}
.yb7{bottom:316.974000px;}
.ydf{bottom:320.072562px;}
.y22{bottom:320.755500px;}
.y179{bottom:331.627500px;}
.y148{bottom:332.191500px;}
.yb6{bottom:334.906500px;}
.y12a{bottom:334.978500px;}
.y72{bottom:338.688000px;}
.y21{bottom:339.007500px;}
.y4c{bottom:344.451000px;}
.y178{bottom:348.066000px;}
.yfa{bottom:348.301500px;}
.y147{bottom:348.630000px;}
.yb5{bottom:352.839000px;}
.y71{bottom:356.620500px;}
.y20{bottom:356.941500px;}
.y129{bottom:356.976000px;}
.y4b{bottom:362.383500px;}
.y177{bottom:364.504500px;}
.y146{bottom:364.807500px;}
.yb4{bottom:370.773000px;}
.y70{bottom:374.553000px;}
.y1f{bottom:374.874000px;}
.y128{bottom:374.908500px;}
.y4a{bottom:380.316000px;}
.y176{bottom:380.943000px;}
.y145{bottom:381.246000px;}
.yb3{bottom:388.705500px;}
.y127{bottom:389.131500px;}
.yf9{bottom:390.792000px;}
.y6f{bottom:392.485500px;}
.y1e{bottom:392.806500px;}
.y126{bottom:392.841000px;}
.yd7{bottom:393.232500px;}
.y175{bottom:397.381500px;}
.y49{bottom:398.248500px;}
.yb2{bottom:406.479000px;}
.yf8{bottom:408.724500px;}
.y6e{bottom:410.418000px;}
.y1d{bottom:410.739000px;}
.y125{bottom:410.773500px;}
.y174{bottom:412.738500px;}
.y144{bottom:414.321000px;}
.y48{bottom:416.181000px;}
.yb1{bottom:424.411500px;}
.y124{bottom:424.998000px;}
.yf7{bottom:426.657000px;}
.y93{bottom:427.654500px;}
.y6d{bottom:428.352000px;}
.y123{bottom:428.707500px;}
.y1c{bottom:428.992500px;}
.y173{bottom:429.175500px;}
.y47{bottom:434.115000px;}
.yb0{bottom:442.345500px;}
.y172{bottom:444.532500px;}
.yf6{bottom:444.591000px;}
.y92{bottom:445.587000px;}
.y6c{bottom:446.284500px;}
.y122{bottom:446.640000px;}
.y1b{bottom:446.925000px;}
.y46{bottom:452.047500px;}
.yaf{bottom:460.278000px;}
.y171{bottom:460.971000px;}
.y143{bottom:461.103000px;}
.yf5{bottom:462.523500px;}
.y91{bottom:463.519500px;}
.y6b{bottom:464.217000px;}
.y1a{bottom:464.857500px;}
.y45{bottom:469.980000px;}
.y170{bottom:476.326500px;}
.yae{bottom:478.210500px;}
.y142{bottom:479.035500px;}
.yf4{bottom:480.456000px;}
.y121{bottom:480.939000px;}
.y90{bottom:481.452000px;}
.y6a{bottom:482.149500px;}
.y19{bottom:482.790000px;}
.yd6{bottom:482.896500px;}
.y44{bottom:487.912500px;}
.y16f{bottom:492.765000px;}
.y120{bottom:495.162000px;}
.yad{bottom:495.985500px;}
.y141{bottom:496.968000px;}
.yf3{bottom:498.388500px;}
.y11f{bottom:498.871500px;}
.y8f{bottom:499.386000px;}
.y69{bottom:500.082000px;}
.y18{bottom:500.722500px;}
.y43{bottom:505.845000px;}
.y16e{bottom:509.203500px;}
.yac{bottom:513.918000px;}
.y140{bottom:514.902000px;}
.yf2{bottom:516.321000px;}
.y11e{bottom:517.159500px;}
.y8e{bottom:517.318500px;}
.y68{bottom:518.014500px;}
.y16d{bottom:524.560500px;}
.y42{bottom:529.540500px;}
.y11d{bottom:531.382500px;}
.yab{bottom:531.850500px;}
.yf1{bottom:534.253500px;}
.y11c{bottom:535.092000px;}
.y8d{bottom:535.251000px;}
.yd4{bottom:535.948500px;}
.yd5{bottom:536.695500px;}
.y17{bottom:538.189500px;}
.y16c{bottom:540.999000px;}
.y41{bottom:547.474500px;}
.y67{bottom:547.770000px;}
.y11b{bottom:549.670500px;}
.y13f{bottom:549.729000px;}
.yaa{bottom:549.783000px;}
.yf0{bottom:552.187500px;}
.y11a{bottom:553.380000px;}
.yd3{bottom:553.881000px;}
.y16b{bottom:557.436000px;}
.y8c{bottom:563.946000px;}
.y40{bottom:565.407000px;}
.y66{bottom:565.702500px;}
.y119{bottom:567.604500px;}
.ya9{bottom:567.715500px;}
.yef{bottom:570.120000px;}
.y118{bottom:571.312500px;}
.yd1{bottom:571.813500px;}
.yd2{bottom:572.560500px;}
.y16a{bottom:572.793000px;}
.y8b{bottom:581.878500px;}
.y65{bottom:583.011000px;}
.y3f{bottom:583.339500px;}
.y117{bottom:585.892500px;}
.yee{bottom:588.052500px;}
.y169{bottom:589.231500px;}
.y116{bottom:589.600500px;}
.yd0{bottom:589.746000px;}
.y16{bottom:590.218500px;}
.y13e{bottom:596.512500px;}
.ya8{bottom:599.641500px;}
.y8a{bottom:599.811000px;}
.y64{bottom:600.945000px;}
.y3e{bottom:601.272000px;}
.y115{bottom:603.825000px;}
.y168{bottom:604.587000px;}
.yed{bottom:605.985000px;}
.y15{bottom:606.657000px;}
.y114{bottom:607.534500px;}
.ycf{bottom:607.678500px;}
.y13d{bottom:614.445000px;}
.ya7{bottom:617.575500px;}
.y89{bottom:617.743500px;}
.y63{bottom:618.253500px;}
.y3d{bottom:619.204500px;}
.y167{bottom:621.025500px;}
.yec{bottom:623.917500px;}
.yce{bottom:625.611000px;}
.y113{bottom:625.822500px;}
.y13c{bottom:632.377500px;}
.ya6{bottom:635.508000px;}
.y88{bottom:635.676000px;}
.y62{bottom:636.186000px;}
.y3c{bottom:637.137000px;}
.y166{bottom:637.464000px;}
.y14{bottom:639.853500px;}
.y112{bottom:640.045500px;}
.yeb{bottom:641.850000px;}
.ycd{bottom:643.545000px;}
.y111{bottom:643.755000px;}
.y13b{bottom:650.310000px;}
.y165{bottom:652.821000px;}
.y61{bottom:653.494500px;}
.y87{bottom:653.610000px;}
.y3b{bottom:655.071000px;}
.y13{bottom:656.292000px;}
.yea{bottom:659.784000px;}
.ycc{bottom:661.477500px;}
.y13a{bottom:668.242500px;}
.y164{bottom:669.259500px;}
.ya5{bottom:670.740000px;}
.y60{bottom:671.427000px;}
.y86{bottom:671.542500px;}
.y12{bottom:672.730500px;}
.y110{bottom:678.409500px;}
.y3a{bottom:678.766500px;}
.ycb{bottom:679.410000px;}
.y163{bottom:685.696500px;}
.y139{bottom:686.175000px;}
.y11{bottom:689.169000px;}
.y85{bottom:689.475000px;}
.y10f{bottom:696.342000px;}
.y39{bottom:696.699000px;}
.yca{bottom:697.342500px;}
.y5f{bottom:700.557000px;}
.y162{bottom:701.053500px;}
.y138{bottom:704.109000px;}
.y10{bottom:705.607500px;}
.ye9{bottom:711.781500px;}
.y10e{bottom:714.274500px;}
.y38{bottom:714.631500px;}
.yc9{bottom:715.275000px;}
.y84{bottom:716.575500px;}
.y161{bottom:717.492000px;}
.ya4{bottom:717.927000px;}
.y5e{bottom:718.491000px;}
.y137{bottom:722.041500px;}
.yf{bottom:722.046000px;}
.y37{bottom:732.564000px;}
.yc8{bottom:733.207500px;}
.y160{bottom:733.930500px;}
.ya3{bottom:735.859500px;}
.y5d{bottom:736.423500px;}
.ye{bottom:738.483000px;}
.yd8{bottom:739.278000px;}
.y136{bottom:739.974000px;}
.y10d{bottom:745.939500px;}
.y15f{bottom:750.369000px;}
.y36{bottom:750.496500px;}
.yc7{bottom:751.141500px;}
.ya2{bottom:753.792000px;}
.y5c{bottom:754.356000px;}
.yd{bottom:754.921500px;}
.y135{bottom:757.906500px;}
.y83{bottom:758.619000px;}
.y15e{bottom:765.724500px;}
.yc6{bottom:769.074000px;}
.yc{bottom:771.360000px;}
.y5b{bottom:772.288500px;}
.y35{bottom:774.193500px;}
.y134{bottom:775.839000px;}
.y82{bottom:776.551500px;}
.y15d{bottom:782.163000px;}
.ya1{bottom:785.877000px;}
.yc5{bottom:787.006500px;}
.yb{bottom:787.798500px;}
.y5a{bottom:790.221000px;}
.y34{bottom:792.126000px;}
.y10c{bottom:792.549000px;}
.y133{bottom:793.771500px;}
.y81{bottom:794.484000px;}
.y15c{bottom:798.601500px;}
.ya0{bottom:803.809500px;}
.ya{bottom:804.237000px;}
.y59{bottom:808.155000px;}
.y33{bottom:810.058500px;}
.y10b{bottom:810.481500px;}
.y132{bottom:811.705500px;}
.y80{bottom:812.416500px;}
.y15b{bottom:813.957000px;}
.yc4{bottom:814.789500px;}
.y9f{bottom:821.742000px;}
.y58{bottom:826.087500px;}
.y32{bottom:827.991000px;}
.y10a{bottom:828.414000px;}
.y131{bottom:829.638000px;}
.y7f{bottom:830.350500px;}
.y15a{bottom:830.395500px;}
.yc3{bottom:832.722000px;}
.y9e{bottom:839.676000px;}
.y57{bottom:844.020000px;}
.y159{bottom:845.752500px;}
.y31{bottom:845.923500px;}
.y109{bottom:846.346500px;}
.y130{bottom:847.570500px;}
.y7e{bottom:848.283000px;}
.yc2{bottom:850.656000px;}
.y9d{bottom:857.608500px;}
.y108{bottom:860.389500px;}
.y56{bottom:861.952500px;}
.y158{bottom:862.191000px;}
.y30{bottom:863.856000px;}
.y107{bottom:864.280500px;}
.y12f{bottom:865.503000px;}
.y7d{bottom:866.215500px;}
.y9{bottom:868.008000px;}
.yc1{bottom:868.588500px;}
.y9c{bottom:875.541000px;}
.y157{bottom:878.629500px;}
.y55{bottom:879.885000px;}
.y2f{bottom:881.790000px;}
.y12e{bottom:883.435500px;}
.y7c{bottom:884.148000px;}
.yc0{bottom:886.521000px;}
.y8{bottom:890.160000px;}
.y105{bottom:891.496500px;}
.y9b{bottom:893.473500px;}
.y156{bottom:895.068000px;}
.y54{bottom:897.817500px;}
.y2e{bottom:899.722500px;}
.y7{bottom:900.883500px;}
.y12d{bottom:901.368000px;}
.y7b{bottom:902.080500px;}
.ybf{bottom:903.435000px;}
.y106{bottom:905.776500px;}
.y104{bottom:909.471000px;}
.y9a{bottom:911.406000px;}
.y155{bottom:911.505000px;}
.y53{bottom:915.751500px;}
.y2d{bottom:917.655000px;}
.y12c{bottom:919.302000px;}
.y7a{bottom:920.013000px;}
.ybe{bottom:921.367500px;}
.y6{bottom:923.035500px;}
.y154{bottom:926.862000px;}
.y99{bottom:929.338500px;}
.y52{bottom:933.684000px;}
.y79{bottom:937.947000px;}
.ybd{bottom:939.300000px;}
.y2c{bottom:941.350500px;}
.y153{bottom:943.300500px;}
.y103{bottom:946.758000px;}
.y98{bottom:947.113500px;}
.y5{bottom:948.643500px;}
.y51{bottom:951.616500px;}
.y12b{bottom:954.129000px;}
.y78{bottom:955.879500px;}
.ybc{bottom:956.214000px;}
.y2b{bottom:959.283000px;}
.y152{bottom:959.739000px;}
.y102{bottom:960.801000px;}
.y101{bottom:964.690500px;}
.y97{bottom:965.046000px;}
.y4{bottom:966.576000px;}
.y77{bottom:973.812000px;}
.ybb{bottom:974.146500px;}
.y151{bottom:975.094500px;}
.y2a{bottom:977.215500px;}
.y50{bottom:979.006500px;}
.y100{bottom:982.623000px;}
.y96{bottom:982.978500px;}
.y150{bottom:991.533000px;}
.y76{bottom:991.744500px;}
.yba{bottom:992.080500px;}
.y29{bottom:995.149500px;}
.yff{bottom:1000.557000px;}
.y95{bottom:1000.912500px;}
.y14f{bottom:1007.971500px;}
.y75{bottom:1009.677000px;}
.yb9{bottom:1010.013000px;}
.y28{bottom:1013.082000px;}
.y3{bottom:1018.845000px;}
.y4f{bottom:1021.342500px;}
.y14e{bottom:1024.410000px;}
.y74{bottom:1027.609500px;}
.yb8{bottom:1027.945500px;}
.y27{bottom:1031.014500px;}
.y94{bottom:1036.777500px;}
.y4e{bottom:1039.275000px;}
.y14d{bottom:1040.848500px;}
.y73{bottom:1045.543500px;}
.y2{bottom:1045.743000px;}
.y26{bottom:1054.710000px;}
.y14c{bottom:1056.204000px;}
.yfd{bottom:1068.933000px;}
.yfe{bottom:1068.948000px;}
.y1{bottom:1072.642500px;}
.h10{height:19.545902px;}
.hf{height:19.586623px;}
.hc{height:23.251479px;}
.h4{height:23.850624px;}
.h19{height:29.038903px;}
.h5{height:37.336090px;}
.h6{height:40.348800px;}
.h9{height:41.842920px;}
.h8{height:44.831700px;}
.h25{height:45.833296px;}
.ha{height:46.146763px;}
.he{height:48.905475px;}
.hd{height:48.946196px;}
.h3{height:49.892047px;}
.h1f{height:49.898047px;}
.h7{height:50.211840px;}
.h11{height:50.728903px;}
.h14{height:50.734903px;}
.h1a{height:53.716903px;}
.h18{height:56.784000px;}
.h1b{height:59.609700px;}
.h21{height:59.663700px;}
.h1e{height:59.669700px;}
.h2{height:60.254040px;}
.h17{height:60.389700px;}
.h1d{height:60.395700px;}
.h16{height:60.924763px;}
.h20{height:60.978763px;}
.h22{height:60.984763px;}
.h13{height:63.072763px;}
.h23{height:64.730047px;}
.h24{height:64.736047px;}
.h12{height:65.566903px;}
.h15{height:65.572903px;}
.h1c{height:66.292903px;}
.hb{height:348.312364px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:492.820260px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:18.506375px;}
.x1c{left:75.477920px;}
.x1b{left:83.852644px;}
.x14{left:133.076106px;}
.x15{left:134.786189px;}
.x13{left:136.297154px;}
.x18{left:143.336606px;}
.xb{left:202.147500px;}
.x4{left:207.531000px;}
.x38{left:209.058000px;}
.xd{left:211.486500px;}
.x12{left:215.116507px;}
.x21{left:218.905500px;}
.xc{left:224.563500px;}
.xe{left:227.551500px;}
.x20{left:229.525981px;}
.x1{left:231.426000px;}
.x2{left:233.556000px;}
.x1d{left:242.825979px;}
.xa{left:244.666500px;}
.x2c{left:274.558500px;}
.x2f{left:286.507500px;}
.x35{left:310.567500px;}
.x7{left:319.177500px;}
.x36{left:331.576500px;}
.x37{left:334.221000px;}
.x6{left:352.818000px;}
.x8{left:370.611000px;}
.x16{left:388.265058px;}
.x5{left:389.962500px;}
.x19{left:391.591522px;}
.x1e{left:393.828686px;}
.x1a{left:398.630975px;}
.x1f{left:400.891565px;}
.x9{left:405.030000px;}
.x3{left:410.800500px;}
.x28{left:412.134000px;}
.x29{left:465.883500px;}
.x25{left:471.543000px;}
.x32{left:490.036500px;}
.x11{left:491.395500px;}
.x2a{left:497.475000px;}
.x2b{left:504.603000px;}
.x33{left:510.387000px;}
.x2e{left:529.566000px;}
.x26{left:531.340500px;}
.x2d{left:538.888500px;}
.xf{left:553.467000px;}
.x22{left:563.061000px;}
.x23{left:583.534500px;}
.x24{left:623.103000px;}
.x27{left:632.296500px;}
.x34{left:633.622500px;}
.x30{left:694.437000px;}
.x31{left:697.015500px;}
.x10{left:701.791500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-7.973333pt;}
.va{vertical-align:-5.312000pt;}
.v3{vertical-align:-2.656000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.168000pt;}
.v5{vertical-align:13.189333pt;}
.v7{vertical-align:15.045333pt;}
.v1{vertical-align:19.280000pt;}
.vb{vertical-align:21.936000pt;}
.v6{vertical-align:32.469333pt;}
.v9{vertical-align:50.474667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.002133pt;}
.ls44{letter-spacing:0.002174pt;}
.ls8{letter-spacing:0.002489pt;}
.ls2b{letter-spacing:0.002694pt;}
.ls39{letter-spacing:0.002906pt;}
.ls2f{letter-spacing:0.003033pt;}
.ls21{letter-spacing:0.003733pt;}
.ls1b{letter-spacing:0.096202pt;}
.lsf{letter-spacing:1.477138pt;}
.ls30{letter-spacing:1.903146pt;}
.ls17{letter-spacing:1.908479pt;}
.ls13{letter-spacing:2.651680pt;}
.ls0{letter-spacing:2.652911pt;}
.ls2e{letter-spacing:2.655884pt;}
.ls25{letter-spacing:2.656546pt;}
.ls1f{letter-spacing:2.656689pt;}
.ls12{letter-spacing:2.657014pt;}
.ls3c{letter-spacing:2.657253pt;}
.ls18{letter-spacing:2.658245pt;}
.ls5{letter-spacing:3.060980pt;}
.ls19{letter-spacing:3.556327pt;}
.lsc{letter-spacing:3.801225pt;}
.ls4c{letter-spacing:4.562245pt;}
.ls2d{letter-spacing:4.807919pt;}
.ls27{letter-spacing:12.199720pt;}
.ls26{letter-spacing:12.201067pt;}
.ls35{letter-spacing:14.754424pt;}
.lse{letter-spacing:14.756984pt;}
.ls11{letter-spacing:14.757812pt;}
.ls4b{letter-spacing:14.761067pt;}
.ls24{letter-spacing:14.763145pt;}
.ls1e{letter-spacing:14.795145pt;}
.ls36{letter-spacing:16.234472pt;}
.ls16{letter-spacing:16.402079pt;}
.ls1a{letter-spacing:16.403733pt;}
.lsd{letter-spacing:17.414347pt;}
.ls3d{letter-spacing:17.415578pt;}
.ls10{letter-spacing:17.419680pt;}
.ls1d{letter-spacing:17.446347pt;}
.ls4a{letter-spacing:17.543412pt;}
.ls22{letter-spacing:17.708745pt;}
.ls20{letter-spacing:17.731733pt;}
.ls23{letter-spacing:17.818313pt;}
.ls2c{letter-spacing:18.482079pt;}
.ls3b{letter-spacing:18.656479pt;}
.ls38{letter-spacing:18.661812pt;}
.lsa{letter-spacing:18.671651pt;}
.ls7{letter-spacing:18.674424pt;}
.ls15{letter-spacing:19.057014pt;}
.ls34{letter-spacing:19.137014pt;}
.ls42{letter-spacing:19.319578pt;}
.ls41{letter-spacing:19.324911pt;}
.ls33{letter-spacing:19.527474pt;}
.ls4e{letter-spacing:19.612911pt;}
.ls4f{letter-spacing:19.618245pt;}
.ls49{letter-spacing:19.717812pt;}
.ls14{letter-spacing:19.995680pt;}
.ls51{letter-spacing:20.124911pt;}
.ls1c{letter-spacing:20.385014pt;}
.ls2a{letter-spacing:21.142347pt;}
.ls50{letter-spacing:21.267892pt;}
.ls32{letter-spacing:21.287919pt;}
.ls37{letter-spacing:21.319578pt;}
.ls9{letter-spacing:21.329014pt;}
.ls4{letter-spacing:21.344267pt;}
.ls29{letter-spacing:21.522140pt;}
.lsb{letter-spacing:21.535805pt;}
.ls48{letter-spacing:22.370245pt;}
.ls3a{letter-spacing:23.228911pt;}
.ls4d{letter-spacing:23.747892pt;}
.ls28{letter-spacing:26.284745pt;}
.ls43{letter-spacing:26.562693pt;}
.ls3{letter-spacing:26.568027pt;}
.ls1{letter-spacing:27.232473pt;}
.ls46{letter-spacing:28.880479pt;}
.ls3f{letter-spacing:29.712479pt;}
.ls45{letter-spacing:31.532911pt;}
.ls47{letter-spacing:31.538245pt;}
.ls3e{letter-spacing:32.364911pt;}
.ls40{letter-spacing:34.274245pt;}
.ls31{letter-spacing:683.533252pt;}
.wsa9{word-spacing:-53.133867pt;}
.ws9c{word-spacing:-34.611401pt;}
.ws9a{word-spacing:-27.245461pt;}
.ws99{word-spacing:-27.218074pt;}
.wsbc{word-spacing:-25.791179pt;}
.wsbd{word-spacing:-25.738045pt;}
.wsde{word-spacing:-16.117685pt;}
.wsb5{word-spacing:-15.490599pt;}
.ws6b{word-spacing:-14.760588pt;}
.ws12{word-spacing:-13.652838pt;}
.wsce{word-spacing:-10.483724pt;}
.wsb0{word-spacing:-6.717791pt;}
.wsd7{word-spacing:-5.887232pt;}
.wsb3{word-spacing:-5.658944pt;}
.ws70{word-spacing:-3.209286pt;}
.ws75{word-spacing:-2.964870pt;}
.ws5f{word-spacing:-2.858602pt;}
.ws71{word-spacing:-2.805468pt;}
.wscb{word-spacing:-2.592933pt;}
.wsc9{word-spacing:-2.563361pt;}
.wsca{word-spacing:-2.539799pt;}
.wsb9{word-spacing:-2.486665pt;}
.wse9{word-spacing:-2.380397pt;}
.wsf3{word-spacing:-2.319309pt;}
.ws2f{word-spacing:-2.167862pt;}
.wsf2{word-spacing:-2.128026pt;}
.wsdf{word-spacing:-2.008460pt;}
.wse0{word-spacing:-1.955326pt;}
.wsb4{word-spacing:-1.636523pt;}
.wsa0{word-spacing:-1.562136pt;}
.wsa3{word-spacing:-1.423988pt;}
.wsa1{word-spacing:-1.370854pt;}
.ws103{word-spacing:-1.362893pt;}
.ws5a{word-spacing:-1.317720pt;}
.ws28{word-spacing:-1.211452pt;}
.ws65{word-spacing:-1.158318pt;}
.wsa5{word-spacing:-1.105184pt;}
.wsfa{word-spacing:-1.075968pt;}
.wsa4{word-spacing:-1.052051pt;}
.wsf5{word-spacing:-1.028147pt;}
.wse5{word-spacing:-0.998917pt;}
.wsf9{word-spacing:-0.980326pt;}
.wsd2{word-spacing:-0.892649pt;}
.wsd1{word-spacing:-0.626980pt;}
.ws82{word-spacing:-0.605726pt;}
.ws27{word-spacing:-0.573846pt;}
.wsac{word-spacing:-0.520712pt;}
.ws44{word-spacing:-0.414444pt;}
.wsea{word-spacing:-0.361310pt;}
.ws6d{word-spacing:-0.308176pt;}
.ws79{word-spacing:-0.255043pt;}
.ws5e{word-spacing:-0.201909pt;}
.ws107{word-spacing:-0.119552pt;}
.ws7a{word-spacing:-0.095641pt;}
.ws1{word-spacing:-0.076513pt;}
.wsec{word-spacing:-0.063761pt;}
.ws4{word-spacing:-0.047821pt;}
.wscf{word-spacing:-0.037194pt;}
.wsb1{word-spacing:-0.029725pt;}
.ws20{word-spacing:0.000000pt;}
.ws16{word-spacing:0.010627pt;}
.wsed{word-spacing:0.063761pt;}
.ws58{word-spacing:0.116895pt;}
.wsba{word-spacing:0.223162pt;}
.ws9f{word-spacing:0.276296pt;}
.ws10b{word-spacing:0.310835pt;}
.wsa8{word-spacing:0.435698pt;}
.wseb{word-spacing:0.541965pt;}
.ws4d{word-spacing:0.648233pt;}
.wsd{word-spacing:0.741222pt;}
.ws2b{word-spacing:0.754501pt;}
.wsee{word-spacing:0.789043pt;}
.ws7b{word-spacing:0.807635pt;}
.ws92{word-spacing:0.858058pt;}
.ws6c{word-spacing:0.860769pt;}
.wsdd{word-spacing:0.913903pt;}
.ws31{word-spacing:1.073304pt;}
.ws76{word-spacing:1.109381pt;}
.ws30{word-spacing:1.126438pt;}
.wsd8{word-spacing:1.167007pt;}
.wsd9{word-spacing:1.172341pt;}
.ws4b{word-spacing:1.179572pt;}
.ws8c{word-spacing:1.271827pt;}
.ws86{word-spacing:1.285840pt;}
.ws8f{word-spacing:1.314653pt;}
.wsa7{word-spacing:1.338973pt;}
.ws64{word-spacing:1.392107pt;}
.wse7{word-spacing:1.445241pt;}
.wsaf{word-spacing:1.498375pt;}
.ws104{word-spacing:1.506355pt;}
.ws24{word-spacing:1.551509pt;}
.ws6e{word-spacing:1.604643pt;}
.wsc1{word-spacing:1.627104pt;}
.wsc0{word-spacing:1.640102pt;}
.wsc3{word-spacing:1.657777pt;}
.ws106{word-spacing:1.697638pt;}
.ws6f{word-spacing:1.710911pt;}
.wsd0{word-spacing:1.723041pt;}
.ws83{word-spacing:1.764044pt;}
.wsa2{word-spacing:1.870312pt;}
.ws63{word-spacing:1.923446pt;}
.ws66{word-spacing:1.976580pt;}
.wse8{word-spacing:2.029714pt;}
.ws93{word-spacing:2.082848pt;}
.wse3{word-spacing:2.135981pt;}
.ws3a{word-spacing:2.189115pt;}
.wse1{word-spacing:2.200793pt;}
.ws2c{word-spacing:2.348517pt;}
.ws1b{word-spacing:2.454785pt;}
.ws68{word-spacing:2.561052pt;}
.wsf6{word-spacing:2.701875pt;}
.wse2{word-spacing:2.707384pt;}
.ws90{word-spacing:2.720454pt;}
.wsf1{word-spacing:2.727175pt;}
.ws3{word-spacing:2.749696pt;}
.wsdc{word-spacing:2.772830pt;}
.ws8e{word-spacing:2.773588pt;}
.ws22{word-spacing:2.879856pt;}
.ws108{word-spacing:2.893158pt;}
.ws2{word-spacing:2.932989pt;}
.wsc5{word-spacing:2.955846pt;}
.wsc6{word-spacing:2.955999pt;}
.wsc8{word-spacing:2.970447pt;}
.ws41{word-spacing:2.986123pt;}
.ws111{word-spacing:3.084442pt;}
.ws49{word-spacing:3.145525pt;}
.ws96{word-spacing:3.198659pt;}
.ws2e{word-spacing:3.304927pt;}
.ws74{word-spacing:3.358060pt;}
.ws61{word-spacing:3.379314pt;}
.ws81{word-spacing:3.411194pt;}
.ws43{word-spacing:3.432448pt;}
.ws94{word-spacing:3.464328pt;}
.ws39{word-spacing:3.517462pt;}
.ws1c{word-spacing:3.570596pt;}
.ws23{word-spacing:3.623730pt;}
.ws57{word-spacing:3.729997pt;}
.ws55{word-spacing:3.764267pt;}
.wsae{word-spacing:3.836265pt;}
.wsbb{word-spacing:3.889399pt;}
.wse4{word-spacing:3.942533pt;}
.wsf0{word-spacing:4.040858pt;}
.ws9{word-spacing:4.088678pt;}
.ws91{word-spacing:4.101935pt;}
.ws80{word-spacing:4.155068pt;}
.wsc2{word-spacing:4.218829pt;}
.ws21{word-spacing:4.261336pt;}
.ws45{word-spacing:4.314470pt;}
.ws3d{word-spacing:4.367604pt;}
.ws10a{word-spacing:4.375603pt;}
.ws17{word-spacing:4.420738pt;}
.wsfb{word-spacing:4.423424pt;}
.ws8d{word-spacing:4.527005pt;}
.ws1e{word-spacing:4.580139pt;}
.ws60{word-spacing:4.686407pt;}
.ws4e{word-spacing:4.739541pt;}
.ws36{word-spacing:4.792675pt;}
.ws19{word-spacing:4.845809pt;}
.wse{word-spacing:4.853811pt;}
.ws33{word-spacing:4.952076pt;}
.ws4a{word-spacing:5.005210pt;}
.wsfd{word-spacing:5.045094pt;}
.ws2a{word-spacing:5.058344pt;}
.wsbe{word-spacing:5.068971pt;}
.wsd4{word-spacing:5.100412pt;}
.ws25{word-spacing:5.164612pt;}
.ws6a{word-spacing:5.217746pt;}
.ws29{word-spacing:5.270880pt;}
.ws62{word-spacing:5.324013pt;}
.wsaa{word-spacing:5.377147pt;}
.ws48{word-spacing:5.430281pt;}
.wsd6{word-spacing:5.440908pt;}
.ws78{word-spacing:5.483415pt;}
.ws59{word-spacing:5.536549pt;}
.wsb8{word-spacing:5.589683pt;}
.ws42{word-spacing:5.802218pt;}
.wsd3{word-spacing:5.855352pt;}
.wsda{word-spacing:5.908486pt;}
.ws67{word-spacing:5.961620pt;}
.ws84{word-spacing:6.067888pt;}
.wsa{word-spacing:6.097152pt;}
.ws85{word-spacing:6.121021pt;}
.wsad{word-spacing:6.174155pt;}
.ws5b{word-spacing:6.280423pt;}
.ws2d{word-spacing:6.333557pt;}
.wsf{word-spacing:6.384077pt;}
.ws51{word-spacing:6.429858pt;}
.ws50{word-spacing:6.599226pt;}
.ws9b{word-spacing:6.705494pt;}
.ws1f{word-spacing:6.758628pt;}
.wsbf{word-spacing:6.807196pt;}
.ws77{word-spacing:6.811762pt;}
.ws3e{word-spacing:6.864896pt;}
.ws95{word-spacing:6.918029pt;}
.ws97{word-spacing:6.934854pt;}
.ws38{word-spacing:6.971163pt;}
.wsfe{word-spacing:7.005747pt;}
.ws3f{word-spacing:7.024297pt;}
.ws11{word-spacing:7.101389pt;}
.ws7e{word-spacing:7.130565pt;}
.ws102{word-spacing:7.197030pt;}
.ws3b{word-spacing:7.289967pt;}
.ws8{word-spacing:7.483955pt;}
.ws3c{word-spacing:7.502502pt;}
.wsab{word-spacing:7.555636pt;}
.wsf4{word-spacing:7.579597pt;}
.ws4c{word-spacing:7.608770pt;}
.ws89{word-spacing:7.715037pt;}
.wsb{word-spacing:7.723059pt;}
.ws7c{word-spacing:7.812258pt;}
.ws1a{word-spacing:7.874439pt;}
.ws26{word-spacing:7.927573pt;}
.ws105{word-spacing:7.962163pt;}
.ws88{word-spacing:8.140108pt;}
.ws112{word-spacing:8.153446pt;}
.ws15{word-spacing:8.193242pt;}
.ws109{word-spacing:8.344730pt;}
.ws32{word-spacing:8.352644pt;}
.ws1d{word-spacing:8.405778pt;}
.ws34{word-spacing:8.458912pt;}
.wsc4{word-spacing:8.504892pt;}
.wsc7{word-spacing:8.509757pt;}
.ws69{word-spacing:8.512045pt;}
.ws14{word-spacing:8.618313pt;}
.ws110{word-spacing:8.727296pt;}
.ws4f{word-spacing:8.788342pt;}
.wsfc{word-spacing:8.870758pt;}
.wsc{word-spacing:9.014221pt;}
.ws46{word-spacing:9.043384pt;}
.wse6{word-spacing:9.096518pt;}
.ws18{word-spacing:9.149652pt;}
.ws7{word-spacing:9.205504pt;}
.ws56{word-spacing:9.299090pt;}
.wsa6{word-spacing:9.309053pt;}
.ws6{word-spacing:9.396787pt;}
.ws72{word-spacing:9.521589pt;}
.ws9d{word-spacing:9.595976pt;}
.wsdb{word-spacing:9.734124pt;}
.ws5d{word-spacing:9.893526pt;}
.ws7d{word-spacing:9.999794pt;}
.ws52{word-spacing:10.190933pt;}
.ws10f{word-spacing:10.209741pt;}
.ws54{word-spacing:10.212329pt;}
.ws37{word-spacing:10.371731pt;}
.ws98{word-spacing:10.584266pt;}
.ws87{word-spacing:10.637400pt;}
.wsb6{word-spacing:10.903069pt;}
.ws9e{word-spacing:11.009337pt;}
.ws5c{word-spacing:11.168739pt;}
.ws47{word-spacing:11.328140pt;}
.ws40{word-spacing:11.434408pt;}
.wscc{word-spacing:11.504732pt;}
.wscd{word-spacing:11.540676pt;}
.wsb7{word-spacing:11.646944pt;}
.ws73{word-spacing:11.753211pt;}
.ws35{word-spacing:11.806345pt;}
.wsd5{word-spacing:11.912613pt;}
.ws7f{word-spacing:12.443952pt;}
.ws8b{word-spacing:12.922156pt;}
.ws10e{word-spacing:13.078989pt;}
.ws101{word-spacing:13.222451pt;}
.ws10d{word-spacing:14.131046pt;}
.ws53{word-spacing:15.726225pt;}
.ws10c{word-spacing:16.809011pt;}
.ws8a{word-spacing:23.846639pt;}
.ws10{word-spacing:24.526256pt;}
.ws5{word-spacing:26.516431pt;}
.ws0{word-spacing:28.615887pt;}
.wsf7{word-spacing:45.501491pt;}
.wsff{word-spacing:50.522675pt;}
.wsef{word-spacing:68.885862pt;}
.ws13{word-spacing:71.667439pt;}
.ws100{word-spacing:150.707251pt;}
.wsf8{word-spacing:179.479828pt;}
.wsb2{word-spacing:744.093675pt;}
._2{margin-left:-26.566933pt;}
._4{margin-left:-25.132319pt;}
._1d{margin-left:-22.858390pt;}
._1b{margin-left:-5.993540pt;}
._8{margin-left:-4.569513pt;}
._6{margin-left:-3.525954pt;}
._1{margin-left:-2.371905pt;}
._3{margin-left:-1.434614pt;}
._5{width:1.243331pt;}
._0{width:2.371905pt;}
._19{width:3.715131pt;}
._18{width:8.873356pt;}
._10{width:12.288508pt;}
._13{width:13.515121pt;}
._9{width:14.486427pt;}
._1c{width:15.485240pt;}
._f{width:16.771183pt;}
._7{width:18.630868pt;}
._a{width:20.118617pt;}
._d{width:21.128160pt;}
._b{width:22.456507pt;}
._11{width:23.412916pt;}
._e{width:26.135014pt;}
._14{width:27.955262pt;}
._15{width:29.618942pt;}
._17{width:31.042135pt;}
._16{width:35.816516pt;}
._1a{width:53.133867pt;}
._c{width:61.103947pt;}
._12{width:71.731200pt;}
.fsa{font-size:24.987520pt;}
.fs9{font-size:25.039577pt;}
.fsb{font-size:26.566933pt;}
.fs6{font-size:29.724737pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:62.520857pt;}
.fs7{font-size:62.572915pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:12.571846pt;}
.ye7{bottom:20.081116pt;}
.ye6{bottom:23.256614pt;}
.ye5{bottom:30.765884pt;}
.ye4{bottom:39.368358pt;}
.ye3{bottom:94.093630pt;}
.ye2{bottom:102.854879pt;}
.ye0{bottom:138.743205pt;}
.ydc{bottom:162.392851pt;}
.yde{bottom:162.679167pt;}
.ydb{bottom:171.148895pt;}
.ydd{bottom:171.440416pt;}
.ye1{bottom:196.604931pt;}
.yfc{bottom:233.533333pt;}
.yfb{bottom:233.997333pt;}
.y25{bottom:237.294667pt;}
.yda{bottom:251.332805pt;}
.y14b{bottom:251.906667pt;}
.y24{bottom:253.234667pt;}
.yd9{bottom:260.094055pt;}
.y14a{bottom:266.288000pt;}
.y17b{bottom:266.518667pt;}
.y4d{bottom:269.174667pt;}
.y23{bottom:269.176000pt;}
.y17a{bottom:280.169333pt;}
.y149{bottom:280.669333pt;}
.yb7{bottom:281.754667pt;}
.ydf{bottom:284.508944pt;}
.y22{bottom:285.116000pt;}
.y179{bottom:294.780000pt;}
.y148{bottom:295.281333pt;}
.yb6{bottom:297.694667pt;}
.y12a{bottom:297.758667pt;}
.y72{bottom:301.056000pt;}
.y21{bottom:301.340000pt;}
.y4c{bottom:306.178667pt;}
.y178{bottom:309.392000pt;}
.yfa{bottom:309.601333pt;}
.y147{bottom:309.893333pt;}
.yb5{bottom:313.634667pt;}
.y71{bottom:316.996000pt;}
.y20{bottom:317.281333pt;}
.y129{bottom:317.312000pt;}
.y4b{bottom:322.118667pt;}
.y177{bottom:324.004000pt;}
.y146{bottom:324.273333pt;}
.yb4{bottom:329.576000pt;}
.y70{bottom:332.936000pt;}
.y1f{bottom:333.221333pt;}
.y128{bottom:333.252000pt;}
.y4a{bottom:338.058667pt;}
.y176{bottom:338.616000pt;}
.y145{bottom:338.885333pt;}
.yb3{bottom:345.516000pt;}
.y127{bottom:345.894667pt;}
.yf9{bottom:347.370667pt;}
.y6f{bottom:348.876000pt;}
.y1e{bottom:349.161333pt;}
.y126{bottom:349.192000pt;}
.yd7{bottom:349.540000pt;}
.y175{bottom:353.228000pt;}
.y49{bottom:353.998667pt;}
.yb2{bottom:361.314667pt;}
.yf8{bottom:363.310667pt;}
.y6e{bottom:364.816000pt;}
.y1d{bottom:365.101333pt;}
.y125{bottom:365.132000pt;}
.y174{bottom:366.878667pt;}
.y144{bottom:368.285333pt;}
.y48{bottom:369.938667pt;}
.yb1{bottom:377.254667pt;}
.y124{bottom:377.776000pt;}
.yf7{bottom:379.250667pt;}
.y93{bottom:380.137333pt;}
.y6d{bottom:380.757333pt;}
.y123{bottom:381.073333pt;}
.y1c{bottom:381.326667pt;}
.y173{bottom:381.489333pt;}
.y47{bottom:385.880000pt;}
.yb0{bottom:393.196000pt;}
.y172{bottom:395.140000pt;}
.yf6{bottom:395.192000pt;}
.y92{bottom:396.077333pt;}
.y6c{bottom:396.697333pt;}
.y122{bottom:397.013333pt;}
.y1b{bottom:397.266667pt;}
.y46{bottom:401.820000pt;}
.yaf{bottom:409.136000pt;}
.y171{bottom:409.752000pt;}
.y143{bottom:409.869333pt;}
.yf5{bottom:411.132000pt;}
.y91{bottom:412.017333pt;}
.y6b{bottom:412.637333pt;}
.y1a{bottom:413.206667pt;}
.y45{bottom:417.760000pt;}
.y170{bottom:423.401333pt;}
.yae{bottom:425.076000pt;}
.y142{bottom:425.809333pt;}
.yf4{bottom:427.072000pt;}
.y121{bottom:427.501333pt;}
.y90{bottom:427.957333pt;}
.y6a{bottom:428.577333pt;}
.y19{bottom:429.146667pt;}
.yd6{bottom:429.241333pt;}
.y44{bottom:433.700000pt;}
.y16f{bottom:438.013333pt;}
.y120{bottom:440.144000pt;}
.yad{bottom:440.876000pt;}
.y141{bottom:441.749333pt;}
.yf3{bottom:443.012000pt;}
.y11f{bottom:443.441333pt;}
.y8f{bottom:443.898667pt;}
.y69{bottom:444.517333pt;}
.y18{bottom:445.086667pt;}
.y43{bottom:449.640000pt;}
.y16e{bottom:452.625333pt;}
.yac{bottom:456.816000pt;}
.y140{bottom:457.690667pt;}
.yf2{bottom:458.952000pt;}
.y11e{bottom:459.697333pt;}
.y8e{bottom:459.838667pt;}
.y68{bottom:460.457333pt;}
.y16d{bottom:466.276000pt;}
.y42{bottom:470.702667pt;}
.y11d{bottom:472.340000pt;}
.yab{bottom:472.756000pt;}
.yf1{bottom:474.892000pt;}
.y11c{bottom:475.637333pt;}
.y8d{bottom:475.778667pt;}
.yd4{bottom:476.398667pt;}
.yd5{bottom:477.062667pt;}
.y17{bottom:478.390667pt;}
.y16c{bottom:480.888000pt;}
.y41{bottom:486.644000pt;}
.y67{bottom:486.906667pt;}
.y11b{bottom:488.596000pt;}
.y13f{bottom:488.648000pt;}
.yaa{bottom:488.696000pt;}
.yf0{bottom:490.833333pt;}
.y11a{bottom:491.893333pt;}
.yd3{bottom:492.338667pt;}
.y16b{bottom:495.498667pt;}
.y8c{bottom:501.285333pt;}
.y40{bottom:502.584000pt;}
.y66{bottom:502.846667pt;}
.y119{bottom:504.537333pt;}
.ya9{bottom:504.636000pt;}
.yef{bottom:506.773333pt;}
.y118{bottom:507.833333pt;}
.yd1{bottom:508.278667pt;}
.yd2{bottom:508.942667pt;}
.y16a{bottom:509.149333pt;}
.y8b{bottom:517.225333pt;}
.y65{bottom:518.232000pt;}
.y3f{bottom:518.524000pt;}
.y117{bottom:520.793333pt;}
.yee{bottom:522.713333pt;}
.y169{bottom:523.761333pt;}
.y116{bottom:524.089333pt;}
.yd0{bottom:524.218667pt;}
.y16{bottom:524.638667pt;}
.y13e{bottom:530.233333pt;}
.ya8{bottom:533.014667pt;}
.y8a{bottom:533.165333pt;}
.y64{bottom:534.173333pt;}
.y3e{bottom:534.464000pt;}
.y115{bottom:536.733333pt;}
.y168{bottom:537.410667pt;}
.yed{bottom:538.653333pt;}
.y15{bottom:539.250667pt;}
.y114{bottom:540.030667pt;}
.ycf{bottom:540.158667pt;}
.y13d{bottom:546.173333pt;}
.ya7{bottom:548.956000pt;}
.y89{bottom:549.105333pt;}
.y63{bottom:549.558667pt;}
.y3d{bottom:550.404000pt;}
.y167{bottom:552.022667pt;}
.yec{bottom:554.593333pt;}
.yce{bottom:556.098667pt;}
.y113{bottom:556.286667pt;}
.y13c{bottom:562.113333pt;}
.ya6{bottom:564.896000pt;}
.y88{bottom:565.045333pt;}
.y62{bottom:565.498667pt;}
.y3c{bottom:566.344000pt;}
.y166{bottom:566.634667pt;}
.y14{bottom:568.758667pt;}
.y112{bottom:568.929333pt;}
.yeb{bottom:570.533333pt;}
.ycd{bottom:572.040000pt;}
.y111{bottom:572.226667pt;}
.y13b{bottom:578.053333pt;}
.y165{bottom:580.285333pt;}
.y61{bottom:580.884000pt;}
.y87{bottom:580.986667pt;}
.y3b{bottom:582.285333pt;}
.y13{bottom:583.370667pt;}
.yea{bottom:586.474667pt;}
.ycc{bottom:587.980000pt;}
.y13a{bottom:593.993333pt;}
.y164{bottom:594.897333pt;}
.ya5{bottom:596.213333pt;}
.y60{bottom:596.824000pt;}
.y86{bottom:596.926667pt;}
.y12{bottom:597.982667pt;}
.y110{bottom:603.030667pt;}
.y3a{bottom:603.348000pt;}
.ycb{bottom:603.920000pt;}
.y163{bottom:609.508000pt;}
.y139{bottom:609.933333pt;}
.y11{bottom:612.594667pt;}
.y85{bottom:612.866667pt;}
.y10f{bottom:618.970667pt;}
.y39{bottom:619.288000pt;}
.yca{bottom:619.860000pt;}
.y5f{bottom:622.717333pt;}
.y162{bottom:623.158667pt;}
.y138{bottom:625.874667pt;}
.y10{bottom:627.206667pt;}
.ye9{bottom:632.694667pt;}
.y10e{bottom:634.910667pt;}
.y38{bottom:635.228000pt;}
.yc9{bottom:635.800000pt;}
.y84{bottom:636.956000pt;}
.y161{bottom:637.770667pt;}
.ya4{bottom:638.157333pt;}
.y5e{bottom:638.658667pt;}
.y137{bottom:641.814667pt;}
.yf{bottom:641.818667pt;}
.y37{bottom:651.168000pt;}
.yc8{bottom:651.740000pt;}
.y160{bottom:652.382667pt;}
.ya3{bottom:654.097333pt;}
.y5d{bottom:654.598667pt;}
.ye{bottom:656.429333pt;}
.yd8{bottom:657.136000pt;}
.y136{bottom:657.754667pt;}
.y10d{bottom:663.057333pt;}
.y15f{bottom:666.994667pt;}
.y36{bottom:667.108000pt;}
.yc7{bottom:667.681333pt;}
.ya2{bottom:670.037333pt;}
.y5c{bottom:670.538667pt;}
.yd{bottom:671.041333pt;}
.y135{bottom:673.694667pt;}
.y83{bottom:674.328000pt;}
.y15e{bottom:680.644000pt;}
.yc6{bottom:683.621333pt;}
.yc{bottom:685.653333pt;}
.y5b{bottom:686.478667pt;}
.y35{bottom:688.172000pt;}
.y134{bottom:689.634667pt;}
.y82{bottom:690.268000pt;}
.y15d{bottom:695.256000pt;}
.ya1{bottom:698.557333pt;}
.yc5{bottom:699.561333pt;}
.yb{bottom:700.265333pt;}
.y5a{bottom:702.418667pt;}
.y34{bottom:704.112000pt;}
.y10c{bottom:704.488000pt;}
.y133{bottom:705.574667pt;}
.y81{bottom:706.208000pt;}
.y15c{bottom:709.868000pt;}
.ya0{bottom:714.497333pt;}
.ya{bottom:714.877333pt;}
.y59{bottom:718.360000pt;}
.y33{bottom:720.052000pt;}
.y10b{bottom:720.428000pt;}
.y132{bottom:721.516000pt;}
.y80{bottom:722.148000pt;}
.y15b{bottom:723.517333pt;}
.yc4{bottom:724.257333pt;}
.y9f{bottom:730.437333pt;}
.y58{bottom:734.300000pt;}
.y32{bottom:735.992000pt;}
.y10a{bottom:736.368000pt;}
.y131{bottom:737.456000pt;}
.y7f{bottom:738.089333pt;}
.y15a{bottom:738.129333pt;}
.yc3{bottom:740.197333pt;}
.y9e{bottom:746.378667pt;}
.y57{bottom:750.240000pt;}
.y159{bottom:751.780000pt;}
.y31{bottom:751.932000pt;}
.y109{bottom:752.308000pt;}
.y130{bottom:753.396000pt;}
.y7e{bottom:754.029333pt;}
.yc2{bottom:756.138667pt;}
.y9d{bottom:762.318667pt;}
.y108{bottom:764.790667pt;}
.y56{bottom:766.180000pt;}
.y158{bottom:766.392000pt;}
.y30{bottom:767.872000pt;}
.y107{bottom:768.249333pt;}
.y12f{bottom:769.336000pt;}
.y7d{bottom:769.969333pt;}
.y9{bottom:771.562667pt;}
.yc1{bottom:772.078667pt;}
.y9c{bottom:778.258667pt;}
.y157{bottom:781.004000pt;}
.y55{bottom:782.120000pt;}
.y2f{bottom:783.813333pt;}
.y12e{bottom:785.276000pt;}
.y7c{bottom:785.909333pt;}
.yc0{bottom:788.018667pt;}
.y8{bottom:791.253333pt;}
.y105{bottom:792.441333pt;}
.y9b{bottom:794.198667pt;}
.y156{bottom:795.616000pt;}
.y54{bottom:798.060000pt;}
.y2e{bottom:799.753333pt;}
.y7{bottom:800.785333pt;}
.y12d{bottom:801.216000pt;}
.y7b{bottom:801.849333pt;}
.ybf{bottom:803.053333pt;}
.y106{bottom:805.134667pt;}
.y104{bottom:808.418667pt;}
.y9a{bottom:810.138667pt;}
.y155{bottom:810.226667pt;}
.y53{bottom:814.001333pt;}
.y2d{bottom:815.693333pt;}
.y12c{bottom:817.157333pt;}
.y7a{bottom:817.789333pt;}
.ybe{bottom:818.993333pt;}
.y6{bottom:820.476000pt;}
.y154{bottom:823.877333pt;}
.y99{bottom:826.078667pt;}
.y52{bottom:829.941333pt;}
.y79{bottom:833.730667pt;}
.ybd{bottom:834.933333pt;}
.y2c{bottom:836.756000pt;}
.y153{bottom:838.489333pt;}
.y103{bottom:841.562667pt;}
.y98{bottom:841.878667pt;}
.y5{bottom:843.238667pt;}
.y51{bottom:845.881333pt;}
.y12b{bottom:848.114667pt;}
.y78{bottom:849.670667pt;}
.ybc{bottom:849.968000pt;}
.y2b{bottom:852.696000pt;}
.y152{bottom:853.101333pt;}
.y102{bottom:854.045333pt;}
.y101{bottom:857.502667pt;}
.y97{bottom:857.818667pt;}
.y4{bottom:859.178667pt;}
.y77{bottom:865.610667pt;}
.ybb{bottom:865.908000pt;}
.y151{bottom:866.750667pt;}
.y2a{bottom:868.636000pt;}
.y50{bottom:870.228000pt;}
.y100{bottom:873.442667pt;}
.y96{bottom:873.758667pt;}
.y150{bottom:881.362667pt;}
.y76{bottom:881.550667pt;}
.yba{bottom:881.849333pt;}
.y29{bottom:884.577333pt;}
.yff{bottom:889.384000pt;}
.y95{bottom:889.700000pt;}
.y14f{bottom:895.974667pt;}
.y75{bottom:897.490667pt;}
.yb9{bottom:897.789333pt;}
.y28{bottom:900.517333pt;}
.y3{bottom:905.640000pt;}
.y4f{bottom:907.860000pt;}
.y14e{bottom:910.586667pt;}
.y74{bottom:913.430667pt;}
.yb8{bottom:913.729333pt;}
.y27{bottom:916.457333pt;}
.y94{bottom:921.580000pt;}
.y4e{bottom:923.800000pt;}
.y14d{bottom:925.198667pt;}
.y73{bottom:929.372000pt;}
.y2{bottom:929.549333pt;}
.y26{bottom:937.520000pt;}
.y14c{bottom:938.848000pt;}
.yfd{bottom:950.162667pt;}
.yfe{bottom:950.176000pt;}
.y1{bottom:953.460000pt;}
.h10{height:17.374135pt;}
.hf{height:17.410331pt;}
.hc{height:20.667981pt;}
.h4{height:21.200555pt;}
.h19{height:25.812358pt;}
.h5{height:33.187635pt;}
.h6{height:35.865600pt;}
.h9{height:37.193707pt;}
.h8{height:39.850400pt;}
.h25{height:40.740707pt;}
.ha{height:41.019345pt;}
.he{height:43.471534pt;}
.hd{height:43.507730pt;}
.h3{height:44.348486pt;}
.h1f{height:44.353820pt;}
.h7{height:44.632747pt;}
.h11{height:45.092358pt;}
.h14{height:45.097692pt;}
.h1a{height:47.748358pt;}
.h18{height:50.474667pt;}
.h1b{height:52.986400pt;}
.h21{height:53.034400pt;}
.h1e{height:53.039733pt;}
.h2{height:53.559147pt;}
.h17{height:53.679733pt;}
.h1d{height:53.685067pt;}
.h16{height:54.155345pt;}
.h20{height:54.203345pt;}
.h22{height:54.208678pt;}
.h13{height:56.064678pt;}
.h23{height:57.537820pt;}
.h24{height:57.543153pt;}
.h12{height:58.281692pt;}
.h15{height:58.287025pt;}
.h1c{height:58.927025pt;}
.hb{height:309.610990pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:438.062453pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:16.450111pt;}
.x1c{left:67.091485pt;}
.x1b{left:74.535683pt;}
.x14{left:118.289872pt;}
.x15{left:119.809946pt;}
.x13{left:121.153025pt;}
.x18{left:127.410317pt;}
.xb{left:179.686667pt;}
.x4{left:184.472000pt;}
.x38{left:185.829333pt;}
.xd{left:187.988000pt;}
.x12{left:191.214673pt;}
.x21{left:194.582667pt;}
.xc{left:199.612000pt;}
.xe{left:202.268000pt;}
.x20{left:204.023094pt;}
.x1{left:205.712000pt;}
.x2{left:207.605333pt;}
.x1d{left:215.845315pt;}
.xa{left:217.481333pt;}
.x2c{left:244.052000pt;}
.x2f{left:254.673333pt;}
.x35{left:276.060000pt;}
.x7{left:283.713333pt;}
.x36{left:294.734667pt;}
.x37{left:297.085333pt;}
.x6{left:313.616000pt;}
.x8{left:329.432000pt;}
.x16{left:345.124496pt;}
.x5{left:346.633333pt;}
.x19{left:348.081353pt;}
.x1e{left:350.069943pt;}
.x1a{left:354.338644pt;}
.x1f{left:356.348057pt;}
.x9{left:360.026667pt;}
.x3{left:365.156000pt;}
.x28{left:366.341333pt;}
.x29{left:414.118667pt;}
.x25{left:419.149333pt;}
.x32{left:435.588000pt;}
.x11{left:436.796000pt;}
.x2a{left:442.200000pt;}
.x2b{left:448.536000pt;}
.x33{left:453.677333pt;}
.x2e{left:470.725333pt;}
.x26{left:472.302667pt;}
.x2d{left:479.012000pt;}
.xf{left:491.970667pt;}
.x22{left:500.498667pt;}
.x23{left:518.697333pt;}
.x24{left:553.869333pt;}
.x27{left:562.041333pt;}
.x34{left:563.220000pt;}
.x30{left:617.277333pt;}
.x31{left:619.569333pt;}
.x10{left:623.814667pt;}
}




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