
    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_7ee6993b53578fbe72576950.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d19e97708fcb71b14964f249.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_b2c3d96652a23286bb3ceab8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_f9f7b51add9d87f56b3bd6f5.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_9bdd40c67f4e3e0393f37709.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.717000;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_0a1253be5ecf6d5b12b9e409.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.717000;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_6ac540b9120ea1791ed77c94.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107910;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_7e8a89bf5a8563cc9d0306e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.109863;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_ce71cb0b83014f468a10b7d3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.022949;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_fd24d3b8b946b4f5758992c7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.855000;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_268c962502e876b6edef337f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.450000;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_1fa48222aa845961ddc1abe0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.712000;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_0bb18c410d3fc695fd119557.woff2')format("woff");}.fff{font-family:fff;line-height:0.714309;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-15.066000px;}
.v4{vertical-align:-13.386000px;}
.v7{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.976000px;}
.v6{vertical-align:16.740000px;}
.v8{vertical-align:19.128000px;}
.v2{vertical-align:22.176000px;}
.v9{vertical-align:23.814000px;}
.v1{vertical-align:28.248000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000002px;}
.ls2c{letter-spacing:0.000016px;}
.lsc{letter-spacing:0.000023px;}
.lsb{letter-spacing:0.000036px;}
.lsa{letter-spacing:0.000044px;}
.lse{letter-spacing:0.000057px;}
.ls1c{letter-spacing:0.001295px;}
.ls24{letter-spacing:0.001454px;}
.ls1d{letter-spacing:0.001713px;}
.ls2d{letter-spacing:0.002229px;}
.ls15{letter-spacing:0.004444px;}
.ls1f{letter-spacing:0.004982px;}
.ls1a{letter-spacing:0.717726px;}
.ls17{letter-spacing:2.152282px;}
.ls1{letter-spacing:2.986384px;}
.ls27{letter-spacing:2.987798px;}
.ls2{letter-spacing:2.988877px;}
.ls18{letter-spacing:3.106444px;}
.ls19{letter-spacing:5.140282px;}
.ls4{letter-spacing:9.366188px;}
.ls3{letter-spacing:9.366743px;}
.ls1b{letter-spacing:10.628889px;}
.ls13{letter-spacing:13.220152px;}
.ls14{letter-spacing:13.280889px;}
.ls26{letter-spacing:13.286889px;}
.ls1e{letter-spacing:13.613798px;}
.ls16{letter-spacing:13.615200px;}
.ls20{letter-spacing:13.675793px;}
.ls21{letter-spacing:14.948451px;}
.ls2f{letter-spacing:15.938229px;}
.ls25{letter-spacing:16.149787px;}
.lsf{letter-spacing:17.043667px;}
.ls6{letter-spacing:18.345254px;}
.ls2b{letter-spacing:18.936958px;}
.ls2a{letter-spacing:18.984778px;}
.ls5{letter-spacing:18.990835px;}
.ls11{letter-spacing:20.205169px;}
.ls12{letter-spacing:20.331169px;}
.ls10{letter-spacing:20.985169px;}
.ls22{letter-spacing:21.562444px;}
.ls29{letter-spacing:23.384273px;}
.ls28{letter-spacing:23.432094px;}
.ls9{letter-spacing:26.895169px;}
.ls7{letter-spacing:26.895376px;}
.ls8{letter-spacing:26.896216px;}
.ls23{letter-spacing:38.889787px;}
.ls2e{letter-spacing:298.439737px;}
.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;}
}
.ws10{word-spacing:-34.108186px;}
.ws87{word-spacing:-31.609417px;}
.ws3{word-spacing:-24.230394px;}
.ws90{word-spacing:-23.707162px;}
.ws8d{word-spacing:-18.929520px;}
.ws95{word-spacing:-18.336104px;}
.ws1c{word-spacing:-14.011436px;}
.wsb{word-spacing:-12.995488px;}
.ws2c{word-spacing:-12.610310px;}
.ws1{word-spacing:-11.620260px;}
.wsbf{word-spacing:-11.209184px;}
.ws2{word-spacing:-10.974690px;}
.ws89{word-spacing:-10.089696px;}
.ws48{word-spacing:-10.061328px;}
.ws5{word-spacing:-8.535992px;}
.ws8a{word-spacing:-8.303318px;}
.ws9{word-spacing:-8.019727px;}
.wsa{word-spacing:-7.993032px;}
.ws7{word-spacing:-7.746970px;}
.ws8{word-spacing:-7.666272px;}
.ws88{word-spacing:-5.639520px;}
.wsb5{word-spacing:-4.820332px;}
.ws99{word-spacing:-3.467318px;}
.ws9c{word-spacing:-2.981520px;}
.ws86{word-spacing:-2.869236px;}
.ws7d{word-spacing:-2.773595px;}
.ws10d{word-spacing:-2.725774px;}
.ws63{word-spacing:-2.582312px;}
.ws1e{word-spacing:-2.534492px;}
.ws5e{word-spacing:-2.247568px;}
.wsa2{word-spacing:-2.199748px;}
.wsc4{word-spacing:-2.151945px;}
.wsc3{word-spacing:-2.151927px;}
.ws5a{word-spacing:-1.912824px;}
.wse6{word-spacing:-1.769362px;}
.ws4b{word-spacing:-1.721542px;}
.wsf{word-spacing:-1.645034px;}
.ws16{word-spacing:-1.530259px;}
.ws8e{word-spacing:-1.470423px;}
.ws8f{word-spacing:-1.434618px;}
.wsa3{word-spacing:-1.386797px;}
.wsfb{word-spacing:-1.338977px;}
.ws4e{word-spacing:-1.195515px;}
.ws4c{word-spacing:-1.052053px;}
.ws97{word-spacing:-0.956412px;}
.wsf9{word-spacing:-0.908591px;}
.wsf8{word-spacing:-0.908570px;}
.wsf7{word-spacing:-0.860765px;}
.wsee{word-spacing:-0.812950px;}
.ws65{word-spacing:-0.765130px;}
.ws3a{word-spacing:-0.717309px;}
.wsff{word-spacing:-0.669488px;}
.ws102{word-spacing:-0.516463px;}
.ws8c{word-spacing:-0.334744px;}
.ws115{word-spacing:-0.143462px;}
.ws96{word-spacing:-0.047821px;}
.wsb4{word-spacing:-0.038257px;}
.ws0{word-spacing:0.000000px;}
.ws47{word-spacing:0.047821px;}
.ws20{word-spacing:0.095641px;}
.wsf6{word-spacing:0.143462px;}
.ws24{word-spacing:0.172154px;}
.ws1a{word-spacing:0.191282px;}
.ws9b{word-spacing:0.239103px;}
.ws60{word-spacing:0.334744px;}
.ws100{word-spacing:0.526027px;}
.wsef{word-spacing:0.669488px;}
.wsaf{word-spacing:0.731656px;}
.ws13f{word-spacing:0.765132px;}
.ws13e{word-spacing:0.841645px;}
.ws7b{word-spacing:0.860771px;}
.ws4f{word-spacing:0.908591px;}
.ws94{word-spacing:0.956412px;}
.ws7c{word-spacing:1.195515px;}
.wsed{word-spacing:1.243336px;}
.ws42{word-spacing:1.291147px;}
.ws41{word-spacing:1.291156px;}
.ws43{word-spacing:1.338977px;}
.ws35{word-spacing:1.377235px;}
.ws36{word-spacing:1.420274px;}
.ws98{word-spacing:1.434618px;}
.ws34{word-spacing:1.463312px;}
.wsca{word-spacing:1.482439px;}
.wsad{word-spacing:1.506351px;}
.wsae{word-spacing:1.549390px;}
.wscb{word-spacing:1.625900px;}
.ws7a{word-spacing:1.721542px;}
.ws4{word-spacing:1.912824px;}
.ws118{word-spacing:1.912834px;}
.ws119{word-spacing:1.912843px;}
.ws11a{word-spacing:1.912846px;}
.wsab{word-spacing:1.960645px;}
.ws120{word-spacing:2.027600px;}
.ws18{word-spacing:2.056286px;}
.ws26{word-spacing:2.065853px;}
.ws39{word-spacing:2.104106px;}
.ws13c{word-spacing:2.180626px;}
.ws67{word-spacing:2.199748px;}
.ws25{word-spacing:2.324084px;}
.wse0{word-spacing:2.371909px;}
.wsec{word-spacing:2.391030px;}
.ws11e{word-spacing:2.410166px;}
.wsaa{word-spacing:2.438851px;}
.ws126{word-spacing:2.448422px;}
.wsa1{word-spacing:2.486671px;}
.ws51{word-spacing:2.630133px;}
.wsdf{word-spacing:2.754475px;}
.ws3c{word-spacing:2.773595px;}
.ws139{word-spacing:2.830988px;}
.ws121{word-spacing:2.869245px;}
.ws49{word-spacing:2.917057px;}
.ws5d{word-spacing:2.964877px;}
.ws75{word-spacing:2.969663px;}
.ws31{word-spacing:3.012684px;}
.wsf4{word-spacing:3.012698px;}
.ws30{word-spacing:3.012702px;}
.ws32{word-spacing:3.012745px;}
.ws1f{word-spacing:3.108339px;}
.ws107{word-spacing:3.137041px;}
.ws1d{word-spacing:3.203980px;}
.ws1b{word-spacing:3.203991px;}
.ws109{word-spacing:3.213554px;}
.wse8{word-spacing:3.251801px;}
.ws13d{word-spacing:3.251811px;}
.wsd{word-spacing:3.281702px;}
.ws2f{word-spacing:3.313954px;}
.ws14{word-spacing:3.313972px;}
.ws2e{word-spacing:3.313979px;}
.ws2a{word-spacing:3.314000px;}
.ws6b{word-spacing:3.347442px;}
.ws28{word-spacing:3.357011px;}
.ws108{word-spacing:3.366581px;}
.ws7e{word-spacing:3.395263px;}
.wsf0{word-spacing:3.443083px;}
.wse5{word-spacing:3.481351px;}
.ws81{word-spacing:3.586545px;}
.ws129{word-spacing:3.596120px;}
.ws57{word-spacing:3.682186px;}
.ws12b{word-spacing:3.749147px;}
.wsbb{word-spacing:3.787403px;}
.ws5b{word-spacing:3.825648px;}
.ws112{word-spacing:3.921289px;}
.ws5c{word-spacing:3.969110px;}
.ws11{word-spacing:4.002590px;}
.ws12f{word-spacing:4.016943px;}
.wse3{word-spacing:4.055200px;}
.wsc2{word-spacing:4.093456px;}
.ws83{word-spacing:4.208213px;}
.wse2{word-spacing:4.208226px;}
.ws13{word-spacing:4.217783px;}
.wse7{word-spacing:4.256033px;}
.ws2d{word-spacing:4.303867px;}
.ws2b{word-spacing:4.346899px;}
.wsc7{word-spacing:4.351634px;}
.wsc8{word-spacing:4.399495px;}
.ws13b{word-spacing:4.437766px;}
.ws3f{word-spacing:4.447316px;}
.ws19{word-spacing:4.495136px;}
.ws37{word-spacing:4.519053px;}
.ws140{word-spacing:4.552535px;}
.wsa7{word-spacing:4.590778px;}
.ws111{word-spacing:4.638598px;}
.wsbd{word-spacing:4.667305px;}
.ws12{word-spacing:4.691207px;}
.wsb3{word-spacing:4.705562px;}
.ws64{word-spacing:4.734239px;}
.wsb1{word-spacing:4.743818px;}
.ws7f{word-spacing:4.782060px;}
.ws128{word-spacing:4.820332px;}
.ws10c{word-spacing:4.829881px;}
.ws9a{word-spacing:4.877701px;}
.wsa0{word-spacing:4.925522px;}
.wsf3{word-spacing:4.973342px;}
.wsf2{word-spacing:4.973355px;}
.wsf1{word-spacing:5.021177px;}
.ws114{word-spacing:5.068984px;}
.ws11b{word-spacing:5.394181px;}
.ws110{word-spacing:5.451548px;}
.ws68{word-spacing:5.499369px;}
.wsbc{word-spacing:5.585464px;}
.wsfd{word-spacing:5.595010px;}
.ws9d{word-spacing:5.690651px;}
.wsa8{word-spacing:5.834113px;}
.ws27{word-spacing:5.853250px;}
.wsa9{word-spacing:5.881934px;}
.wscd{word-spacing:5.977575px;}
.ws4a{word-spacing:6.073216px;}
.ws50{word-spacing:6.121037px;}
.ws33{word-spacing:6.154520px;}
.ws134{word-spacing:6.159313px;}
.ws77{word-spacing:6.240597px;}
.ws132{word-spacing:6.274082px;}
.ws3e{word-spacing:6.312319px;}
.ws93{word-spacing:6.360140px;}
.ws78{word-spacing:6.369713px;}
.ws58{word-spacing:6.407960px;}
.ws44{word-spacing:6.503573px;}
.ws45{word-spacing:6.503593px;}
.ws46{word-spacing:6.503602px;}
.ws56{word-spacing:6.694884px;}
.ws104{word-spacing:6.694899px;}
.ws105{word-spacing:6.694905px;}
.ws106{word-spacing:6.733162px;}
.ws84{word-spacing:6.790525px;}
.ws79{word-spacing:6.843137px;}
.ws53{word-spacing:6.981808px;}
.ws85{word-spacing:7.077449px;}
.ws52{word-spacing:7.125269px;}
.wsba{word-spacing:7.153984px;}
.ws133{word-spacing:7.192241px;}
.wseb{word-spacing:7.268731px;}
.ws66{word-spacing:7.364372px;}
.wse9{word-spacing:7.555655px;}
.ws136{word-spacing:7.651320px;}
.wsde{word-spacing:7.689577px;}
.wsfc{word-spacing:7.699117px;}
.wscc{word-spacing:7.746937px;}
.wsf5{word-spacing:7.842578px;}
.ws130{word-spacing:7.842603px;}
.ws82{word-spacing:7.938220px;}
.ws135{word-spacing:7.957373px;}
.ws59{word-spacing:7.986040px;}
.ws11f{word-spacing:7.995629px;}
.wsa4{word-spacing:8.033861px;}
.ws6a{word-spacing:8.081681px;}
.ws3d{word-spacing:8.177323px;}
.wsfe{word-spacing:8.225143px;}
.ws23{word-spacing:8.272964px;}
.ws40{word-spacing:8.512067px;}
.wsce{word-spacing:8.559887px;}
.ws101{word-spacing:8.564681px;}
.ws12e{word-spacing:8.569478px;}
.ws10a{word-spacing:8.607735px;}
.wsc5{word-spacing:8.703349px;}
.ws125{word-spacing:8.913788px;}
.ws9e{word-spacing:8.942452px;}
.ws61{word-spacing:8.990273px;}
.wsac{word-spacing:8.995067px;}
.wsa5{word-spacing:9.038093px;}
.ws22{word-spacing:9.085914px;}
.ws9f{word-spacing:9.372838px;}
.wse{word-spacing:9.525893px;}
.ws122{word-spacing:9.717176px;}
.ws5f{word-spacing:9.803223px;}
.ws21{word-spacing:9.994505px;}
.ws10f{word-spacing:10.042326px;}
.wsfa{word-spacing:10.090147px;}
.ws13a{word-spacing:10.214512px;}
.ws131{word-spacing:10.252769px;}
.ws69{word-spacing:10.281429px;}
.wsc9{word-spacing:10.329250px;}
.ws117{word-spacing:10.377070px;}
.ws12c{word-spacing:10.405795px;}
.ws54{word-spacing:10.424891px;}
.ws17{word-spacing:10.472711px;}
.ws4d{word-spacing:10.520532px;}
.ws11d{word-spacing:10.673591px;}
.ws12d{word-spacing:10.750105px;}
.ws116{word-spacing:10.807456px;}
.ws137{word-spacing:10.941388px;}
.ws38{word-spacing:10.998738px;}
.ws10b{word-spacing:11.046559px;}
.ws113{word-spacing:11.285662px;}
.ws55{word-spacing:11.429123px;}
.ws6e{word-spacing:11.448268px;}
.wsc6{word-spacing:11.620406px;}
.ws3b{word-spacing:11.811688px;}
.ws91{word-spacing:11.907329px;}
.ws74{word-spacing:11.964731px;}
.ws12a{word-spacing:12.012572px;}
.wsb0{word-spacing:12.136885px;}
.ws62{word-spacing:12.194253px;}
.ws11c{word-spacing:12.242112px;}
.wsea{word-spacing:12.768100px;}
.ws10e{word-spacing:12.911562px;}
.ws80{word-spacing:13.150665px;}
.wsa6{word-spacing:13.341947px;}
.ws138{word-spacing:14.116685px;}
.wsc0{word-spacing:14.537508px;}
.ws103{word-spacing:14.651629px;}
.wse4{word-spacing:14.655836px;}
.wsc1{word-spacing:15.267836px;}
.wse1{word-spacing:15.395629px;}
.ws6f{word-spacing:15.709089px;}
.ws6{word-spacing:15.876439px;}
.ws29{word-spacing:15.881243px;}
.wsbe{word-spacing:15.905629px;}
.wsc{word-spacing:15.914746px;}
.ws127{word-spacing:16.412081px;}
.ws124{word-spacing:16.603364px;}
.ws72{word-spacing:17.172401px;}
.ws123{word-spacing:17.215470px;}
.ws71{word-spacing:17.344556px;}
.wsb9{word-spacing:18.341629px;}
.ws70{word-spacing:18.592675px;}
.ws6d{word-spacing:18.678752px;}
.wsdd{word-spacing:18.857629px;}
.ws73{word-spacing:19.496486px;}
.ws76{word-spacing:20.615489px;}
.ws15{word-spacing:23.862479px;}
.ws6c{word-spacing:26.038353px;}
.ws92{word-spacing:35.961091px;}
.wsb8{word-spacing:141.319880px;}
.wsd5{word-spacing:204.437987px;}
.wsdb{word-spacing:204.443270px;}
.wsd4{word-spacing:231.031607px;}
.wsd6{word-spacing:233.592291px;}
.wsd0{word-spacing:233.598291px;}
.wsb6{word-spacing:233.862596px;}
.wsd9{word-spacing:243.311976px;}
.wscf{word-spacing:243.314344px;}
.wsb7{word-spacing:266.112910px;}
.wsb2{word-spacing:266.265936px;}
.wsd3{word-spacing:268.102253px;}
.wsd2{word-spacing:278.278508px;}
.wsdc{word-spacing:280.114825px;}
.wsda{word-spacing:280.122291px;}
.wsd1{word-spacing:282.797416px;}
.wsd8{word-spacing:335.663408px;}
.wsd7{word-spacing:340.182291px;}
.ws8b{word-spacing:670.266480px;}
._2{margin-left:-18.829440px;}
._5{width:2.991466px;}
._13{width:6.312339px;}
._1{width:15.967325px;}
._0{width:18.764568px;}
._4{width:23.910300px;}
._3{width:31.900328px;}
._b{width:152.567321px;}
._1b{width:158.917916px;}
._a{width:167.678678px;}
._14{width:168.864153px;}
._e{width:174.105787px;}
._1d{width:178.390526px;}
._d{width:180.456382px;}
._9{width:189.148154px;}
._18{width:195.605996px;}
._c{width:201.994848px;}
._1c{width:206.279587px;}
._1f{width:215.614198px;}
._1a{width:217.144462px;}
._16{width:223.609827px;}
._17{width:229.360662px;}
._15{width:238.682927px;}
._6{width:242.164278px;}
._19{width:244.995266px;}
._8{width:255.936654px;}
._10{width:270.933241px;}
._12{width:277.360350px;}
._1e{width:281.721591px;}
._22{width:288.799073px;}
._11{width:298.707533px;}
._7{width:300.429080px;}
._21{width:344.309400px;}
._20{width:348.823679px;}
._24{width:373.096396px;}
._23{width:377.669155px;}
._f{width:398.939825px;}
.fc2{color:rgb(0,128,172);}
.fc1{color:rgb(46,116,163);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.779200px;}
.fs10{font-size:29.887800px;}
.fs11{font-size:35.865600px;}
.fs12{font-size:38.256000px;}
.fse{font-size:38.256600px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.038000px;}
.fsf{font-size:43.038600px;}
.fsc{font-size:44.353200px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:80.697600px;}
.fs7{font-size:83.686200px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:0.000732px;}
.y6b{bottom:47.430000px;}
.y5{bottom:66.525004px;}
.y26{bottom:79.140000px;}
.yae{bottom:80.236500px;}
.y195{bottom:93.088500px;}
.y25{bottom:93.495000px;}
.y153{bottom:94.582500px;}
.y10d{bottom:95.973000px;}
.y116{bottom:96.000000px;}
.y141{bottom:96.108000px;}
.y4{bottom:97.125005px;}
.yad{bottom:98.347500px;}
.y24{bottom:105.630000px;}
.y194{bottom:105.940500px;}
.yac{bottom:108.823500px;}
.y115{bottom:111.763500px;}
.y10c{bottom:111.801000px;}
.y140{bottom:111.981000px;}
.y152{bottom:112.695000px;}
.y174{bottom:112.815000px;}
.y193{bottom:119.434500px;}
.y69{bottom:119.718000px;}
.yab{bottom:123.169500px;}
.y114{bottom:127.527000px;}
.y10b{bottom:127.539000px;}
.y13f{bottom:127.854000px;}
.y192{bottom:132.286500px;}
.y68{bottom:134.064000px;}
.y21{bottom:139.264499px;}
.yaa{bottom:141.282000px;}
.y10a{bottom:143.275500px;}
.y113{bottom:143.290500px;}
.y13e{bottom:143.727000px;}
.y191{bottom:145.138500px;}
.y173{bottom:146.056500px;}
.ya9{bottom:151.758000px;}
.y151{bottom:157.780500px;}
.y190{bottom:158.632500px;}
.y109{bottom:159.012000px;}
.y112{bottom:159.199500px;}
.y59{bottom:159.289500px;}
.y13d{bottom:159.961500px;}
.y172{bottom:161.881500px;}
.ya8{bottom:166.104000px;}
.y18f{bottom:171.484500px;}
.y58{bottom:173.635500px;}
.y150{bottom:173.763000px;}
.y108{bottom:174.750000px;}
.y111{bottom:174.963000px;}
.y13c{bottom:175.834500px;}
.y171{bottom:177.705000px;}
.ya7{bottom:180.450000px;}
.y18e{bottom:184.978500px;}
.y57{bottom:187.981500px;}
.y14f{bottom:189.744000px;}
.y107{bottom:190.486500px;}
.y110{bottom:190.726500px;}
.y13b{bottom:191.707500px;}
.ya6{bottom:194.796000px;}
.y18{bottom:196.933500px;}
.y18d{bottom:197.830500px;}
.y56{bottom:202.329000px;}
.y14e{bottom:205.725000px;}
.y106{bottom:206.223000px;}
.y10f{bottom:206.490000px;}
.y13a{bottom:207.579000px;}
.ya5{bottom:209.143500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y170{bottom:210.283500px;}
.y18c{bottom:210.682500px;}
.y55{bottom:216.675000px;}
.y14d{bottom:221.707500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y10e{bottom:222.255000px;}
.y139{bottom:223.452000px;}
.ya4{bottom:223.489500px;}
.y18b{bottom:224.176500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y54{bottom:234.786000px;}
.y18a{bottom:237.028500px;}
.y14c{bottom:237.688500px;}
.ya3{bottom:237.835500px;}
.y105{bottom:238.018500px;}
.y138{bottom:239.325000px;}
.y16f{bottom:243.525000px;}
.ye5{bottom:244.588500px;}
.y53{bottom:245.262000px;}
.y189{bottom:249.880500px;}
.ya2{bottom:252.181500px;}
.y14b{bottom:253.671000px;}
.y137{bottom:255.198000px;}
.y16e{bottom:259.350000px;}
.ye4{bottom:259.785000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y52{bottom:263.374500px;}
.ya1{bottom:266.527500px;}
.y14a{bottom:270.232500px;}
.y136{bottom:271.432500px;}
.y104{bottom:271.975500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y51{bottom:273.850500px;}
.ye3{bottom:274.981500px;}
.y16d{bottom:275.173500px;}
.y188{bottom:276.226500px;}
.ya0{bottom:280.873500px;}
.y103{bottom:284.827500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y149{bottom:286.215000px;}
.y135{bottom:287.305500px;}
.y187{bottom:289.078500px;}
.ye2{bottom:290.178000px;}
.y16c{bottom:290.997000px;}
.y50{bottom:291.858000px;}
.y9f{bottom:295.219500px;}
.y102{bottom:297.679500px;}
.y186{bottom:301.929000px;}
.y148{bottom:302.196000px;}
.y4f{bottom:302.334000px;}
.y134{bottom:303.178500px;}
.ye1{bottom:305.373000px;}
.y16b{bottom:306.822000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y101{bottom:310.531500px;}
.y9e{bottom:313.332000px;}
.y185{bottom:315.424500px;}
.y4e{bottom:316.680000px;}
.y147{bottom:318.178500px;}
.y133{bottom:319.050000px;}
.ye0{bottom:320.569500px;}
.y16a{bottom:322.645500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y100{bottom:327.865500px;}
.y184{bottom:328.276500px;}
.y4d{bottom:331.026000px;}
.y146{bottom:334.159500px;}
.y132{bottom:334.923000px;}
.ydf{bottom:335.766000px;}
.y169{bottom:338.470500px;}
.y183{bottom:341.127000px;}
.y4c{bottom:345.372000px;}
.yf{bottom:348.133500px;}
.y145{bottom:350.140500px;}
.y131{bottom:350.796000px;}
.yde{bottom:350.961000px;}
.y168{bottom:354.294000px;}
.y9d{bottom:354.352500px;}
.y182{bottom:354.622500px;}
.y4b{bottom:363.484500px;}
.y144{bottom:366.123000px;}
.ydd{bottom:366.157500px;}
.y130{bottom:367.030500px;}
.y181{bottom:367.474500px;}
.y9c{bottom:369.300000px;}
.y167{bottom:370.117500px;}
.y180{bottom:380.325000px;}
.ydc{bottom:381.354000px;}
.y143{bottom:382.686000px;}
.y12f{bottom:382.903500px;}
.y9b{bottom:384.249000px;}
.y166{bottom:385.942500px;}
.ye{bottom:386.785499px;}
.y17f{bottom:393.820500px;}
.ydb{bottom:396.550500px;}
.y142{bottom:398.667000px;}
.y12e{bottom:398.776500px;}
.y9a{bottom:399.196500px;}
.y67{bottom:401.098500px;}
.y165{bottom:401.766000px;}
.y17e{bottom:406.671000px;}
.y4a{bottom:406.876500px;}
.yd{bottom:408.044999px;}
.yda{bottom:411.745500px;}
.y99{bottom:414.145500px;}
.y12d{bottom:414.648000px;}
.y66{bottom:417.324000px;}
.y164{bottom:417.589500px;}
.y17d{bottom:419.523000px;}
.y49{bottom:422.656500px;}
.yd9{bottom:426.942000px;}
.y98{bottom:429.093000px;}
.y17c{bottom:432.375000px;}
.y163{bottom:433.414500px;}
.y65{bottom:433.549500px;}
.y48{bottom:438.436500px;}
.yd8{bottom:442.138500px;}
.y97{bottom:444.042000px;}
.y17b{bottom:445.869000px;}
.y12c{bottom:448.606500px;}
.y162{bottom:449.238000px;}
.y64{bottom:449.775000px;}
.y47{bottom:454.218000px;}
.y17a{bottom:458.721000px;}
.y96{bottom:458.989500px;}
.y12b{bottom:461.458500px;}
.y161{bottom:465.061500px;}
.y63{bottom:465.999000px;}
.y46{bottom:469.998000px;}
.y179{bottom:471.573000px;}
.yd7{bottom:472.035000px;}
.y95{bottom:473.938500px;}
.y12a{bottom:474.310500px;}
.y160{bottom:480.886500px;}
.y62{bottom:482.224500px;}
.y178{bottom:485.067000px;}
.y45{bottom:485.779500px;}
.y129{bottom:487.162500px;}
.y94{bottom:488.886000px;}
.y177{bottom:497.919000px;}
.y61{bottom:498.450000px;}
.y128{bottom:500.013000px;}
.yd6{bottom:500.448000px;}
.y44{bottom:501.559500px;}
.yc{bottom:502.864502px;}
.y93{bottom:503.835000px;}
.y127{bottom:512.865000px;}
.y15f{bottom:513.465000px;}
.y60{bottom:514.675500px;}
.yd5{bottom:515.643000px;}
.y43{bottom:517.341000px;}
.y92{bottom:518.782500px;}
.yb{bottom:520.864502px;}
.y176{bottom:527.748000px;}
.yd4{bottom:530.839500px;}
.y5f{bottom:530.901000px;}
.y42{bottom:533.121000px;}
.y91{bottom:533.731500px;}
.ya{bottom:538.864499px;}
.y175{bottom:545.527500px;}
.yd3{bottom:546.036000px;}
.y15e{bottom:546.706500px;}
.y5e{bottom:547.125000px;}
.y90{bottom:548.679000px;}
.y41{bottom:548.901000px;}
.y9{bottom:556.864499px;}
.yd2{bottom:561.232500px;}
.y15d{bottom:562.531500px;}
.y5d{bottom:563.350500px;}
.y8f{bottom:563.628000px;}
.y40{bottom:564.682500px;}
.yd1{bottom:576.427500px;}
.y15c{bottom:578.355000px;}
.y8e{bottom:578.575500px;}
.y5c{bottom:579.576000px;}
.y3f{bottom:580.462500px;}
.yd0{bottom:591.624000px;}
.y8d{bottom:593.524500px;}
.y5b{bottom:595.801500px;}
.y3e{bottom:596.244000px;}
.ycf{bottom:606.820500px;}
.y8c{bottom:608.472000px;}
.y15b{bottom:611.749500px;}
.y5a{bottom:612.027000px;}
.yce{bottom:622.017000px;}
.y8b{bottom:623.421000px;}
.y15a{bottom:624.600000px;}
.y3d{bottom:628.252500px;}
.ycd{bottom:637.212000px;}
.y159{bottom:637.452000px;}
.y8a{bottom:638.368500px;}
.y8{bottom:645.510000px;}
.y158{bottom:650.304000px;}
.ycc{bottom:652.408500px;}
.y89{bottom:653.317500px;}
.y157{bottom:663.156000px;}
.y7{bottom:666.771000px;}
.ycb{bottom:667.605000px;}
.y88{bottom:668.265000px;}
.y37{bottom:675.465000px;}
.y156{bottom:676.008000px;}
.yca{bottom:682.800000px;}
.y36{bottom:688.317000px;}
.y155{bottom:688.860000px;}
.y87{bottom:697.419000px;}
.yc9{bottom:697.996500px;}
.y35{bottom:701.169000px;}
.y154{bottom:706.194000px;}
.yc8{bottom:708.831000px;}
.yc7{bottom:713.193000px;}
.y34{bottom:714.021000px;}
.y86{bottom:724.344000px;}
.y3c{bottom:726.018000px;}
.y6{bottom:726.298500px;}
.y33{bottom:726.873000px;}
.yc6{bottom:728.389500px;}
.y85{bottom:739.293000px;}
.y3b{bottom:740.364000px;}
.yc5{bottom:743.584500px;}
.y32{bottom:743.904000px;}
.y3{bottom:752.599495px;}
.yff{bottom:754.209000px;}
.y84{bottom:754.240500px;}
.y3a{bottom:754.710000px;}
.y31{bottom:756.756000px;}
.yc4{bottom:758.781000px;}
.yfe{bottom:767.061000px;}
.y39{bottom:769.056000px;}
.y83{bottom:769.188000px;}
.y30{bottom:769.608000px;}
.yc2{bottom:778.032000px;}
.yfd{bottom:779.913000px;}
.y82{bottom:784.137000px;}
.yc3{bottom:787.389000px;}
.ybf{bottom:791.751000px;}
.yfc{bottom:792.765000px;}
.y2f{bottom:797.608500px;}
.y38{bottom:797.653500px;}
.y81{bottom:799.084500px;}
.yc1{bottom:802.650000px;}
.yfb{bottom:805.617000px;}
.yc0{bottom:807.025500px;}
.y126{bottom:809.793000px;}
.y80{bottom:814.033500px;}
.y125{bottom:824.139000px;}
.yfa{bottom:824.850000px;}
.ybe{bottom:825.015000px;}
.y7f{bottom:828.981000px;}
.yf9{bottom:837.700500px;}
.y124{bottom:838.485000px;}
.ybd{bottom:840.211500px;}
.y2e{bottom:843.472500px;}
.y7e{bottom:843.930000px;}
.yf8{bottom:850.552500px;}
.y123{bottom:852.052500px;}
.ybc{bottom:855.408000px;}
.y2d{bottom:856.323000px;}
.y7d{bottom:858.877500px;}
.yf7{bottom:863.404500px;}
.y122{bottom:864.903000px;}
.ybb{bottom:870.603000px;}
.y2c{bottom:871.806000px;}
.y7c{bottom:873.826500px;}
.yf6{bottom:876.256500px;}
.y121{bottom:877.755000px;}
.y2{bottom:879.369000px;}
.yba{bottom:885.799500px;}
.y7b{bottom:888.774000px;}
.yf5{bottom:889.108500px;}
.y120{bottom:890.607000px;}
.y1a6{bottom:892.420500px;}
.y2b{bottom:899.011500px;}
.yb9{bottom:900.996000px;}
.y7a{bottom:903.723000px;}
.y1a4{bottom:905.272500px;}
.yf4{bottom:906.931500px;}
.y11f{bottom:909.840000px;}
.yb8{bottom:916.192500px;}
.y1a3{bottom:918.124500px;}
.y79{bottom:918.670500px;}
.yf3{bottom:919.783500px;}
.y11e{bottom:922.692000px;}
.y2a{bottom:924.865500px;}
.y1a2{bottom:930.976500px;}
.yb7{bottom:931.387500px;}
.yf2{bottom:932.635500px;}
.y78{bottom:933.619500px;}
.y11d{bottom:935.544000px;}
.y1a1{bottom:943.828500px;}
.yf1{bottom:945.487500px;}
.yb6{bottom:946.584000px;}
.y11c{bottom:948.396000px;}
.y77{bottom:948.567000px;}
.y1a0{bottom:956.680500px;}
.yf0{bottom:958.339500px;}
.yb5{bottom:961.780500px;}
.y76{bottom:963.516000px;}
.y11b{bottom:966.219000px;}
.y1{bottom:966.726000px;}
.y19f{bottom:969.532500px;}
.yef{bottom:971.191500px;}
.yb4{bottom:976.975500px;}
.y75{bottom:978.463500px;}
.y19e{bottom:982.384500px;}
.yee{bottom:989.014500px;}
.yb3{bottom:992.172000px;}
.y74{bottom:993.412500px;}
.y19d{bottom:995.235000px;}
.y11a{bottom:996.894000px;}
.yed{bottom:1001.866500px;}
.y29{bottom:1004.473500px;}
.yb2{bottom:1007.368500px;}
.y19c{bottom:1008.087000px;}
.y73{bottom:1008.360000px;}
.y119{bottom:1009.746000px;}
.yec{bottom:1014.718500px;}
.y19b{bottom:1020.939000px;}
.yb1{bottom:1022.565000px;}
.y118{bottom:1022.598000px;}
.y72{bottom:1023.309000px;}
.yeb{bottom:1027.570500px;}
.y19a{bottom:1033.791000px;}
.y117{bottom:1035.450000px;}
.yb0{bottom:1037.760000px;}
.y71{bottom:1038.256500px;}
.yea{bottom:1040.422500px;}
.y28{bottom:1042.213500px;}
.y199{bottom:1046.643000px;}
.yaf{bottom:1052.956500px;}
.y70{bottom:1053.205500px;}
.ye9{bottom:1053.273000px;}
.y198{bottom:1059.495000px;}
.y6f{bottom:1068.153000px;}
.ye8{bottom:1071.097500px;}
.y197{bottom:1072.347000px;}
.y6e{bottom:1083.102000px;}
.y196{bottom:1085.197500px;}
.y1a5{bottom:1085.199000px;}
.y27{bottom:1086.802500px;}
.ye7{bottom:1087.240500px;}
.y6d{bottom:1098.049500px;}
.ye6{bottom:1100.092500px;}
.y23{bottom:1127.505000px;}
.y6a{bottom:1128.630000px;}
.y6c{bottom:1128.849000px;}
.h1e{height:3.156160px;}
.h11{height:23.536406px;}
.h1d{height:24.245146px;}
.h17{height:26.268574px;}
.h16{height:28.285733px;}
.h15{height:30.084973px;}
.h7{height:32.130000px;}
.h1c{height:32.326726px;}
.h19{height:33.623438px;}
.h13{height:33.623965px;}
.he{height:34.478653px;}
.hb{height:37.826367px;}
.h14{height:37.826895px;}
.hc{height:42.029824px;}
.h1b{height:43.002574px;}
.h1a{height:43.008574px;}
.h6{height:45.900000px;}
.h12{height:47.283750px;}
.h1f{height:47.772221px;}
.h3{height:48.195000px;}
.h18{height:48.262500px;}
.h2{height:55.080000px;}
.h20{height:59.477824px;}
.h10{height:61.158305px;}
.hf{height:70.925625px;}
.hd{height:73.552324px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.ha{height:1190.550018px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:56.276979px;}
.xb{left:63.463500px;}
.xc{left:66.601500px;}
.xe{left:67.866000px;}
.xa{left:74.314500px;}
.xd{left:78.796500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1a{left:134.395500px;}
.x1c{left:141.195000px;}
.x4{left:203.484001px;}
.x1d{left:217.210500px;}
.x1b{left:297.366000px;}
.x9{left:302.100000px;}
.x7{left:341.316000px;}
.x5{left:354.731979px;}
.x8{left:365.034000px;}
.x12{left:444.311979px;}
.x3{left:454.959000px;}
.x10{left:459.906000px;}
.x19{left:471.391500px;}
.xf{left:477.838500px;}
.x1e{left:481.824000px;}
.x15{left:515.805000px;}
.x14{left:518.479500px;}
.x13{left:523.960500px;}
.x16{left:538.591500px;}
.x17{left:559.479000px;}
.x18{left:610.459500px;}
.x11{left:681.056979px;}
@media print{
.v5{vertical-align:-13.392000pt;}
.v4{vertical-align:-11.898667pt;}
.v7{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.312000pt;}
.v6{vertical-align:14.880000pt;}
.v8{vertical-align:17.002667pt;}
.v2{vertical-align:19.712000pt;}
.v9{vertical-align:21.168000pt;}
.v1{vertical-align:25.109333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000002pt;}
.ls2c{letter-spacing:0.000014pt;}
.lsc{letter-spacing:0.000020pt;}
.lsb{letter-spacing:0.000032pt;}
.lsa{letter-spacing:0.000039pt;}
.lse{letter-spacing:0.000051pt;}
.ls1c{letter-spacing:0.001151pt;}
.ls24{letter-spacing:0.001293pt;}
.ls1d{letter-spacing:0.001523pt;}
.ls2d{letter-spacing:0.001981pt;}
.ls15{letter-spacing:0.003950pt;}
.ls1f{letter-spacing:0.004429pt;}
.ls1a{letter-spacing:0.637979pt;}
.ls17{letter-spacing:1.913139pt;}
.ls1{letter-spacing:2.654563pt;}
.ls27{letter-spacing:2.655821pt;}
.ls2{letter-spacing:2.656780pt;}
.ls18{letter-spacing:2.761284pt;}
.ls19{letter-spacing:4.569139pt;}
.ls4{letter-spacing:8.325500pt;}
.ls3{letter-spacing:8.325994pt;}
.ls1b{letter-spacing:9.447901pt;}
.ls13{letter-spacing:11.751246pt;}
.ls14{letter-spacing:11.805235pt;}
.ls26{letter-spacing:11.810568pt;}
.ls1e{letter-spacing:12.101154pt;}
.ls16{letter-spacing:12.102400pt;}
.ls20{letter-spacing:12.156261pt;}
.ls21{letter-spacing:13.287512pt;}
.ls2f{letter-spacing:14.167315pt;}
.ls25{letter-spacing:14.355366pt;}
.lsf{letter-spacing:15.149926pt;}
.ls6{letter-spacing:16.306893pt;}
.ls2b{letter-spacing:16.832851pt;}
.ls2a{letter-spacing:16.875358pt;}
.ls5{letter-spacing:16.880742pt;}
.ls11{letter-spacing:17.960150pt;}
.ls12{letter-spacing:18.072150pt;}
.ls10{letter-spacing:18.653483pt;}
.ls22{letter-spacing:19.166617pt;}
.ls29{letter-spacing:20.786021pt;}
.ls28{letter-spacing:20.828528pt;}
.ls9{letter-spacing:23.906817pt;}
.ls7{letter-spacing:23.907001pt;}
.ls8{letter-spacing:23.907747pt;}
.ls23{letter-spacing:34.568699pt;}
.ls2e{letter-spacing:265.279766pt;}
.ws10{word-spacing:-30.318387pt;}
.ws87{word-spacing:-28.097259pt;}
.ws3{word-spacing:-21.538128pt;}
.ws90{word-spacing:-21.073033pt;}
.ws8d{word-spacing:-16.826240pt;}
.ws95{word-spacing:-16.298759pt;}
.ws1c{word-spacing:-12.454610pt;}
.wsb{word-spacing:-11.551545pt;}
.ws2c{word-spacing:-11.209164pt;}
.ws1{word-spacing:-10.329120pt;}
.wsbf{word-spacing:-9.963719pt;}
.ws2{word-spacing:-9.755280pt;}
.ws89{word-spacing:-8.968619pt;}
.ws48{word-spacing:-8.943403pt;}
.ws5{word-spacing:-7.587549pt;}
.ws8a{word-spacing:-7.380727pt;}
.ws9{word-spacing:-7.128646pt;}
.wsa{word-spacing:-7.104917pt;}
.ws7{word-spacing:-6.886195pt;}
.ws8{word-spacing:-6.814464pt;}
.ws88{word-spacing:-5.012907pt;}
.wsb5{word-spacing:-4.284739pt;}
.ws99{word-spacing:-3.082061pt;}
.ws9c{word-spacing:-2.650240pt;}
.ws86{word-spacing:-2.550432pt;}
.ws7d{word-spacing:-2.465418pt;}
.ws10d{word-spacing:-2.422910pt;}
.ws63{word-spacing:-2.295389pt;}
.ws1e{word-spacing:-2.252882pt;}
.ws5e{word-spacing:-1.997838pt;}
.wsa2{word-spacing:-1.955331pt;}
.wsc4{word-spacing:-1.912840pt;}
.wsc3{word-spacing:-1.912824pt;}
.ws5a{word-spacing:-1.700288pt;}
.wse6{word-spacing:-1.572766pt;}
.ws4b{word-spacing:-1.530259pt;}
.wsf{word-spacing:-1.462252pt;}
.ws16{word-spacing:-1.360230pt;}
.ws8e{word-spacing:-1.307043pt;}
.ws8f{word-spacing:-1.275216pt;}
.wsa3{word-spacing:-1.232709pt;}
.wsfb{word-spacing:-1.190202pt;}
.ws4e{word-spacing:-1.062680pt;}
.ws4c{word-spacing:-0.935158pt;}
.ws97{word-spacing:-0.850144pt;}
.wsf9{word-spacing:-0.807637pt;}
.wsf8{word-spacing:-0.807617pt;}
.wsf7{word-spacing:-0.765125pt;}
.wsee{word-spacing:-0.722622pt;}
.ws65{word-spacing:-0.680115pt;}
.ws3a{word-spacing:-0.637608pt;}
.wsff{word-spacing:-0.595101pt;}
.ws102{word-spacing:-0.459078pt;}
.ws8c{word-spacing:-0.297550pt;}
.ws115{word-spacing:-0.127522pt;}
.ws96{word-spacing:-0.042507pt;}
.wsb4{word-spacing:-0.034006pt;}
.ws0{word-spacing:0.000000pt;}
.ws47{word-spacing:0.042507pt;}
.ws20{word-spacing:0.085014pt;}
.wsf6{word-spacing:0.127522pt;}
.ws24{word-spacing:0.153026pt;}
.ws1a{word-spacing:0.170029pt;}
.ws9b{word-spacing:0.212536pt;}
.ws60{word-spacing:0.297550pt;}
.ws100{word-spacing:0.467579pt;}
.wsef{word-spacing:0.595101pt;}
.wsaf{word-spacing:0.650361pt;}
.ws13f{word-spacing:0.680117pt;}
.ws13e{word-spacing:0.748129pt;}
.ws7b{word-spacing:0.765130pt;}
.ws4f{word-spacing:0.807637pt;}
.ws94{word-spacing:0.850144pt;}
.ws7c{word-spacing:1.062680pt;}
.wsed{word-spacing:1.105187pt;}
.ws42{word-spacing:1.147686pt;}
.ws41{word-spacing:1.147694pt;}
.ws43{word-spacing:1.190202pt;}
.ws35{word-spacing:1.224209pt;}
.ws36{word-spacing:1.262466pt;}
.ws98{word-spacing:1.275216pt;}
.ws34{word-spacing:1.300722pt;}
.wsca{word-spacing:1.317723pt;}
.wsad{word-spacing:1.338979pt;}
.wsae{word-spacing:1.377235pt;}
.wscb{word-spacing:1.445245pt;}
.ws7a{word-spacing:1.530259pt;}
.ws4{word-spacing:1.700288pt;}
.ws118{word-spacing:1.700297pt;}
.ws119{word-spacing:1.700305pt;}
.ws11a{word-spacing:1.700307pt;}
.wsab{word-spacing:1.742795pt;}
.ws120{word-spacing:1.802311pt;}
.ws18{word-spacing:1.827810pt;}
.ws26{word-spacing:1.836314pt;}
.ws39{word-spacing:1.870317pt;}
.ws13c{word-spacing:1.938334pt;}
.ws67{word-spacing:1.955331pt;}
.ws25{word-spacing:2.065853pt;}
.wse0{word-spacing:2.108364pt;}
.wsec{word-spacing:2.125360pt;}
.ws11e{word-spacing:2.142370pt;}
.wsaa{word-spacing:2.167867pt;}
.ws126{word-spacing:2.176375pt;}
.wsa1{word-spacing:2.210374pt;}
.ws51{word-spacing:2.337896pt;}
.wsdf{word-spacing:2.448422pt;}
.ws3c{word-spacing:2.465418pt;}
.ws139{word-spacing:2.516434pt;}
.ws121{word-spacing:2.550440pt;}
.ws49{word-spacing:2.592939pt;}
.ws5d{word-spacing:2.635446pt;}
.ws75{word-spacing:2.639701pt;}
.ws31{word-spacing:2.677941pt;}
.wsf4{word-spacing:2.677954pt;}
.ws30{word-spacing:2.677957pt;}
.ws32{word-spacing:2.677995pt;}
.ws1f{word-spacing:2.762968pt;}
.ws107{word-spacing:2.788481pt;}
.ws1d{word-spacing:2.847982pt;}
.ws1b{word-spacing:2.847992pt;}
.ws109{word-spacing:2.856493pt;}
.wse8{word-spacing:2.890490pt;}
.ws13d{word-spacing:2.890499pt;}
.wsd{word-spacing:2.917069pt;}
.ws2f{word-spacing:2.945737pt;}
.ws14{word-spacing:2.945753pt;}
.ws2e{word-spacing:2.945759pt;}
.ws2a{word-spacing:2.945778pt;}
.ws6b{word-spacing:2.975504pt;}
.ws28{word-spacing:2.984010pt;}
.ws108{word-spacing:2.992516pt;}
.ws7e{word-spacing:3.018011pt;}
.wsf0{word-spacing:3.060518pt;}
.wse5{word-spacing:3.094534pt;}
.ws81{word-spacing:3.188040pt;}
.ws129{word-spacing:3.196551pt;}
.ws57{word-spacing:3.273054pt;}
.ws12b{word-spacing:3.332575pt;}
.wsbb{word-spacing:3.366581pt;}
.ws5b{word-spacing:3.400576pt;}
.ws112{word-spacing:3.485590pt;}
.ws5c{word-spacing:3.528098pt;}
.ws11{word-spacing:3.557858pt;}
.ws12f{word-spacing:3.570616pt;}
.wse3{word-spacing:3.604622pt;}
.wsc2{word-spacing:3.638628pt;}
.ws83{word-spacing:3.740634pt;}
.wse2{word-spacing:3.740645pt;}
.ws13{word-spacing:3.749140pt;}
.wse7{word-spacing:3.783141pt;}
.ws2d{word-spacing:3.825659pt;}
.ws2b{word-spacing:3.863910pt;}
.wsc7{word-spacing:3.868119pt;}
.wsc8{word-spacing:3.910662pt;}
.ws13b{word-spacing:3.944681pt;}
.ws3f{word-spacing:3.953170pt;}
.ws19{word-spacing:3.995677pt;}
.ws37{word-spacing:4.016936pt;}
.ws140{word-spacing:4.046698pt;}
.wsa7{word-spacing:4.080691pt;}
.ws111{word-spacing:4.123198pt;}
.wsbd{word-spacing:4.148716pt;}
.ws12{word-spacing:4.169962pt;}
.wsb3{word-spacing:4.182722pt;}
.ws64{word-spacing:4.208213pt;}
.wsb1{word-spacing:4.216727pt;}
.ws7f{word-spacing:4.250720pt;}
.ws128{word-spacing:4.284739pt;}
.ws10c{word-spacing:4.293227pt;}
.ws9a{word-spacing:4.335734pt;}
.wsa0{word-spacing:4.378242pt;}
.wsf3{word-spacing:4.420749pt;}
.wsf2{word-spacing:4.420760pt;}
.wsf1{word-spacing:4.463268pt;}
.ws114{word-spacing:4.505763pt;}
.ws11b{word-spacing:4.794827pt;}
.ws110{word-spacing:4.845821pt;}
.ws68{word-spacing:4.888328pt;}
.wsbc{word-spacing:4.964857pt;}
.wsfd{word-spacing:4.973342pt;}
.ws9d{word-spacing:5.058357pt;}
.wsa8{word-spacing:5.185878pt;}
.ws27{word-spacing:5.202889pt;}
.wsa9{word-spacing:5.228386pt;}
.wscd{word-spacing:5.313400pt;}
.ws4a{word-spacing:5.398414pt;}
.ws50{word-spacing:5.440922pt;}
.ws33{word-spacing:5.470684pt;}
.ws134{word-spacing:5.474945pt;}
.ws77{word-spacing:5.547197pt;}
.ws132{word-spacing:5.576962pt;}
.ws3e{word-spacing:5.610950pt;}
.ws93{word-spacing:5.653458pt;}
.ws78{word-spacing:5.661967pt;}
.ws58{word-spacing:5.695965pt;}
.ws44{word-spacing:5.780954pt;}
.ws45{word-spacing:5.780971pt;}
.ws46{word-spacing:5.780979pt;}
.ws56{word-spacing:5.951008pt;}
.ws104{word-spacing:5.951021pt;}
.ws105{word-spacing:5.951027pt;}
.ws106{word-spacing:5.985033pt;}
.ws84{word-spacing:6.036022pt;}
.ws79{word-spacing:6.082789pt;}
.ws53{word-spacing:6.206051pt;}
.ws85{word-spacing:6.291066pt;}
.ws52{word-spacing:6.333573pt;}
.wsba{word-spacing:6.359097pt;}
.ws133{word-spacing:6.393103pt;}
.wseb{word-spacing:6.461094pt;}
.ws66{word-spacing:6.546109pt;}
.wse9{word-spacing:6.716138pt;}
.ws136{word-spacing:6.801173pt;}
.wsde{word-spacing:6.835179pt;}
.wsfc{word-spacing:6.843659pt;}
.wscc{word-spacing:6.886166pt;}
.wsf5{word-spacing:6.971181pt;}
.ws130{word-spacing:6.971203pt;}
.ws82{word-spacing:7.056195pt;}
.ws135{word-spacing:7.073220pt;}
.ws59{word-spacing:7.098702pt;}
.ws11f{word-spacing:7.107226pt;}
.wsa4{word-spacing:7.141210pt;}
.ws6a{word-spacing:7.183717pt;}
.ws3d{word-spacing:7.268731pt;}
.wsfe{word-spacing:7.311238pt;}
.ws23{word-spacing:7.353746pt;}
.ws40{word-spacing:7.566282pt;}
.wsce{word-spacing:7.608789pt;}
.ws101{word-spacing:7.613050pt;}
.ws12e{word-spacing:7.617314pt;}
.ws10a{word-spacing:7.651320pt;}
.wsc5{word-spacing:7.736310pt;}
.ws125{word-spacing:7.923367pt;}
.ws9e{word-spacing:7.948846pt;}
.ws61{word-spacing:7.991354pt;}
.wsac{word-spacing:7.995615pt;}
.wsa5{word-spacing:8.033861pt;}
.ws22{word-spacing:8.076368pt;}
.ws9f{word-spacing:8.331411pt;}
.wse{word-spacing:8.467461pt;}
.ws122{word-spacing:8.637490pt;}
.ws5f{word-spacing:8.713976pt;}
.ws21{word-spacing:8.884005pt;}
.ws10f{word-spacing:8.926512pt;}
.wsfa{word-spacing:8.969019pt;}
.ws13a{word-spacing:9.079566pt;}
.ws131{word-spacing:9.113572pt;}
.ws69{word-spacing:9.139048pt;}
.wsc9{word-spacing:9.181555pt;}
.ws117{word-spacing:9.224062pt;}
.ws12c{word-spacing:9.249596pt;}
.ws54{word-spacing:9.266570pt;}
.ws17{word-spacing:9.309077pt;}
.ws4d{word-spacing:9.351584pt;}
.ws11d{word-spacing:9.487637pt;}
.ws12d{word-spacing:9.555649pt;}
.ws116{word-spacing:9.606627pt;}
.ws137{word-spacing:9.725678pt;}
.ws38{word-spacing:9.776656pt;}
.ws10b{word-spacing:9.819163pt;}
.ws113{word-spacing:10.031699pt;}
.ws55{word-spacing:10.159221pt;}
.ws6e{word-spacing:10.176238pt;}
.wsc6{word-spacing:10.329250pt;}
.ws3b{word-spacing:10.499278pt;}
.ws91{word-spacing:10.584293pt;}
.ws74{word-spacing:10.635316pt;}
.ws12a{word-spacing:10.677842pt;}
.wsb0{word-spacing:10.788342pt;}
.ws62{word-spacing:10.839336pt;}
.ws11c{word-spacing:10.881877pt;}
.wsea{word-spacing:11.349422pt;}
.ws10e{word-spacing:11.476944pt;}
.ws80{word-spacing:11.689480pt;}
.wsa6{word-spacing:11.859509pt;}
.ws138{word-spacing:12.548165pt;}
.wsc0{word-spacing:12.922229pt;}
.ws103{word-spacing:13.023670pt;}
.wse4{word-spacing:13.027410pt;}
.wsc1{word-spacing:13.571410pt;}
.wse1{word-spacing:13.685004pt;}
.ws6f{word-spacing:13.963635pt;}
.ws6{word-spacing:14.112390pt;}
.ws29{word-spacing:14.116661pt;}
.wsbe{word-spacing:14.138337pt;}
.wsc{word-spacing:14.146441pt;}
.ws127{word-spacing:14.588517pt;}
.ws124{word-spacing:14.758546pt;}
.ws72{word-spacing:15.264357pt;}
.ws123{word-spacing:15.302640pt;}
.ws71{word-spacing:15.417383pt;}
.wsb9{word-spacing:16.303670pt;}
.ws70{word-spacing:16.526822pt;}
.ws6d{word-spacing:16.603335pt;}
.wsdd{word-spacing:16.762337pt;}
.ws73{word-spacing:17.330210pt;}
.ws76{word-spacing:18.324879pt;}
.ws15{word-spacing:21.211093pt;}
.ws6c{word-spacing:23.145203pt;}
.ws92{word-spacing:31.965414pt;}
.wsb8{word-spacing:125.617671pt;}
.wsd5{word-spacing:181.722655pt;}
.wsdb{word-spacing:181.727351pt;}
.wsd4{word-spacing:205.361429pt;}
.wsd6{word-spacing:207.637592pt;}
.wsd0{word-spacing:207.642925pt;}
.wsb6{word-spacing:207.877863pt;}
.wsd9{word-spacing:216.277312pt;}
.wscf{word-spacing:216.279417pt;}
.wsb7{word-spacing:236.544809pt;}
.wsb2{word-spacing:236.680832pt;}
.wsd3{word-spacing:238.313114pt;}
.wsd2{word-spacing:247.358674pt;}
.wsdc{word-spacing:248.990956pt;}
.wsda{word-spacing:248.997592pt;}
.wsd1{word-spacing:251.375481pt;}
.wsd8{word-spacing:298.367474pt;}
.wsd7{word-spacing:302.384259pt;}
.ws8b{word-spacing:595.792427pt;}
._2{margin-left:-16.737280pt;}
._5{width:2.659081pt;}
._13{width:5.610968pt;}
._1{width:14.193178pt;}
._0{width:16.679616pt;}
._4{width:21.253600pt;}
._3{width:28.355847pt;}
._b{width:135.615396pt;}
._1b{width:141.260370pt;}
._a{width:149.047714pt;}
._14{width:150.101470pt;}
._e{width:154.760699pt;}
._1d{width:158.569356pt;}
._d{width:160.405673pt;}
._9{width:168.131692pt;}
._18{width:173.871996pt;}
._c{width:179.550976pt;}
._1c{width:183.359633pt;}
._1f{width:191.657065pt;}
._1a{width:193.017299pt;}
._16{width:198.764291pt;}
._17{width:203.876144pt;}
._15{width:212.162602pt;}
._6{width:215.257136pt;}
._19{width:217.773570pt;}
._8{width:227.499248pt;}
._10{width:240.829548pt;}
._12{width:246.542533pt;}
._1e{width:250.419192pt;}
._22{width:256.710287pt;}
._11{width:265.517807pt;}
._7{width:267.048071pt;}
._21{width:306.052800pt;}
._20{width:310.065492pt;}
._24{width:331.641241pt;}
._23{width:335.705916pt;}
._f{width:354.613178pt;}
.fsd{font-size:23.803733pt;}
.fs10{font-size:26.566933pt;}
.fs11{font-size:31.880533pt;}
.fs12{font-size:34.005333pt;}
.fse{font-size:34.005867pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.256000pt;}
.fsf{font-size:38.256533pt;}
.fsc{font-size:39.425067pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:71.731200pt;}
.fs7{font-size:74.387733pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:0.000651pt;}
.y6b{bottom:42.160000pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:70.346667pt;}
.yae{bottom:71.321333pt;}
.y195{bottom:82.745333pt;}
.y25{bottom:83.106667pt;}
.y153{bottom:84.073333pt;}
.y10d{bottom:85.309333pt;}
.y116{bottom:85.333333pt;}
.y141{bottom:85.429333pt;}
.y4{bottom:86.333337pt;}
.yad{bottom:87.420000pt;}
.y24{bottom:93.893333pt;}
.y194{bottom:94.169333pt;}
.yac{bottom:96.732000pt;}
.y115{bottom:99.345333pt;}
.y10c{bottom:99.378667pt;}
.y140{bottom:99.538667pt;}
.y152{bottom:100.173333pt;}
.y174{bottom:100.280000pt;}
.y193{bottom:106.164000pt;}
.y69{bottom:106.416000pt;}
.yab{bottom:109.484000pt;}
.y114{bottom:113.357333pt;}
.y10b{bottom:113.368000pt;}
.y13f{bottom:113.648000pt;}
.y192{bottom:117.588000pt;}
.y68{bottom:119.168000pt;}
.y21{bottom:123.790666pt;}
.yaa{bottom:125.584000pt;}
.y10a{bottom:127.356000pt;}
.y113{bottom:127.369333pt;}
.y13e{bottom:127.757333pt;}
.y191{bottom:129.012000pt;}
.y173{bottom:129.828000pt;}
.ya9{bottom:134.896000pt;}
.y151{bottom:140.249333pt;}
.y190{bottom:141.006667pt;}
.y109{bottom:141.344000pt;}
.y112{bottom:141.510667pt;}
.y59{bottom:141.590667pt;}
.y13d{bottom:142.188000pt;}
.y172{bottom:143.894667pt;}
.ya8{bottom:147.648000pt;}
.y18f{bottom:152.430667pt;}
.y58{bottom:154.342667pt;}
.y150{bottom:154.456000pt;}
.y108{bottom:155.333333pt;}
.y111{bottom:155.522667pt;}
.y13c{bottom:156.297333pt;}
.y171{bottom:157.960000pt;}
.ya7{bottom:160.400000pt;}
.y18e{bottom:164.425333pt;}
.y57{bottom:167.094667pt;}
.y14f{bottom:168.661333pt;}
.y107{bottom:169.321333pt;}
.y110{bottom:169.534667pt;}
.y13b{bottom:170.406667pt;}
.ya6{bottom:173.152000pt;}
.y18{bottom:175.052000pt;}
.y18d{bottom:175.849333pt;}
.y56{bottom:179.848000pt;}
.y14e{bottom:182.866667pt;}
.y106{bottom:183.309333pt;}
.y10f{bottom:183.546667pt;}
.y13a{bottom:184.514667pt;}
.ya5{bottom:185.905333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y170{bottom:186.918667pt;}
.y18c{bottom:187.273333pt;}
.y55{bottom:192.600000pt;}
.y14d{bottom:197.073333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y10e{bottom:197.560000pt;}
.y139{bottom:198.624000pt;}
.ya4{bottom:198.657333pt;}
.y18b{bottom:199.268000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y54{bottom:208.698667pt;}
.y18a{bottom:210.692000pt;}
.y14c{bottom:211.278667pt;}
.ya3{bottom:211.409333pt;}
.y105{bottom:211.572000pt;}
.y138{bottom:212.733333pt;}
.y16f{bottom:216.466667pt;}
.ye5{bottom:217.412000pt;}
.y53{bottom:218.010667pt;}
.y189{bottom:222.116000pt;}
.ya2{bottom:224.161333pt;}
.y14b{bottom:225.485333pt;}
.y137{bottom:226.842667pt;}
.y16e{bottom:230.533333pt;}
.ye4{bottom:230.920000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y52{bottom:234.110667pt;}
.ya1{bottom:236.913333pt;}
.y14a{bottom:240.206667pt;}
.y136{bottom:241.273333pt;}
.y104{bottom:241.756000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y51{bottom:243.422667pt;}
.ye3{bottom:244.428000pt;}
.y16d{bottom:244.598667pt;}
.y188{bottom:245.534667pt;}
.ya0{bottom:249.665333pt;}
.y103{bottom:253.180000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y149{bottom:254.413333pt;}
.y135{bottom:255.382667pt;}
.y187{bottom:256.958667pt;}
.ye2{bottom:257.936000pt;}
.y16c{bottom:258.664000pt;}
.y50{bottom:259.429333pt;}
.y9f{bottom:262.417333pt;}
.y102{bottom:264.604000pt;}
.y186{bottom:268.381333pt;}
.y148{bottom:268.618667pt;}
.y4f{bottom:268.741333pt;}
.y134{bottom:269.492000pt;}
.ye1{bottom:271.442667pt;}
.y16b{bottom:272.730667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y101{bottom:276.028000pt;}
.y9e{bottom:278.517333pt;}
.y185{bottom:280.377333pt;}
.y4e{bottom:281.493333pt;}
.y147{bottom:282.825333pt;}
.y133{bottom:283.600000pt;}
.ye0{bottom:284.950667pt;}
.y16a{bottom:286.796000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y100{bottom:291.436000pt;}
.y184{bottom:291.801333pt;}
.y4d{bottom:294.245333pt;}
.y146{bottom:297.030667pt;}
.y132{bottom:297.709333pt;}
.ydf{bottom:298.458667pt;}
.y169{bottom:300.862667pt;}
.y183{bottom:303.224000pt;}
.y4c{bottom:306.997333pt;}
.yf{bottom:309.452000pt;}
.y145{bottom:311.236000pt;}
.y131{bottom:311.818667pt;}
.yde{bottom:311.965333pt;}
.y168{bottom:314.928000pt;}
.y9d{bottom:314.980000pt;}
.y182{bottom:315.220000pt;}
.y4b{bottom:323.097333pt;}
.y144{bottom:325.442667pt;}
.ydd{bottom:325.473333pt;}
.y130{bottom:326.249333pt;}
.y181{bottom:326.644000pt;}
.y9c{bottom:328.266667pt;}
.y167{bottom:328.993333pt;}
.y180{bottom:338.066667pt;}
.ydc{bottom:338.981333pt;}
.y143{bottom:340.165333pt;}
.y12f{bottom:340.358667pt;}
.y9b{bottom:341.554667pt;}
.y166{bottom:343.060000pt;}
.ye{bottom:343.809333pt;}
.y17f{bottom:350.062667pt;}
.ydb{bottom:352.489333pt;}
.y142{bottom:354.370667pt;}
.y12e{bottom:354.468000pt;}
.y9a{bottom:354.841333pt;}
.y67{bottom:356.532000pt;}
.y165{bottom:357.125333pt;}
.y17e{bottom:361.485333pt;}
.y4a{bottom:361.668000pt;}
.yd{bottom:362.706666pt;}
.yda{bottom:365.996000pt;}
.y99{bottom:368.129333pt;}
.y12d{bottom:368.576000pt;}
.y66{bottom:370.954667pt;}
.y164{bottom:371.190667pt;}
.y17d{bottom:372.909333pt;}
.y49{bottom:375.694667pt;}
.yd9{bottom:379.504000pt;}
.y98{bottom:381.416000pt;}
.y17c{bottom:384.333333pt;}
.y163{bottom:385.257333pt;}
.y65{bottom:385.377333pt;}
.y48{bottom:389.721333pt;}
.yd8{bottom:393.012000pt;}
.y97{bottom:394.704000pt;}
.y17b{bottom:396.328000pt;}
.y12c{bottom:398.761333pt;}
.y162{bottom:399.322667pt;}
.y64{bottom:399.800000pt;}
.y47{bottom:403.749333pt;}
.y17a{bottom:407.752000pt;}
.y96{bottom:407.990667pt;}
.y12b{bottom:410.185333pt;}
.y161{bottom:413.388000pt;}
.y63{bottom:414.221333pt;}
.y46{bottom:417.776000pt;}
.y179{bottom:419.176000pt;}
.yd7{bottom:419.586667pt;}
.y95{bottom:421.278667pt;}
.y12a{bottom:421.609333pt;}
.y160{bottom:427.454667pt;}
.y62{bottom:428.644000pt;}
.y178{bottom:431.170667pt;}
.y45{bottom:431.804000pt;}
.y129{bottom:433.033333pt;}
.y94{bottom:434.565333pt;}
.y177{bottom:442.594667pt;}
.y61{bottom:443.066667pt;}
.y128{bottom:444.456000pt;}
.yd6{bottom:444.842667pt;}
.y44{bottom:445.830667pt;}
.yc{bottom:446.990669pt;}
.y93{bottom:447.853333pt;}
.y127{bottom:455.880000pt;}
.y15f{bottom:456.413333pt;}
.y60{bottom:457.489333pt;}
.yd5{bottom:458.349333pt;}
.y43{bottom:459.858667pt;}
.y92{bottom:461.140000pt;}
.yb{bottom:462.990669pt;}
.y176{bottom:469.109333pt;}
.yd4{bottom:471.857333pt;}
.y5f{bottom:471.912000pt;}
.y42{bottom:473.885333pt;}
.y91{bottom:474.428000pt;}
.ya{bottom:478.990666pt;}
.y175{bottom:484.913333pt;}
.yd3{bottom:485.365333pt;}
.y15e{bottom:485.961333pt;}
.y5e{bottom:486.333333pt;}
.y90{bottom:487.714667pt;}
.y41{bottom:487.912000pt;}
.y9{bottom:494.990666pt;}
.yd2{bottom:498.873333pt;}
.y15d{bottom:500.028000pt;}
.y5d{bottom:500.756000pt;}
.y8f{bottom:501.002667pt;}
.y40{bottom:501.940000pt;}
.yd1{bottom:512.380000pt;}
.y15c{bottom:514.093333pt;}
.y8e{bottom:514.289333pt;}
.y5c{bottom:515.178667pt;}
.y3f{bottom:515.966667pt;}
.yd0{bottom:525.888000pt;}
.y8d{bottom:527.577333pt;}
.y5b{bottom:529.601333pt;}
.y3e{bottom:529.994667pt;}
.ycf{bottom:539.396000pt;}
.y8c{bottom:540.864000pt;}
.y15b{bottom:543.777333pt;}
.y5a{bottom:544.024000pt;}
.yce{bottom:552.904000pt;}
.y8b{bottom:554.152000pt;}
.y15a{bottom:555.200000pt;}
.y3d{bottom:558.446667pt;}
.ycd{bottom:566.410667pt;}
.y159{bottom:566.624000pt;}
.y8a{bottom:567.438667pt;}
.y8{bottom:573.786667pt;}
.y158{bottom:578.048000pt;}
.ycc{bottom:579.918667pt;}
.y89{bottom:580.726667pt;}
.y157{bottom:589.472000pt;}
.y7{bottom:592.685334pt;}
.ycb{bottom:593.426667pt;}
.y88{bottom:594.013333pt;}
.y37{bottom:600.413333pt;}
.y156{bottom:600.896000pt;}
.yca{bottom:606.933333pt;}
.y36{bottom:611.837333pt;}
.y155{bottom:612.320000pt;}
.y87{bottom:619.928000pt;}
.yc9{bottom:620.441333pt;}
.y35{bottom:623.261333pt;}
.y154{bottom:627.728000pt;}
.yc8{bottom:630.072000pt;}
.yc7{bottom:633.949333pt;}
.y34{bottom:634.685333pt;}
.y86{bottom:643.861333pt;}
.y3c{bottom:645.349333pt;}
.y6{bottom:645.598667pt;}
.y33{bottom:646.109333pt;}
.yc6{bottom:647.457333pt;}
.y85{bottom:657.149333pt;}
.y3b{bottom:658.101333pt;}
.yc5{bottom:660.964000pt;}
.y32{bottom:661.248000pt;}
.y3{bottom:668.977329pt;}
.yff{bottom:670.408000pt;}
.y84{bottom:670.436000pt;}
.y3a{bottom:670.853333pt;}
.y31{bottom:672.672000pt;}
.yc4{bottom:674.472000pt;}
.yfe{bottom:681.832000pt;}
.y39{bottom:683.605333pt;}
.y83{bottom:683.722667pt;}
.y30{bottom:684.096000pt;}
.yc2{bottom:691.584000pt;}
.yfd{bottom:693.256000pt;}
.y82{bottom:697.010667pt;}
.yc3{bottom:699.901333pt;}
.ybf{bottom:703.778667pt;}
.yfc{bottom:704.680000pt;}
.y2f{bottom:708.985333pt;}
.y38{bottom:709.025333pt;}
.y81{bottom:710.297333pt;}
.yc1{bottom:713.466667pt;}
.yfb{bottom:716.104000pt;}
.yc0{bottom:717.356000pt;}
.y126{bottom:719.816000pt;}
.y80{bottom:723.585333pt;}
.y125{bottom:732.568000pt;}
.yfa{bottom:733.200000pt;}
.ybe{bottom:733.346667pt;}
.y7f{bottom:736.872000pt;}
.yf9{bottom:744.622667pt;}
.y124{bottom:745.320000pt;}
.ybd{bottom:746.854667pt;}
.y2e{bottom:749.753333pt;}
.y7e{bottom:750.160000pt;}
.yf8{bottom:756.046667pt;}
.y123{bottom:757.380000pt;}
.ybc{bottom:760.362667pt;}
.y2d{bottom:761.176000pt;}
.y7d{bottom:763.446667pt;}
.yf7{bottom:767.470667pt;}
.y122{bottom:768.802667pt;}
.ybb{bottom:773.869333pt;}
.y2c{bottom:774.938667pt;}
.y7c{bottom:776.734667pt;}
.yf6{bottom:778.894667pt;}
.y121{bottom:780.226667pt;}
.y2{bottom:781.661334pt;}
.yba{bottom:787.377333pt;}
.y7b{bottom:790.021333pt;}
.yf5{bottom:790.318667pt;}
.y120{bottom:791.650667pt;}
.y1a6{bottom:793.262667pt;}
.y2b{bottom:799.121333pt;}
.yb9{bottom:800.885333pt;}
.y7a{bottom:803.309333pt;}
.y1a4{bottom:804.686667pt;}
.yf4{bottom:806.161333pt;}
.y11f{bottom:808.746667pt;}
.yb8{bottom:814.393333pt;}
.y1a3{bottom:816.110667pt;}
.y79{bottom:816.596000pt;}
.yf3{bottom:817.585333pt;}
.y11e{bottom:820.170667pt;}
.y2a{bottom:822.102667pt;}
.y1a2{bottom:827.534667pt;}
.yb7{bottom:827.900000pt;}
.yf2{bottom:829.009333pt;}
.y78{bottom:829.884000pt;}
.y11d{bottom:831.594667pt;}
.y1a1{bottom:838.958667pt;}
.yf1{bottom:840.433333pt;}
.yb6{bottom:841.408000pt;}
.y11c{bottom:843.018667pt;}
.y77{bottom:843.170667pt;}
.y1a0{bottom:850.382667pt;}
.yf0{bottom:851.857333pt;}
.yb5{bottom:854.916000pt;}
.y76{bottom:856.458667pt;}
.y11b{bottom:858.861333pt;}
.y1{bottom:859.312000pt;}
.y19f{bottom:861.806667pt;}
.yef{bottom:863.281333pt;}
.yb4{bottom:868.422667pt;}
.y75{bottom:869.745333pt;}
.y19e{bottom:873.230667pt;}
.yee{bottom:879.124000pt;}
.yb3{bottom:881.930667pt;}
.y74{bottom:883.033333pt;}
.y19d{bottom:884.653333pt;}
.y11a{bottom:886.128000pt;}
.yed{bottom:890.548000pt;}
.y29{bottom:892.865333pt;}
.yb2{bottom:895.438667pt;}
.y19c{bottom:896.077333pt;}
.y73{bottom:896.320000pt;}
.y119{bottom:897.552000pt;}
.yec{bottom:901.972000pt;}
.y19b{bottom:907.501333pt;}
.yb1{bottom:908.946667pt;}
.y118{bottom:908.976000pt;}
.y72{bottom:909.608000pt;}
.yeb{bottom:913.396000pt;}
.y19a{bottom:918.925333pt;}
.y117{bottom:920.400000pt;}
.yb0{bottom:922.453333pt;}
.y71{bottom:922.894667pt;}
.yea{bottom:924.820000pt;}
.y28{bottom:926.412000pt;}
.y199{bottom:930.349333pt;}
.yaf{bottom:935.961333pt;}
.y70{bottom:936.182667pt;}
.ye9{bottom:936.242667pt;}
.y198{bottom:941.773333pt;}
.y6f{bottom:949.469333pt;}
.ye8{bottom:952.086667pt;}
.y197{bottom:953.197333pt;}
.y6e{bottom:962.757333pt;}
.y196{bottom:964.620000pt;}
.y1a5{bottom:964.621333pt;}
.y27{bottom:966.046667pt;}
.ye7{bottom:966.436000pt;}
.y6d{bottom:976.044000pt;}
.ye6{bottom:977.860000pt;}
.y23{bottom:1002.226667pt;}
.y6a{bottom:1003.226667pt;}
.y6c{bottom:1003.421333pt;}
.h1e{height:2.805475pt;}
.h11{height:20.921250pt;}
.h1d{height:21.551241pt;}
.h17{height:23.349844pt;}
.h16{height:25.142874pt;}
.h15{height:26.742198pt;}
.h7{height:28.560000pt;}
.h1c{height:28.734867pt;}
.h19{height:29.887500pt;}
.h13{height:29.887969pt;}
.he{height:30.647691pt;}
.hb{height:33.623437pt;}
.h14{height:33.623906pt;}
.hc{height:37.359844pt;}
.h1b{height:38.224510pt;}
.h1a{height:38.229844pt;}
.h6{height:40.800000pt;}
.h12{height:42.030000pt;}
.h1f{height:42.464196pt;}
.h3{height:42.840000pt;}
.h18{height:42.900000pt;}
.h2{height:48.960000pt;}
.h20{height:52.869177pt;}
.h10{height:54.362937pt;}
.hf{height:63.045000pt;}
.hd{height:65.379844pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.ha{height:1058.266683pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:50.023981pt;}
.xb{left:56.412000pt;}
.xc{left:59.201333pt;}
.xe{left:60.325333pt;}
.xa{left:66.057333pt;}
.xd{left:70.041333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1a{left:119.462667pt;}
.x1c{left:125.506667pt;}
.x4{left:180.874667pt;}
.x1d{left:193.076000pt;}
.x1b{left:264.325333pt;}
.x9{left:268.533333pt;}
.x7{left:303.392000pt;}
.x5{left:315.317314pt;}
.x8{left:324.474667pt;}
.x12{left:394.943981pt;}
.x3{left:404.408000pt;}
.x10{left:408.805333pt;}
.x19{left:419.014667pt;}
.xf{left:424.745333pt;}
.x1e{left:428.288000pt;}
.x15{left:458.493333pt;}
.x14{left:460.870667pt;}
.x13{left:465.742667pt;}
.x16{left:478.748000pt;}
.x17{left:497.314667pt;}
.x18{left:542.630667pt;}
.x11{left:605.383981pt;}
}




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