
    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_c0fe814f8eec2189358985d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_65d1f2c0ff5c425dff50a372.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8ec8c1bd4c06ccca84777cd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065581;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_7cd58e126da2566cab20b206.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_88a4e686ab93cad1c84f83e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_2174e9be55f31474f1b19b3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_d87d7777b33232077b86fa24.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.146000;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_68e023983f478664f4f7e140.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_afb322c779a3d779f3b825d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_21d73860dbd4cf95462ce79b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_56a6f15c91e48c3ba11bdbe7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065581;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_586ace3dc4c8e52c5cd78a08.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;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_664b53280754121a13c088b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065581;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_8c9e0082eb417d4becfdd59b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065581;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_19c8b74e1544d7a0edd35b6c.woff2')format("woff");}.fff{font-family:fff;line-height:0.677246;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_c526f84c5d6af3b5f61eb0ef.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.607000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-19.199982px;}
.v4{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.000000px;}
.v3{vertical-align:19.191648px;}
.v1{vertical-align:22.799931px;}
.v6{vertical-align:55.488000px;}
.ls4f{letter-spacing:-2.928000px;}
.ls54{letter-spacing:-2.160000px;}
.ls3{letter-spacing:-1.995000px;}
.ls39{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-1.425000px;}
.ls3a{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.855000px;}
.ls36{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.285000px;}
.ls38{letter-spacing:-0.240000px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000014px;}
.lsc{letter-spacing:0.000018px;}
.ls15{letter-spacing:0.000020px;}
.lsd{letter-spacing:0.000022px;}
.ls13{letter-spacing:0.000568px;}
.ls28{letter-spacing:0.035440px;}
.ls2e{letter-spacing:0.046236px;}
.ls32{letter-spacing:0.046328px;}
.ls2d{letter-spacing:0.048716px;}
.ls30{letter-spacing:0.048742px;}
.ls2c{letter-spacing:0.049861px;}
.ls2a{letter-spacing:0.050484px;}
.ls49{letter-spacing:0.052793px;}
.ls50{letter-spacing:0.110384px;}
.ls53{letter-spacing:0.633600px;}
.ls48{letter-spacing:0.671986px;}
.ls45{letter-spacing:0.671990px;}
.ls4a{letter-spacing:0.671995px;}
.ls41{letter-spacing:0.672000px;}
.ls2{letter-spacing:0.798000px;}
.lsb{letter-spacing:0.803700px;}
.ls3d{letter-spacing:1.252800px;}
.ls3e{letter-spacing:1.329579px;}
.ls44{letter-spacing:1.632000px;}
.ls52{letter-spacing:2.078457px;}
.ls46{letter-spacing:2.452755px;}
.ls43{letter-spacing:2.491200px;}
.ls4b{letter-spacing:2.745663px;}
.ls40{letter-spacing:3.167968px;}
.ls0{letter-spacing:3.360000px;}
.ls4d{letter-spacing:3.551988px;}
.ls51{letter-spacing:3.609600px;}
.ls3f{letter-spacing:4.094400px;}
.ls3b{letter-spacing:4.319977px;}
.ls4e{letter-spacing:4.444800px;}
.ls47{letter-spacing:4.564800px;}
.ls3c{letter-spacing:5.865563px;}
.ls4c{letter-spacing:6.292771px;}
.ls42{letter-spacing:7.103973px;}
.ls27{letter-spacing:36.000000px;}
.ls25{letter-spacing:36.528000px;}
.ls26{letter-spacing:37.824000px;}
.ls20{letter-spacing:75.161426px;}
.ls29{letter-spacing:77.952000px;}
.ls2b{letter-spacing:96.624000px;}
.ls24{letter-spacing:102.112903px;}
.lsf{letter-spacing:120.857967px;}
.ls7{letter-spacing:138.586230px;}
.ls1f{letter-spacing:147.977901px;}
.ls2f{letter-spacing:152.879995px;}
.ls11{letter-spacing:155.176868px;}
.ls8{letter-spacing:155.386340px;}
.lsa{letter-spacing:155.386523px;}
.ls1e{letter-spacing:167.808000px;}
.lse{letter-spacing:170.927994px;}
.ls16{letter-spacing:178.128000px;}
.ls35{letter-spacing:181.054065px;}
.ls9{letter-spacing:183.466113px;}
.ls12{letter-spacing:189.359994px;}
.ls10{letter-spacing:194.735994px;}
.ls14{letter-spacing:199.440000px;}
.ls22{letter-spacing:214.725612px;}
.ls31{letter-spacing:228.432000px;}
.ls34{letter-spacing:246.983486px;}
.ls33{letter-spacing:247.775994px;}
.ls17{letter-spacing:248.399995px;}
.ls21{letter-spacing:249.408000px;}
.ls18{letter-spacing:267.071992px;}
.ls1a{letter-spacing:320.640000px;}
.ls23{letter-spacing:332.783990px;}
.ls19{letter-spacing:348.000000px;}
.ls1c{letter-spacing:396.191995px;}
.ls1d{letter-spacing:415.535989px;}
.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;}
}
.ws9b{word-spacing:-48.000000px;}
.ws6{word-spacing:-13.332000px;}
.wse4{word-spacing:-12.672000px;}
.ws70{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.799000px;}
.ws4{word-spacing:-11.514000px;}
.ws43{word-spacing:-11.340000px;}
.ws10b{word-spacing:-11.280000px;}
.ws5{word-spacing:-10.944000px;}
.ws98{word-spacing:-9.984000px;}
.ws108{word-spacing:-9.840000px;}
.ws1{word-spacing:-9.408000px;}
.wsbd{word-spacing:-9.216000px;}
.wsee{word-spacing:-9.072000px;}
.ws7{word-spacing:-8.400000px;}
.ws3{word-spacing:-8.259300px;}
.ws4d{word-spacing:-7.125000px;}
.ws84{word-spacing:-6.000000px;}
.wsb{word-spacing:-2.052000px;}
.ws9{word-spacing:-1.890000px;}
.ws20{word-spacing:-0.798000px;}
.ws5d{word-spacing:-0.741000px;}
.wse3{word-spacing:-0.672000px;}
.wsa5{word-spacing:-0.627000px;}
.ws5b{word-spacing:-0.570000px;}
.ws37{word-spacing:-0.513000px;}
.wsa{word-spacing:-0.480000px;}
.ws28{word-spacing:-0.456000px;}
.wsfb{word-spacing:-0.432000px;}
.wsa4{word-spacing:-0.399000px;}
.wsab{word-spacing:-0.384000px;}
.ws5c{word-spacing:-0.342000px;}
.ws11b{word-spacing:-0.288000px;}
.ws54{word-spacing:-0.285000px;}
.ws104{word-spacing:-0.240000px;}
.ws47{word-spacing:-0.228000px;}
.ws11e{word-spacing:-0.192000px;}
.ws32{word-spacing:-0.171000px;}
.ws101{word-spacing:-0.144000px;}
.ws29{word-spacing:-0.057000px;}
.ws0{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.wsce{word-spacing:0.048000px;}
.ws2a{word-spacing:0.171000px;}
.ws95{word-spacing:0.192000px;}
.wsf{word-spacing:0.228000px;}
.wse0{word-spacing:0.240000px;}
.wsb6{word-spacing:0.285000px;}
.ws106{word-spacing:0.336000px;}
.ws115{word-spacing:0.384000px;}
.wsd1{word-spacing:0.432000px;}
.ws67{word-spacing:0.456000px;}
.ws64{word-spacing:0.513000px;}
.ws11a{word-spacing:0.528000px;}
.wsf7{word-spacing:0.576000px;}
.ws119{word-spacing:0.624000px;}
.ws39{word-spacing:0.627000px;}
.ws11d{word-spacing:0.672000px;}
.wsa9{word-spacing:0.720000px;}
.ws1e{word-spacing:0.741000px;}
.ws4f{word-spacing:0.798000px;}
.ws21{word-spacing:0.855000px;}
.wsd2{word-spacing:0.864000px;}
.ws2b{word-spacing:0.912000px;}
.ws117{word-spacing:0.960000px;}
.wsdc{word-spacing:1.008000px;}
.wse{word-spacing:1.026000px;}
.wsf8{word-spacing:1.056000px;}
.ws42{word-spacing:1.083000px;}
.wsd8{word-spacing:1.104000px;}
.ws4c{word-spacing:1.140000px;}
.ws2d{word-spacing:1.197000px;}
.ws11c{word-spacing:1.200000px;}
.wse8{word-spacing:1.248000px;}
.ws93{word-spacing:1.254000px;}
.wsaa{word-spacing:1.296000px;}
.ws1f{word-spacing:1.311000px;}
.ws59{word-spacing:1.368000px;}
.ws38{word-spacing:1.425000px;}
.wsd5{word-spacing:1.440000px;}
.ws1a{word-spacing:1.539000px;}
.ws22{word-spacing:1.596000px;}
.ws3d{word-spacing:1.653000px;}
.ws3c{word-spacing:1.710000px;}
.ws102{word-spacing:1.728000px;}
.ws13{word-spacing:1.767000px;}
.wscc{word-spacing:1.776000px;}
.wsa3{word-spacing:1.824000px;}
.ws111{word-spacing:1.872000px;}
.ws1b{word-spacing:1.881000px;}
.wsf4{word-spacing:1.920000px;}
.ws57{word-spacing:1.938000px;}
.ws56{word-spacing:1.995000px;}
.ws10f{word-spacing:2.016000px;}
.ws10{word-spacing:2.052000px;}
.ws10c{word-spacing:2.064000px;}
.wsb8{word-spacing:2.109000px;}
.wsd3{word-spacing:2.112000px;}
.wsf3{word-spacing:2.160000px;}
.wsb9{word-spacing:2.166000px;}
.wsbf{word-spacing:2.223000px;}
.ws113{word-spacing:2.256000px;}
.wsba{word-spacing:2.280000px;}
.wsaf{word-spacing:2.337000px;}
.wsc9{word-spacing:2.448000px;}
.wse9{word-spacing:2.496000px;}
.ws48{word-spacing:2.508000px;}
.wscd{word-spacing:2.544000px;}
.ws5f{word-spacing:2.622000px;}
.wsbb{word-spacing:2.679000px;}
.wsde{word-spacing:2.688000px;}
.ws69{word-spacing:2.736000px;}
.ws65{word-spacing:2.793000px;}
.ws24{word-spacing:2.850000px;}
.wscf{word-spacing:2.880000px;}
.ws3f{word-spacing:2.907000px;}
.ws10a{word-spacing:2.928000px;}
.ws109{word-spacing:2.976000px;}
.ws30{word-spacing:3.021000px;}
.wsd6{word-spacing:3.072000px;}
.ws16{word-spacing:3.078000px;}
.wsdf{word-spacing:3.120000px;}
.ws41{word-spacing:3.192000px;}
.wsc{word-spacing:3.249000px;}
.wsd0{word-spacing:3.264000px;}
.ws4a{word-spacing:3.306000px;}
.ws112{word-spacing:3.312000px;}
.ws107{word-spacing:3.360000px;}
.ws5a{word-spacing:3.420000px;}
.wsc4{word-spacing:3.477000px;}
.ws105{word-spacing:3.504000px;}
.wsa7{word-spacing:3.534000px;}
.ws46{word-spacing:3.591000px;}
.wsb0{word-spacing:3.648000px;}
.ws100{word-spacing:3.696000px;}
.ws6a{word-spacing:3.705000px;}
.ws50{word-spacing:3.762000px;}
.wse1{word-spacing:3.792000px;}
.ws3a{word-spacing:3.819000px;}
.wsd7{word-spacing:3.840000px;}
.wsf6{word-spacing:3.888000px;}
.wsae{word-spacing:3.933000px;}
.ws116{word-spacing:3.984000px;}
.ws2e{word-spacing:3.990000px;}
.ws5e{word-spacing:4.047000px;}
.wsdd{word-spacing:4.128000px;}
.wsbe{word-spacing:4.218000px;}
.ws118{word-spacing:4.272000px;}
.wsc2{word-spacing:4.389000px;}
.ws51{word-spacing:4.446000px;}
.ws96{word-spacing:4.464000px;}
.ws3e{word-spacing:4.503000px;}
.wsf5{word-spacing:4.512000px;}
.wsfa{word-spacing:4.608000px;}
.ws63{word-spacing:4.617000px;}
.wsec{word-spacing:4.656000px;}
.ws15{word-spacing:4.674000px;}
.ws31{word-spacing:4.788000px;}
.wsca{word-spacing:4.800000px;}
.ws4b{word-spacing:4.845000px;}
.wsb1{word-spacing:4.959000px;}
.ws19{word-spacing:5.016000px;}
.ws49{word-spacing:5.130000px;}
.wsdb{word-spacing:5.184000px;}
.ws44{word-spacing:5.187000px;}
.wscb{word-spacing:5.232000px;}
.wsfe{word-spacing:5.280000px;}
.wsb4{word-spacing:5.301000px;}
.wsa6{word-spacing:5.415000px;}
.ws10d{word-spacing:5.424000px;}
.wsb2{word-spacing:5.529000px;}
.wsff{word-spacing:5.568000px;}
.ws8b{word-spacing:5.586000px;}
.ws8c{word-spacing:5.643000px;}
.wsc3{word-spacing:5.700000px;}
.wsa8{word-spacing:5.808000px;}
.wsd4{word-spacing:5.904000px;}
.ws62{word-spacing:5.928000px;}
.wsf9{word-spacing:5.952000px;}
.ws60{word-spacing:6.042000px;}
.ws97{word-spacing:6.048000px;}
.ws11{word-spacing:6.099000px;}
.ws14{word-spacing:6.156000px;}
.wsda{word-spacing:6.240000px;}
.ws18{word-spacing:6.270000px;}
.ws26{word-spacing:6.327000px;}
.wsef{word-spacing:6.336000px;}
.wsb3{word-spacing:6.384000px;}
.wse2{word-spacing:6.432000px;}
.ws61{word-spacing:6.441000px;}
.ws99{word-spacing:6.480000px;}
.wsb7{word-spacing:6.498000px;}
.ws103{word-spacing:6.528000px;}
.ws27{word-spacing:6.612000px;}
.wsfd{word-spacing:6.672000px;}
.wsd{word-spacing:6.726000px;}
.wsd9{word-spacing:6.768000px;}
.ws8e{word-spacing:6.783000px;}
.wsfc{word-spacing:6.864000px;}
.ws94{word-spacing:6.897000px;}
.wsf2{word-spacing:6.912000px;}
.ws2f{word-spacing:6.954000px;}
.ws66{word-spacing:7.011000px;}
.ws52{word-spacing:7.068000px;}
.wsc8{word-spacing:7.104000px;}
.ws6b{word-spacing:7.239000px;}
.ws12{word-spacing:7.296000px;}
.ws10e{word-spacing:7.344000px;}
.ws1c{word-spacing:7.353000px;}
.wsc6{word-spacing:7.392000px;}
.ws35{word-spacing:7.410000px;}
.ws2c{word-spacing:7.524000px;}
.ws3b{word-spacing:7.638000px;}
.wsac{word-spacing:7.752000px;}
.ws4e{word-spacing:7.809000px;}
.ws33{word-spacing:7.866000px;}
.ws68{word-spacing:8.037000px;}
.ws110{word-spacing:8.064000px;}
.ws8d{word-spacing:8.151000px;}
.ws90{word-spacing:8.265000px;}
.wse5{word-spacing:8.496000px;}
.wsf0{word-spacing:8.592000px;}
.ws91{word-spacing:8.607000px;}
.ws34{word-spacing:8.721000px;}
.wsc5{word-spacing:8.778000px;}
.ws40{word-spacing:8.835000px;}
.wsbc{word-spacing:9.177000px;}
.wsf1{word-spacing:9.408000px;}
.wsc1{word-spacing:9.519000px;}
.ws8f{word-spacing:9.576000px;}
.wsc7{word-spacing:9.600000px;}
.ws25{word-spacing:10.089000px;}
.ws17{word-spacing:10.260000px;}
.ws36{word-spacing:10.317000px;}
.ws92{word-spacing:10.602000px;}
.wsea{word-spacing:10.656000px;}
.wsc0{word-spacing:11.001000px;}
.wsad{word-spacing:11.286000px;}
.ws53{word-spacing:11.343000px;}
.ws45{word-spacing:11.685000px;}
.wsa2{word-spacing:12.084000px;}
.wse6{word-spacing:12.096000px;}
.ws114{word-spacing:13.344000px;}
.ws58{word-spacing:13.509000px;}
.ws55{word-spacing:13.680000px;}
.wseb{word-spacing:13.776000px;}
.wsb5{word-spacing:15.618000px;}
.ws23{word-spacing:18.240000px;}
.wse7{word-spacing:18.624000px;}
.wsed{word-spacing:49.584000px;}
.ws1d{word-spacing:73.056000px;}
.ws86{word-spacing:95.808000px;}
.ws88{word-spacing:98.927994px;}
.ws73{word-spacing:107.865710px;}
.ws7a{word-spacing:113.385608px;}
.ws77{word-spacing:113.386157px;}
.ws78{word-spacing:113.386230px;}
.ws8a{word-spacing:122.927994px;}
.ws7c{word-spacing:124.665454px;}
.ws7e{word-spacing:124.665527px;}
.ws82{word-spacing:124.665710px;}
.ws9d{word-spacing:129.504000px;}
.ws83{word-spacing:130.185608px;}
.ws75{word-spacing:130.186157px;}
.ws71{word-spacing:131.265674px;}
.ws74{word-spacing:136.786120px;}
.ws7f{word-spacing:136.786304px;}
.ws9f{word-spacing:150.048000px;}
.ws76{word-spacing:154.656000px;}
.ws6f{word-spacing:158.265491px;}
.ws7d{word-spacing:158.265674px;}
.ws72{word-spacing:158.265747px;}
.ws6d{word-spacing:158.266131px;}
.ws79{word-spacing:160.175995px;}
.ws7b{word-spacing:163.786194px;}
.wsa0{word-spacing:168.239991px;}
.ws80{word-spacing:175.065674px;}
.ws81{word-spacing:175.066223px;}
.ws9c{word-spacing:177.408000px;}
.ws6e{word-spacing:182.265491px;}
.ws9e{word-spacing:189.648000px;}
.ws87{word-spacing:216.192000px;}
.ws6c{word-spacing:265.055992px;}
.wsa1{word-spacing:637.104000px;}
.ws9a{word-spacing:648.432000px;}
.ws85{word-spacing:818.879962px;}
.ws89{word-spacing:984.432000px;}
._3e{margin-left:-19.878027px;}
._3b{margin-left:-18.867000px;}
._26{margin-left:-17.556012px;}
._3{margin-left:-15.333000px;}
._25{margin-left:-13.815000px;}
._d{margin-left:-9.063000px;}
._27{margin-left:-7.125000px;}
._2a{margin-left:-5.904000px;}
._4{margin-left:-4.131600px;}
._2{margin-left:-2.964000px;}
._0{margin-left:-1.632000px;}
._1{width:1.281600px;}
._9{width:2.314200px;}
._b{width:3.767700px;}
._a{width:5.335200px;}
._5{width:7.309800px;}
._28{width:10.168500px;}
._c{width:13.375776px;}
._e{width:14.911200px;}
._29{width:16.324186px;}
._3d{width:18.160500px;}
._3c{width:19.402500px;}
._6{width:22.053000px;}
._49{width:38.735993px;}
._48{width:40.176000px;}
._7{width:56.255995px;}
._2c{width:62.927994px;}
._30{width:66.837462px;}
._40{width:93.595190px;}
._43{width:96.624000px;}
._2e{width:107.808000px;}
._2b{width:110.923778px;}
._13{width:121.776000px;}
._34{width:134.927994px;}
._21{width:142.416000px;}
._44{width:144.719921px;}
._17{width:146.544000px;}
._36{width:149.712000px;}
._23{width:155.403007px;}
._15{width:157.776000px;}
._16{width:172.175992px;}
._18{width:179.529024px;}
._24{width:181.104000px;}
._2f{width:183.312000px;}
._41{width:189.956990px;}
._22{width:193.776000px;}
._1b{width:200.256000px;}
._3f{width:201.568774px;}
._1d{width:206.112000px;}
._19{width:214.800000px;}
._1a{width:217.055992px;}
._f{width:226.656000px;}
._31{width:227.902151px;}
._1f{width:229.807423px;}
._11{width:232.175995px;}
._1c{width:233.328000px;}
._42{width:249.055216px;}
._46{width:256.176000px;}
._38{width:257.808000px;}
._10{width:260.256000px;}
._35{width:269.136000px;}
._37{width:279.744000px;}
._1e{width:282.048000px;}
._20{width:301.440000px;}
._39{width:328.464000px;}
._2d{width:330.262837px;}
._14{width:343.776000px;}
._3a{width:347.556000px;}
._32{width:384.336000px;}
._45{width:421.632000px;}
._12{width:473.088000px;}
._47{width:503.519985px;}
._8{width:698.592000px;}
._33{width:768.960000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:33.600000px;}
.fs4{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:32.687250px;}
.y7d{bottom:33.984900px;}
.y4{bottom:33.985050px;}
.ya9{bottom:73.240644px;}
.ya8{bottom:73.252646px;}
.yae{bottom:73.264656px;}
.yaa{bottom:73.269414px;}
.yac{bottom:73.270661px;}
.yaf{bottom:73.271988px;}
.yad{bottom:73.273178px;}
.yab{bottom:73.274242px;}
.ya5{bottom:73.274998px;}
.y28{bottom:73.277998px;}
.yb0{bottom:73.280548px;}
.yc0{bottom:73.422748px;}
.y5b{bottom:73.426031px;}
.y7c{bottom:74.399553px;}
.ye0{bottom:77.384391px;}
.y10d{bottom:84.984591px;}
.y182{bottom:84.989531px;}
.y5a{bottom:90.682781px;}
.y147{bottom:91.055512px;}
.y7b{bottom:91.656303px;}
.y27{bottom:91.949999px;}
.ybf{bottom:92.094749px;}
.ydf{bottom:94.641141px;}
.y184{bottom:96.893531px;}
.y10c{bottom:98.856591px;}
.y181{bottom:98.861531px;}
.y146{bottom:104.927512px;}
.ybe{bottom:105.430646px;}
.y59{bottom:107.939531px;}
.y7a{bottom:108.913053px;}
.y183{bottom:110.765531px;}
.yde{bottom:111.897891px;}
.y10b{bottom:112.728591px;}
.y180{bottom:112.733531px;}
.y26{bottom:113.372246px;}
.ya4{bottom:115.610110px;}
.y145{bottom:118.799512px;}
.ybd{bottom:119.302646px;}
.y58{bottom:125.196281px;}
.y79{bottom:126.169803px;}
.y10a{bottom:126.600591px;}
.y17f{bottom:126.605531px;}
.ydd{bottom:129.154641px;}
.y144{bottom:132.671512px;}
.ya3{bottom:132.866860px;}
.ybc{bottom:133.174646px;}
.y25{bottom:134.794498px;}
.y109{bottom:140.472591px;}
.y17e{bottom:140.477531px;}
.y57{bottom:142.453031px;}
.y78{bottom:143.426553px;}
.ydc{bottom:146.411391px;}
.y143{bottom:146.543512px;}
.ybb{bottom:147.046646px;}
.ya2{bottom:150.123610px;}
.y108{bottom:154.344591px;}
.y17d{bottom:154.349531px;}
.y24{bottom:158.272500px;}
.y56{bottom:159.709781px;}
.y142{bottom:160.415512px;}
.y77{bottom:160.683303px;}
.ydb{bottom:163.668141px;}
.ya1{bottom:167.380360px;}
.y107{bottom:168.216591px;}
.y17c{bottom:168.221531px;}
.y23{bottom:172.144500px;}
.y141{bottom:174.287512px;}
.yd3{bottom:174.656850px;}
.y55{bottom:176.966531px;}
.y76{bottom:177.940053px;}
.yda{bottom:180.924891px;}
.y106{bottom:182.088591px;}
.y17b{bottom:182.093531px;}
.ya0{bottom:184.637110px;}
.y140{bottom:188.159512px;}
.yd2{bottom:192.320850px;}
.y54{bottom:194.223281px;}
.y75{bottom:195.196803px;}
.y17a{bottom:195.965531px;}
.yd9{bottom:198.181641px;}
.y9f{bottom:201.893860px;}
.y13f{bottom:202.031512px;}
.y179{bottom:209.837531px;}
.yd1{bottom:209.912850px;}
.y53{bottom:211.480031px;}
.y74{bottom:212.453553px;}
.y22{bottom:213.051444px;}
.y105{bottom:213.216591px;}
.y13e{bottom:215.903512px;}
.y9e{bottom:219.150610px;}
.ya6{bottom:220.132645px;}
.y178{bottom:223.709531px;}
.yd0{bottom:227.504850px;}
.y52{bottom:228.736781px;}
.y73{bottom:229.710303px;}
.y13d{bottom:229.775512px;}
.y21{bottom:230.308194px;}
.yd8{bottom:233.431641px;}
.y9d{bottom:236.407360px;}
.y177{bottom:237.581531px;}
.y13c{bottom:243.647512px;}
.y104{bottom:244.341591px;}
.ycf{bottom:245.096850px;}
.y51{bottom:245.993531px;}
.y72{bottom:246.967053px;}
.y20{bottom:247.564944px;}
.y176{bottom:251.453531px;}
.y9c{bottom:253.664110px;}
.y13b{bottom:257.519512px;}
.yce{bottom:262.688850px;}
.y50{bottom:263.250281px;}
.y71{bottom:264.223803px;}
.y1f{bottom:264.821694px;}
.y175{bottom:265.325531px;}
.y9b{bottom:270.920860px;}
.y13a{bottom:271.391512px;}
.y103{bottom:277.308449px;}
.y174{bottom:279.197531px;}
.ycd{bottom:280.286400px;}
.y4f{bottom:280.507031px;}
.y70{bottom:281.480553px;}
.y1e{bottom:282.078444px;}
.y139{bottom:285.263512px;}
.y173{bottom:293.069531px;}
.y4e{bottom:297.763781px;}
.y6f{bottom:298.737303px;}
.y138{bottom:299.135512px;}
.y1d{bottom:299.335194px;}
.yd7{bottom:306.161391px;}
.y9a{bottom:306.170860px;}
.y172{bottom:306.941531px;}
.ya7{bottom:309.568645px;}
.ycc{bottom:311.750400px;}
.y137{bottom:313.007512px;}
.y4d{bottom:315.020531px;}
.y6e{bottom:315.994053px;}
.y1c{bottom:316.591944px;}
.y171{bottom:320.813531px;}
.yd6{bottom:323.418141px;}
.y102{bottom:325.656472px;}
.y136{bottom:326.879512px;}
.ycb{bottom:329.343310px;}
.y4c{bottom:332.277281px;}
.y1b{bottom:333.848694px;}
.y170{bottom:334.685531px;}
.yd5{bottom:340.674891px;}
.y135{bottom:340.751512px;}
.y101{bottom:342.913222px;}
.yca{bottom:346.936198px;}
.y16f{bottom:348.557531px;}
.y4b{bottom:349.534031px;}
.y6d{bottom:350.493303px;}
.y134{bottom:354.623512px;}
.yd4{bottom:357.931641px;}
.y100{bottom:360.169972px;}
.y99{bottom:361.300934px;}
.y16e{bottom:362.429531px;}
.yc9{bottom:364.529109px;}
.y4a{bottom:366.790781px;}
.y6c{bottom:367.750053px;}
.y133{bottom:368.495512px;}
.y1a{bottom:369.098694px;}
.y16d{bottom:376.301531px;}
.yff{bottom:377.426722px;}
.y98{bottom:378.557684px;}
.yc8{bottom:382.122020px;}
.y132{bottom:382.367512px;}
.y49{bottom:384.047531px;}
.y16c{bottom:390.173531px;}
.yfe{bottom:394.683472px;}
.y97{bottom:395.814434px;}
.y131{bottom:396.239512px;}
.yc7{bottom:399.714885px;}
.y48{bottom:401.304281px;}
.y6b{bottom:403.000031px;}
.y16b{bottom:404.045531px;}
.y130{bottom:410.111512px;}
.y96{bottom:413.071184px;}
.yc6{bottom:417.307658px;}
.y16a{bottom:417.917531px;}
.ye6{bottom:418.349832px;}
.y47{bottom:418.561031px;}
.y19{bottom:423.018444px;}
.y12f{bottom:423.983512px;}
.yfd{bottom:429.933472px;}
.y95{bottom:430.327934px;}
.y169{bottom:431.789531px;}
.yc5{bottom:434.900569px;}
.y46{bottom:435.817781px;}
.ye5{bottom:437.021850px;}
.y12e{bottom:437.855512px;}
.y6a{bottom:443.446031px;}
.y168{bottom:445.661531px;}
.y94{bottom:447.584684px;}
.ye4{bottom:450.353534px;}
.y12d{bottom:451.727512px;}
.yc4{bottom:452.493434px;}
.y45{bottom:453.074531px;}
.y18{bottom:457.517694px;}
.y167{bottom:459.533531px;}
.y69{bottom:460.702781px;}
.ye3{bottom:464.225534px;}
.y93{bottom:464.841434px;}
.y12c{bottom:465.599512px;}
.yc3{bottom:470.086345px;}
.y44{bottom:470.331281px;}
.y166{bottom:473.405531px;}
.y17{bottom:474.774444px;}
.y68{bottom:477.959531px;}
.ye2{bottom:478.097534px;}
.y12b{bottom:479.471512px;}
.y92{bottom:482.098184px;}
.y165{bottom:487.277531px;}
.y43{bottom:487.588031px;}
.yc2{bottom:487.678345px;}
.y16{bottom:492.031194px;}
.y12a{bottom:493.343512px;}
.y67{bottom:495.216281px;}
.y91{bottom:499.354934px;}
.y164{bottom:501.149531px;}
.yfc{bottom:503.883921px;}
.y42{bottom:504.844781px;}
.yc1{bottom:505.828354px;}
.y129{bottom:507.215512px;}
.y15{bottom:509.287944px;}
.y66{bottom:512.473031px;}
.y163{bottom:515.021531px;}
.y90{bottom:516.611684px;}
.y128{bottom:521.087512px;}
.yfb{bottom:521.547921px;}
.y41{bottom:522.101531px;}
.y14{bottom:526.544694px;}
.y162{bottom:528.893531px;}
.y65{bottom:529.729781px;}
.yba{bottom:532.594666px;}
.y8f{bottom:533.868434px;}
.y127{bottom:534.959512px;}
.yfa{bottom:539.139921px;}
.y40{bottom:539.358281px;}
.y161{bottom:542.765531px;}
.y13{bottom:543.801444px;}
.y64{bottom:546.986531px;}
.y126{bottom:548.831512px;}
.y8e{bottom:551.125184px;}
.yf9{bottom:553.011921px;}
.y3f{bottom:556.615031px;}
.y160{bottom:556.637531px;}
.y12{bottom:561.058194px;}
.y125{bottom:562.703512px;}
.y63{bottom:564.243281px;}
.y8d{bottom:568.381934px;}
.y15f{bottom:570.509531px;}
.yf8{bottom:570.603921px;}
.y3e{bottom:573.871781px;}
.y124{bottom:576.575512px;}
.y11{bottom:578.314944px;}
.y62{bottom:581.500031px;}
.yb9{bottom:583.167281px;}
.y15e{bottom:584.381531px;}
.yf7{bottom:584.475921px;}
.y8c{bottom:585.638684px;}
.y123{bottom:590.447512px;}
.y3d{bottom:591.128531px;}
.y10{bottom:595.571694px;}
.y15d{bottom:598.253531px;}
.yb8{bottom:600.424031px;}
.yf6{bottom:602.067921px;}
.y8b{bottom:602.895434px;}
.y122{bottom:604.319512px;}
.y3c{bottom:608.385281px;}
.y15c{bottom:612.125531px;}
.yf{bottom:612.828444px;}
.yf5{bottom:615.939921px;}
.y61{bottom:616.750031px;}
.yb7{bottom:617.680781px;}
.y121{bottom:618.191512px;}
.y8a{bottom:620.152184px;}
.y3b{bottom:625.642031px;}
.y15b{bottom:625.997531px;}
.ye{bottom:630.085194px;}
.y120{bottom:632.063512px;}
.yf4{bottom:633.531921px;}
.yb6{bottom:634.937531px;}
.y89{bottom:637.408934px;}
.y15a{bottom:639.869531px;}
.y3a{bottom:642.898781px;}
.y11f{bottom:645.935512px;}
.yd{bottom:647.341944px;}
.yf3{bottom:651.129471px;}
.y159{bottom:653.741531px;}
.y88{bottom:654.665684px;}
.y60{bottom:657.243281px;}
.y11e{bottom:659.807512px;}
.y39{bottom:660.155531px;}
.yc{bottom:664.598694px;}
.y158{bottom:667.613531px;}
.yb5{bottom:670.187531px;}
.y87{bottom:671.922434px;}
.y11d{bottom:673.679512px;}
.y5f{bottom:674.500031px;}
.y38{bottom:677.412281px;}
.y157{bottom:681.485531px;}
.yf2{bottom:682.593471px;}
.y11c{bottom:687.551512px;}
.y86{bottom:689.179184px;}
.y37{bottom:694.669031px;}
.y156{bottom:695.357531px;}
.yf1{bottom:700.186336px;}
.y11b{bottom:701.423512px;}
.y155{bottom:709.229531px;}
.y5e{bottom:709.750031px;}
.yb4{bottom:710.626781px;}
.y36{bottom:711.925781px;}
.yb{bottom:712.337702px;}
.y11a{bottom:715.295512px;}
.yf0{bottom:717.779246px;}
.y154{bottom:723.101531px;}
.y85{bottom:724.429184px;}
.ya{bottom:726.209702px;}
.yb3{bottom:727.883531px;}
.y119{bottom:729.167512px;}
.y35{bottom:729.182531px;}
.yef{bottom:735.372157px;}
.y153{bottom:736.973531px;}
.y118{bottom:743.039512px;}
.yb2{bottom:745.140281px;}
.y34{bottom:746.439281px;}
.y152{bottom:750.845531px;}
.yee{bottom:752.965068px;}
.y117{bottom:756.911512px;}
.yb1{bottom:762.397031px;}
.y33{bottom:763.696031px;}
.y9{bottom:763.974450px;}
.y151{bottom:764.717531px;}
.yed{bottom:770.557841px;}
.y116{bottom:770.783512px;}
.y150{bottom:778.589531px;}
.y84{bottom:779.653781px;}
.y32{bottom:780.952781px;}
.y8{bottom:781.231200px;}
.y115{bottom:784.655512px;}
.yec{bottom:788.150889px;}
.y14f{bottom:792.461531px;}
.y83{bottom:796.910531px;}
.y31{bottom:798.209531px;}
.y114{bottom:798.527512px;}
.yeb{bottom:805.743571px;}
.y14e{bottom:806.333531px;}
.y113{bottom:812.399512px;}
.y82{bottom:814.167281px;}
.y30{bottom:815.466281px;}
.y14d{bottom:820.205531px;}
.yea{bottom:823.336528px;}
.y7{bottom:823.663168px;}
.y112{bottom:826.271512px;}
.y81{bottom:831.424031px;}
.y2f{bottom:832.723031px;}
.y14c{bottom:834.077531px;}
.y111{bottom:840.143512px;}
.ye9{bottom:840.929393px;}
.y6{bottom:846.166168px;}
.y14b{bottom:847.949531px;}
.y80{bottom:848.680781px;}
.y2e{bottom:849.979781px;}
.y110{bottom:854.015512px;}
.ye8{bottom:858.521393px;}
.y14a{bottom:861.821531px;}
.y7f{bottom:865.937531px;}
.y2d{bottom:867.236531px;}
.y10f{bottom:867.887512px;}
.y149{bottom:875.693531px;}
.ye7{bottom:876.671356px;}
.y2c{bottom:884.493281px;}
.y148{bottom:889.565531px;}
.y5{bottom:899.785217px;}
.y10e{bottom:900.062531px;}
.y7e{bottom:901.187531px;}
.y2b{bottom:901.750031px;}
.ye1{bottom:903.437531px;}
.y3{bottom:926.117136px;}
.y29{bottom:939.109314px;}
.y2a{bottom:939.985314px;}
.y5d{bottom:939.989089px;}
.y2{bottom:939.989136px;}
.y5c{bottom:940.241089px;}
.he{height:31.180800px;}
.h2{height:33.840000px;}
.h3{height:42.048000px;}
.hd{height:44.544000px;}
.h5{height:46.704000px;}
.h10{height:49.104000px;}
.h23{height:50.362136px;}
.h1e{height:50.362228px;}
.h17{height:50.368805px;}
.h1f{height:50.368871px;}
.h18{height:50.380873px;}
.h22{height:50.635808px;}
.h20{height:50.636174px;}
.h1a{height:50.636357px;}
.h1d{height:50.636448px;}
.h1b{height:50.636540px;}
.h1c{height:50.636906px;}
.h21{height:50.637272px;}
.h19{height:50.640000px;}
.ha{height:52.896000px;}
.h12{height:53.549420px;}
.h16{height:53.557120px;}
.h11{height:53.564448px;}
.h15{height:53.569139px;}
.h13{height:53.569230px;}
.h14{height:53.569780px;}
.hf{height:53.640000px;}
.h4{height:54.862258px;}
.h9{height:56.373000px;}
.hb{height:58.311000px;}
.h7{height:61.622631px;}
.h8{height:61.649631px;}
.hc{height:65.274000px;}
.h6{height:69.108000px;}
.h24{height:106.128000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:70.157553px;}
.x6{left:71.220450px;}
.x7{left:72.368402px;}
.x4{left:74.529448px;}
.x18{left:79.145416px;}
.x8{left:87.165298px;}
.x5{left:91.421552px;}
.x1a{left:95.669553px;}
.xa{left:208.358253px;}
.xc{left:232.124405px;}
.xd{left:245.996405px;}
.x19{left:269.717416px;}
.xe{left:274.004405px;}
.xf{left:292.148405px;}
.x10{left:309.740405px;}
.x11{left:327.338246px;}
.x12{left:344.931157px;}
.x13{left:362.524045px;}
.x14{left:380.116796px;}
.x15{left:397.709706px;}
.x16{left:415.302617px;}
.x17{left:432.967482px;}
.xb{left:459.482253px;}
.x1{left:485.858414px;}
.x3{left:528.009430px;}
.x9{left:563.972122px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v4{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.666667pt;}
.v3{vertical-align:17.059243pt;}
.v1{vertical-align:20.266606pt;}
.v6{vertical-align:49.322667pt;}
.ls4f{letter-spacing:-2.602667pt;}
.ls54{letter-spacing:-1.920000pt;}
.ls3{letter-spacing:-1.773333pt;}
.ls39{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-1.266667pt;}
.ls3a{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.760000pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.253333pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000013pt;}
.lsc{letter-spacing:0.000016pt;}
.ls15{letter-spacing:0.000017pt;}
.lsd{letter-spacing:0.000020pt;}
.ls13{letter-spacing:0.000505pt;}
.ls28{letter-spacing:0.031502pt;}
.ls2e{letter-spacing:0.041099pt;}
.ls32{letter-spacing:0.041181pt;}
.ls2d{letter-spacing:0.043304pt;}
.ls30{letter-spacing:0.043326pt;}
.ls2c{letter-spacing:0.044321pt;}
.ls2a{letter-spacing:0.044875pt;}
.ls49{letter-spacing:0.046927pt;}
.ls50{letter-spacing:0.098119pt;}
.ls53{letter-spacing:0.563200pt;}
.ls48{letter-spacing:0.597321pt;}
.ls45{letter-spacing:0.597324pt;}
.ls4a{letter-spacing:0.597329pt;}
.ls41{letter-spacing:0.597333pt;}
.ls2{letter-spacing:0.709333pt;}
.lsb{letter-spacing:0.714400pt;}
.ls3d{letter-spacing:1.113600pt;}
.ls3e{letter-spacing:1.181848pt;}
.ls44{letter-spacing:1.450667pt;}
.ls52{letter-spacing:1.847517pt;}
.ls46{letter-spacing:2.180226pt;}
.ls43{letter-spacing:2.214400pt;}
.ls4b{letter-spacing:2.440589pt;}
.ls40{letter-spacing:2.815971pt;}
.ls0{letter-spacing:2.986667pt;}
.ls4d{letter-spacing:3.157323pt;}
.ls51{letter-spacing:3.208533pt;}
.ls3f{letter-spacing:3.639467pt;}
.ls3b{letter-spacing:3.839979pt;}
.ls4e{letter-spacing:3.950933pt;}
.ls47{letter-spacing:4.057600pt;}
.ls3c{letter-spacing:5.213834pt;}
.ls4c{letter-spacing:5.593575pt;}
.ls42{letter-spacing:6.314643pt;}
.ls27{letter-spacing:32.000000pt;}
.ls25{letter-spacing:32.469333pt;}
.ls26{letter-spacing:33.621333pt;}
.ls20{letter-spacing:66.810156pt;}
.ls29{letter-spacing:69.290667pt;}
.ls2b{letter-spacing:85.888000pt;}
.ls24{letter-spacing:90.767025pt;}
.lsf{letter-spacing:107.429304pt;}
.ls7{letter-spacing:123.187760pt;}
.ls1f{letter-spacing:131.535912pt;}
.ls2f{letter-spacing:135.893329pt;}
.ls11{letter-spacing:137.934993pt;}
.ls8{letter-spacing:138.121191pt;}
.lsa{letter-spacing:138.121354pt;}
.ls1e{letter-spacing:149.162667pt;}
.lse{letter-spacing:151.935994pt;}
.ls16{letter-spacing:158.336000pt;}
.ls35{letter-spacing:160.936947pt;}
.ls9{letter-spacing:163.080990pt;}
.ls12{letter-spacing:168.319995pt;}
.ls10{letter-spacing:173.098661pt;}
.ls14{letter-spacing:177.280000pt;}
.ls22{letter-spacing:190.867211pt;}
.ls31{letter-spacing:203.050667pt;}
.ls34{letter-spacing:219.540876pt;}
.ls33{letter-spacing:220.245328pt;}
.ls17{letter-spacing:220.799996pt;}
.ls21{letter-spacing:221.696000pt;}
.ls18{letter-spacing:237.397326pt;}
.ls1a{letter-spacing:285.013333pt;}
.ls23{letter-spacing:295.807991pt;}
.ls19{letter-spacing:309.333333pt;}
.ls1c{letter-spacing:352.170662pt;}
.ls1d{letter-spacing:369.365324pt;}
.ws9b{word-spacing:-42.666667pt;}
.ws6{word-spacing:-11.850667pt;}
.wse4{word-spacing:-11.264000pt;}
.ws70{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.488000pt;}
.ws4{word-spacing:-10.234667pt;}
.ws43{word-spacing:-10.080000pt;}
.ws10b{word-spacing:-10.026667pt;}
.ws5{word-spacing:-9.728000pt;}
.ws98{word-spacing:-8.874667pt;}
.ws108{word-spacing:-8.746667pt;}
.ws1{word-spacing:-8.362667pt;}
.wsbd{word-spacing:-8.192000pt;}
.wsee{word-spacing:-8.064000pt;}
.ws7{word-spacing:-7.466667pt;}
.ws3{word-spacing:-7.341600pt;}
.ws4d{word-spacing:-6.333333pt;}
.ws84{word-spacing:-5.333333pt;}
.wsb{word-spacing:-1.824000pt;}
.ws9{word-spacing:-1.680000pt;}
.ws20{word-spacing:-0.709333pt;}
.ws5d{word-spacing:-0.658667pt;}
.wse3{word-spacing:-0.597333pt;}
.wsa5{word-spacing:-0.557333pt;}
.ws5b{word-spacing:-0.506667pt;}
.ws37{word-spacing:-0.456000pt;}
.wsa{word-spacing:-0.426667pt;}
.ws28{word-spacing:-0.405333pt;}
.wsfb{word-spacing:-0.384000pt;}
.wsa4{word-spacing:-0.354667pt;}
.wsab{word-spacing:-0.341333pt;}
.ws5c{word-spacing:-0.304000pt;}
.ws11b{word-spacing:-0.256000pt;}
.ws54{word-spacing:-0.253333pt;}
.ws104{word-spacing:-0.213333pt;}
.ws47{word-spacing:-0.202667pt;}
.ws11e{word-spacing:-0.170667pt;}
.ws32{word-spacing:-0.152000pt;}
.ws101{word-spacing:-0.128000pt;}
.ws29{word-spacing:-0.050667pt;}
.ws0{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.wsce{word-spacing:0.042667pt;}
.ws2a{word-spacing:0.152000pt;}
.ws95{word-spacing:0.170667pt;}
.wsf{word-spacing:0.202667pt;}
.wse0{word-spacing:0.213333pt;}
.wsb6{word-spacing:0.253333pt;}
.ws106{word-spacing:0.298667pt;}
.ws115{word-spacing:0.341333pt;}
.wsd1{word-spacing:0.384000pt;}
.ws67{word-spacing:0.405333pt;}
.ws64{word-spacing:0.456000pt;}
.ws11a{word-spacing:0.469333pt;}
.wsf7{word-spacing:0.512000pt;}
.ws119{word-spacing:0.554667pt;}
.ws39{word-spacing:0.557333pt;}
.ws11d{word-spacing:0.597333pt;}
.wsa9{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.658667pt;}
.ws4f{word-spacing:0.709333pt;}
.ws21{word-spacing:0.760000pt;}
.wsd2{word-spacing:0.768000pt;}
.ws2b{word-spacing:0.810667pt;}
.ws117{word-spacing:0.853333pt;}
.wsdc{word-spacing:0.896000pt;}
.wse{word-spacing:0.912000pt;}
.wsf8{word-spacing:0.938667pt;}
.ws42{word-spacing:0.962667pt;}
.wsd8{word-spacing:0.981333pt;}
.ws4c{word-spacing:1.013333pt;}
.ws2d{word-spacing:1.064000pt;}
.ws11c{word-spacing:1.066667pt;}
.wse8{word-spacing:1.109333pt;}
.ws93{word-spacing:1.114667pt;}
.wsaa{word-spacing:1.152000pt;}
.ws1f{word-spacing:1.165333pt;}
.ws59{word-spacing:1.216000pt;}
.ws38{word-spacing:1.266667pt;}
.wsd5{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.368000pt;}
.ws22{word-spacing:1.418667pt;}
.ws3d{word-spacing:1.469333pt;}
.ws3c{word-spacing:1.520000pt;}
.ws102{word-spacing:1.536000pt;}
.ws13{word-spacing:1.570667pt;}
.wscc{word-spacing:1.578667pt;}
.wsa3{word-spacing:1.621333pt;}
.ws111{word-spacing:1.664000pt;}
.ws1b{word-spacing:1.672000pt;}
.wsf4{word-spacing:1.706667pt;}
.ws57{word-spacing:1.722667pt;}
.ws56{word-spacing:1.773333pt;}
.ws10f{word-spacing:1.792000pt;}
.ws10{word-spacing:1.824000pt;}
.ws10c{word-spacing:1.834667pt;}
.wsb8{word-spacing:1.874667pt;}
.wsd3{word-spacing:1.877333pt;}
.wsf3{word-spacing:1.920000pt;}
.wsb9{word-spacing:1.925333pt;}
.wsbf{word-spacing:1.976000pt;}
.ws113{word-spacing:2.005333pt;}
.wsba{word-spacing:2.026667pt;}
.wsaf{word-spacing:2.077333pt;}
.wsc9{word-spacing:2.176000pt;}
.wse9{word-spacing:2.218667pt;}
.ws48{word-spacing:2.229333pt;}
.wscd{word-spacing:2.261333pt;}
.ws5f{word-spacing:2.330667pt;}
.wsbb{word-spacing:2.381333pt;}
.wsde{word-spacing:2.389333pt;}
.ws69{word-spacing:2.432000pt;}
.ws65{word-spacing:2.482667pt;}
.ws24{word-spacing:2.533333pt;}
.wscf{word-spacing:2.560000pt;}
.ws3f{word-spacing:2.584000pt;}
.ws10a{word-spacing:2.602667pt;}
.ws109{word-spacing:2.645333pt;}
.ws30{word-spacing:2.685333pt;}
.wsd6{word-spacing:2.730667pt;}
.ws16{word-spacing:2.736000pt;}
.wsdf{word-spacing:2.773333pt;}
.ws41{word-spacing:2.837333pt;}
.wsc{word-spacing:2.888000pt;}
.wsd0{word-spacing:2.901333pt;}
.ws4a{word-spacing:2.938667pt;}
.ws112{word-spacing:2.944000pt;}
.ws107{word-spacing:2.986667pt;}
.ws5a{word-spacing:3.040000pt;}
.wsc4{word-spacing:3.090667pt;}
.ws105{word-spacing:3.114667pt;}
.wsa7{word-spacing:3.141333pt;}
.ws46{word-spacing:3.192000pt;}
.wsb0{word-spacing:3.242667pt;}
.ws100{word-spacing:3.285333pt;}
.ws6a{word-spacing:3.293333pt;}
.ws50{word-spacing:3.344000pt;}
.wse1{word-spacing:3.370667pt;}
.ws3a{word-spacing:3.394667pt;}
.wsd7{word-spacing:3.413333pt;}
.wsf6{word-spacing:3.456000pt;}
.wsae{word-spacing:3.496000pt;}
.ws116{word-spacing:3.541333pt;}
.ws2e{word-spacing:3.546667pt;}
.ws5e{word-spacing:3.597333pt;}
.wsdd{word-spacing:3.669333pt;}
.wsbe{word-spacing:3.749333pt;}
.ws118{word-spacing:3.797333pt;}
.wsc2{word-spacing:3.901333pt;}
.ws51{word-spacing:3.952000pt;}
.ws96{word-spacing:3.968000pt;}
.ws3e{word-spacing:4.002667pt;}
.wsf5{word-spacing:4.010667pt;}
.wsfa{word-spacing:4.096000pt;}
.ws63{word-spacing:4.104000pt;}
.wsec{word-spacing:4.138667pt;}
.ws15{word-spacing:4.154667pt;}
.ws31{word-spacing:4.256000pt;}
.wsca{word-spacing:4.266667pt;}
.ws4b{word-spacing:4.306667pt;}
.wsb1{word-spacing:4.408000pt;}
.ws19{word-spacing:4.458667pt;}
.ws49{word-spacing:4.560000pt;}
.wsdb{word-spacing:4.608000pt;}
.ws44{word-spacing:4.610667pt;}
.wscb{word-spacing:4.650667pt;}
.wsfe{word-spacing:4.693333pt;}
.wsb4{word-spacing:4.712000pt;}
.wsa6{word-spacing:4.813333pt;}
.ws10d{word-spacing:4.821333pt;}
.wsb2{word-spacing:4.914667pt;}
.wsff{word-spacing:4.949333pt;}
.ws8b{word-spacing:4.965333pt;}
.ws8c{word-spacing:5.016000pt;}
.wsc3{word-spacing:5.066667pt;}
.wsa8{word-spacing:5.162667pt;}
.wsd4{word-spacing:5.248000pt;}
.ws62{word-spacing:5.269333pt;}
.wsf9{word-spacing:5.290667pt;}
.ws60{word-spacing:5.370667pt;}
.ws97{word-spacing:5.376000pt;}
.ws11{word-spacing:5.421333pt;}
.ws14{word-spacing:5.472000pt;}
.wsda{word-spacing:5.546667pt;}
.ws18{word-spacing:5.573333pt;}
.ws26{word-spacing:5.624000pt;}
.wsef{word-spacing:5.632000pt;}
.wsb3{word-spacing:5.674667pt;}
.wse2{word-spacing:5.717333pt;}
.ws61{word-spacing:5.725333pt;}
.ws99{word-spacing:5.760000pt;}
.wsb7{word-spacing:5.776000pt;}
.ws103{word-spacing:5.802667pt;}
.ws27{word-spacing:5.877333pt;}
.wsfd{word-spacing:5.930667pt;}
.wsd{word-spacing:5.978667pt;}
.wsd9{word-spacing:6.016000pt;}
.ws8e{word-spacing:6.029333pt;}
.wsfc{word-spacing:6.101333pt;}
.ws94{word-spacing:6.130667pt;}
.wsf2{word-spacing:6.144000pt;}
.ws2f{word-spacing:6.181333pt;}
.ws66{word-spacing:6.232000pt;}
.ws52{word-spacing:6.282667pt;}
.wsc8{word-spacing:6.314667pt;}
.ws6b{word-spacing:6.434667pt;}
.ws12{word-spacing:6.485333pt;}
.ws10e{word-spacing:6.528000pt;}
.ws1c{word-spacing:6.536000pt;}
.wsc6{word-spacing:6.570667pt;}
.ws35{word-spacing:6.586667pt;}
.ws2c{word-spacing:6.688000pt;}
.ws3b{word-spacing:6.789333pt;}
.wsac{word-spacing:6.890667pt;}
.ws4e{word-spacing:6.941333pt;}
.ws33{word-spacing:6.992000pt;}
.ws68{word-spacing:7.144000pt;}
.ws110{word-spacing:7.168000pt;}
.ws8d{word-spacing:7.245333pt;}
.ws90{word-spacing:7.346667pt;}
.wse5{word-spacing:7.552000pt;}
.wsf0{word-spacing:7.637333pt;}
.ws91{word-spacing:7.650667pt;}
.ws34{word-spacing:7.752000pt;}
.wsc5{word-spacing:7.802667pt;}
.ws40{word-spacing:7.853333pt;}
.wsbc{word-spacing:8.157333pt;}
.wsf1{word-spacing:8.362667pt;}
.wsc1{word-spacing:8.461333pt;}
.ws8f{word-spacing:8.512000pt;}
.wsc7{word-spacing:8.533333pt;}
.ws25{word-spacing:8.968000pt;}
.ws17{word-spacing:9.120000pt;}
.ws36{word-spacing:9.170667pt;}
.ws92{word-spacing:9.424000pt;}
.wsea{word-spacing:9.472000pt;}
.wsc0{word-spacing:9.778667pt;}
.wsad{word-spacing:10.032000pt;}
.ws53{word-spacing:10.082667pt;}
.ws45{word-spacing:10.386667pt;}
.wsa2{word-spacing:10.741333pt;}
.wse6{word-spacing:10.752000pt;}
.ws114{word-spacing:11.861333pt;}
.ws58{word-spacing:12.008000pt;}
.ws55{word-spacing:12.160000pt;}
.wseb{word-spacing:12.245333pt;}
.wsb5{word-spacing:13.882667pt;}
.ws23{word-spacing:16.213333pt;}
.wse7{word-spacing:16.554667pt;}
.wsed{word-spacing:44.074667pt;}
.ws1d{word-spacing:64.938667pt;}
.ws86{word-spacing:85.162667pt;}
.ws88{word-spacing:87.935994pt;}
.ws73{word-spacing:95.880632pt;}
.ws7a{word-spacing:100.787207pt;}
.ws77{word-spacing:100.787695pt;}
.ws78{word-spacing:100.787760pt;}
.ws8a{word-spacing:109.269328pt;}
.ws7c{word-spacing:110.813737pt;}
.ws7e{word-spacing:110.813802pt;}
.ws82{word-spacing:110.813965pt;}
.ws9d{word-spacing:115.114667pt;}
.ws83{word-spacing:115.720540pt;}
.ws75{word-spacing:115.721029pt;}
.ws71{word-spacing:116.680599pt;}
.ws74{word-spacing:121.587663pt;}
.ws7f{word-spacing:121.587826pt;}
.ws9f{word-spacing:133.376000pt;}
.ws76{word-spacing:137.472000pt;}
.ws6f{word-spacing:140.680436pt;}
.ws7d{word-spacing:140.680599pt;}
.ws72{word-spacing:140.680664pt;}
.ws6d{word-spacing:140.681006pt;}
.ws79{word-spacing:142.378662pt;}
.ws7b{word-spacing:145.587728pt;}
.wsa0{word-spacing:149.546659pt;}
.ws80{word-spacing:155.613932pt;}
.ws81{word-spacing:155.614421pt;}
.ws9c{word-spacing:157.696000pt;}
.ws6e{word-spacing:162.013770pt;}
.ws9e{word-spacing:168.576000pt;}
.ws87{word-spacing:192.170667pt;}
.ws6c{word-spacing:235.605326pt;}
.wsa1{word-spacing:566.314667pt;}
.ws9a{word-spacing:576.384000pt;}
.ws85{word-spacing:727.893299pt;}
.ws89{word-spacing:875.050667pt;}
._3e{margin-left:-17.669357pt;}
._3b{margin-left:-16.770667pt;}
._26{margin-left:-15.605344pt;}
._3{margin-left:-13.629333pt;}
._25{margin-left:-12.280000pt;}
._d{margin-left:-8.056000pt;}
._27{margin-left:-6.333333pt;}
._2a{margin-left:-5.248000pt;}
._4{margin-left:-3.672533pt;}
._2{margin-left:-2.634667pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.139200pt;}
._9{width:2.057067pt;}
._b{width:3.349067pt;}
._a{width:4.742400pt;}
._5{width:6.497600pt;}
._28{width:9.038667pt;}
._c{width:11.889579pt;}
._e{width:13.254400pt;}
._29{width:14.510388pt;}
._3d{width:16.142667pt;}
._3c{width:17.246667pt;}
._6{width:19.602667pt;}
._49{width:34.431994pt;}
._48{width:35.712000pt;}
._7{width:50.005329pt;}
._2c{width:55.935994pt;}
._30{width:59.411077pt;}
._40{width:83.195725pt;}
._43{width:85.888000pt;}
._2e{width:95.829333pt;}
._2b{width:98.598913pt;}
._13{width:108.245333pt;}
._34{width:119.935994pt;}
._21{width:126.592000pt;}
._44{width:128.639930pt;}
._17{width:130.261333pt;}
._36{width:133.077333pt;}
._23{width:138.136007pt;}
._15{width:140.245333pt;}
._16{width:153.045326pt;}
._18{width:159.581355pt;}
._24{width:160.981333pt;}
._2f{width:162.944000pt;}
._41{width:168.850657pt;}
._22{width:172.245333pt;}
._1b{width:178.005333pt;}
._3f{width:179.172244pt;}
._1d{width:183.210667pt;}
._19{width:190.933333pt;}
._1a{width:192.938660pt;}
._f{width:201.472000pt;}
._31{width:202.579689pt;}
._1f{width:204.273265pt;}
._11{width:206.378662pt;}
._1c{width:207.402667pt;}
._42{width:221.382414pt;}
._46{width:227.712000pt;}
._38{width:229.162667pt;}
._10{width:231.338667pt;}
._35{width:239.232000pt;}
._37{width:248.661333pt;}
._1e{width:250.709333pt;}
._20{width:267.946667pt;}
._39{width:291.968000pt;}
._2d{width:293.566966pt;}
._14{width:305.578667pt;}
._3a{width:308.938667pt;}
._32{width:341.632000pt;}
._45{width:374.784000pt;}
._12{width:420.522667pt;}
._47{width:447.573320pt;}
._8{width:620.970667pt;}
._33{width:683.520000pt;}
.fs6{font-size:29.866667pt;}
.fs4{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.055333pt;}
.y7d{bottom:30.208800pt;}
.y4{bottom:30.208933pt;}
.ya9{bottom:65.102795pt;}
.ya8{bottom:65.113463pt;}
.yae{bottom:65.124139pt;}
.yaa{bottom:65.128368pt;}
.yac{bottom:65.129476pt;}
.yaf{bottom:65.130656pt;}
.yad{bottom:65.131714pt;}
.yab{bottom:65.132660pt;}
.ya5{bottom:65.133331pt;}
.y28{bottom:65.135998pt;}
.yb0{bottom:65.138265pt;}
.yc0{bottom:65.264665pt;}
.y5b{bottom:65.267583pt;}
.y7c{bottom:66.132936pt;}
.ye0{bottom:68.786125pt;}
.y10d{bottom:75.541859pt;}
.y182{bottom:75.546249pt;}
.y5a{bottom:80.606916pt;}
.y147{bottom:80.938233pt;}
.y7b{bottom:81.472270pt;}
.y27{bottom:81.733332pt;}
.ybf{bottom:81.862000pt;}
.ydf{bottom:84.125458pt;}
.y184{bottom:86.127583pt;}
.y10c{bottom:87.872525pt;}
.y181{bottom:87.876916pt;}
.y146{bottom:93.268900pt;}
.ybe{bottom:93.716130pt;}
.y59{bottom:95.946249pt;}
.y7a{bottom:96.811603pt;}
.y183{bottom:98.458249pt;}
.yde{bottom:99.464792pt;}
.y10b{bottom:100.203192pt;}
.y180{bottom:100.207583pt;}
.y26{bottom:100.775330pt;}
.ya4{bottom:102.764542pt;}
.y145{bottom:105.599566pt;}
.ybd{bottom:106.046797pt;}
.y58{bottom:111.285583pt;}
.y79{bottom:112.150936pt;}
.y10a{bottom:112.533859pt;}
.y17f{bottom:112.538249pt;}
.ydd{bottom:114.804125pt;}
.y144{bottom:117.930233pt;}
.ya3{bottom:118.103876pt;}
.ybc{bottom:118.377463pt;}
.y25{bottom:119.817332pt;}
.y109{bottom:124.864525pt;}
.y17e{bottom:124.868916pt;}
.y57{bottom:126.624916pt;}
.y78{bottom:127.490270pt;}
.ydc{bottom:130.143458pt;}
.y143{bottom:130.260900pt;}
.ybb{bottom:130.708130pt;}
.ya2{bottom:133.443209pt;}
.y108{bottom:137.195192pt;}
.y17d{bottom:137.199583pt;}
.y24{bottom:140.686667pt;}
.y56{bottom:141.964249pt;}
.y142{bottom:142.591566pt;}
.y77{bottom:142.829603pt;}
.ydb{bottom:145.482792pt;}
.ya1{bottom:148.782542pt;}
.y107{bottom:149.525859pt;}
.y17c{bottom:149.530249pt;}
.y23{bottom:153.017333pt;}
.y141{bottom:154.922233pt;}
.yd3{bottom:155.250533pt;}
.y55{bottom:157.303583pt;}
.y76{bottom:158.168936pt;}
.yda{bottom:160.822125pt;}
.y106{bottom:161.856525pt;}
.y17b{bottom:161.860916pt;}
.ya0{bottom:164.121876pt;}
.y140{bottom:167.252900pt;}
.yd2{bottom:170.951867pt;}
.y54{bottom:172.642916pt;}
.y75{bottom:173.508270pt;}
.y17a{bottom:174.191583pt;}
.yd9{bottom:176.161458pt;}
.y9f{bottom:179.461209pt;}
.y13f{bottom:179.583566pt;}
.y179{bottom:186.522249pt;}
.yd1{bottom:186.589200pt;}
.y53{bottom:187.982249pt;}
.y74{bottom:188.847603pt;}
.y22{bottom:189.379061pt;}
.y105{bottom:189.525859pt;}
.y13e{bottom:191.914233pt;}
.y9e{bottom:194.800542pt;}
.ya6{bottom:195.673462pt;}
.y178{bottom:198.852916pt;}
.yd0{bottom:202.226533pt;}
.y52{bottom:203.321583pt;}
.y73{bottom:204.186936pt;}
.y13d{bottom:204.244900pt;}
.y21{bottom:204.718395pt;}
.yd8{bottom:207.494792pt;}
.y9d{bottom:210.139876pt;}
.y177{bottom:211.183583pt;}
.y13c{bottom:216.575566pt;}
.y104{bottom:217.192525pt;}
.ycf{bottom:217.863867pt;}
.y51{bottom:218.660916pt;}
.y72{bottom:219.526270pt;}
.y20{bottom:220.057728pt;}
.y176{bottom:223.514249pt;}
.y9c{bottom:225.479209pt;}
.y13b{bottom:228.906233pt;}
.yce{bottom:233.501200pt;}
.y50{bottom:234.000249pt;}
.y71{bottom:234.865603pt;}
.y1f{bottom:235.397061pt;}
.y175{bottom:235.844916pt;}
.y9b{bottom:240.818542pt;}
.y13a{bottom:241.236900pt;}
.y103{bottom:246.496399pt;}
.y174{bottom:248.175583pt;}
.ycd{bottom:249.143466pt;}
.y4f{bottom:249.339583pt;}
.y70{bottom:250.204936pt;}
.y1e{bottom:250.736395pt;}
.y139{bottom:253.567566pt;}
.y173{bottom:260.506249pt;}
.y4e{bottom:264.678916pt;}
.y6f{bottom:265.544270pt;}
.y138{bottom:265.898233pt;}
.y1d{bottom:266.075728pt;}
.yd7{bottom:272.143458pt;}
.y9a{bottom:272.151876pt;}
.y172{bottom:272.836916pt;}
.ya7{bottom:275.172129pt;}
.ycc{bottom:277.111466pt;}
.y137{bottom:278.228900pt;}
.y4d{bottom:280.018249pt;}
.y6e{bottom:280.883603pt;}
.y1c{bottom:281.415061pt;}
.y171{bottom:285.167583pt;}
.yd6{bottom:287.482792pt;}
.y102{bottom:289.472419pt;}
.y136{bottom:290.559566pt;}
.ycb{bottom:292.749609pt;}
.y4c{bottom:295.357583pt;}
.y1b{bottom:296.754395pt;}
.y170{bottom:297.498249pt;}
.yd5{bottom:302.822125pt;}
.y135{bottom:302.890233pt;}
.y101{bottom:304.811753pt;}
.yca{bottom:308.387732pt;}
.y16f{bottom:309.828916pt;}
.y4b{bottom:310.696916pt;}
.y6d{bottom:311.549603pt;}
.y134{bottom:315.220900pt;}
.yd4{bottom:318.161458pt;}
.y100{bottom:320.151086pt;}
.y99{bottom:321.156386pt;}
.y16e{bottom:322.159583pt;}
.yc9{bottom:324.025875pt;}
.y4a{bottom:326.036249pt;}
.y6c{bottom:326.888936pt;}
.y133{bottom:327.551566pt;}
.y1a{bottom:328.087728pt;}
.y16d{bottom:334.490249pt;}
.yff{bottom:335.490419pt;}
.y98{bottom:336.495719pt;}
.yc8{bottom:339.664018pt;}
.y132{bottom:339.882233pt;}
.y49{bottom:341.375583pt;}
.y16c{bottom:346.820916pt;}
.yfe{bottom:350.829753pt;}
.y97{bottom:351.835052pt;}
.y131{bottom:352.212900pt;}
.yc7{bottom:355.302120pt;}
.y48{bottom:356.714916pt;}
.y6b{bottom:358.222249pt;}
.y16b{bottom:359.151583pt;}
.y130{bottom:364.543566pt;}
.y96{bottom:367.174386pt;}
.yc6{bottom:370.940141pt;}
.y16a{bottom:371.482249pt;}
.ye6{bottom:371.866518pt;}
.y47{bottom:372.054249pt;}
.y19{bottom:376.016395pt;}
.y12f{bottom:376.874233pt;}
.yfd{bottom:382.163086pt;}
.y95{bottom:382.513719pt;}
.y169{bottom:383.812916pt;}
.yc5{bottom:386.578284pt;}
.y46{bottom:387.393583pt;}
.ye5{bottom:388.463867pt;}
.y12e{bottom:389.204900pt;}
.y6a{bottom:394.174249pt;}
.y168{bottom:396.143583pt;}
.y94{bottom:397.853052pt;}
.ye4{bottom:400.314253pt;}
.y12d{bottom:401.535566pt;}
.yc4{bottom:402.216386pt;}
.y45{bottom:402.732916pt;}
.y18{bottom:406.682395pt;}
.y167{bottom:408.474249pt;}
.y69{bottom:409.513583pt;}
.ye3{bottom:412.644919pt;}
.y93{bottom:413.192386pt;}
.y12c{bottom:413.866233pt;}
.yc3{bottom:417.854529pt;}
.y44{bottom:418.072249pt;}
.y166{bottom:420.804916pt;}
.y17{bottom:422.021728pt;}
.y68{bottom:424.852916pt;}
.ye2{bottom:424.975586pt;}
.y12b{bottom:426.196900pt;}
.y92{bottom:428.531719pt;}
.y165{bottom:433.135583pt;}
.y43{bottom:433.411583pt;}
.yc2{bottom:433.491862pt;}
.y16{bottom:437.361061pt;}
.y12a{bottom:438.527566pt;}
.y67{bottom:440.192249pt;}
.y91{bottom:443.871052pt;}
.y164{bottom:445.466249pt;}
.yfc{bottom:447.896819pt;}
.y42{bottom:448.750916pt;}
.yc1{bottom:449.625203pt;}
.y129{bottom:450.858233pt;}
.y15{bottom:452.700395pt;}
.y66{bottom:455.531583pt;}
.y163{bottom:457.796916pt;}
.y90{bottom:459.210386pt;}
.y128{bottom:463.188900pt;}
.yfb{bottom:463.598152pt;}
.y41{bottom:464.090249pt;}
.y14{bottom:468.039728pt;}
.y162{bottom:470.127583pt;}
.y65{bottom:470.870916pt;}
.yba{bottom:473.417480pt;}
.y8f{bottom:474.549719pt;}
.y127{bottom:475.519566pt;}
.yfa{bottom:479.235486pt;}
.y40{bottom:479.429583pt;}
.y161{bottom:482.458249pt;}
.y13{bottom:483.379061pt;}
.y64{bottom:486.210249pt;}
.y126{bottom:487.850233pt;}
.y8e{bottom:489.889052pt;}
.yf9{bottom:491.566152pt;}
.y3f{bottom:494.768916pt;}
.y160{bottom:494.788916pt;}
.y12{bottom:498.718395pt;}
.y125{bottom:500.180900pt;}
.y63{bottom:501.549583pt;}
.y8d{bottom:505.228386pt;}
.y15f{bottom:507.119583pt;}
.yf8{bottom:507.203486pt;}
.y3e{bottom:510.108249pt;}
.y124{bottom:512.511566pt;}
.y11{bottom:514.057728pt;}
.y62{bottom:516.888916pt;}
.yb9{bottom:518.370916pt;}
.y15e{bottom:519.450249pt;}
.yf7{bottom:519.534152pt;}
.y8c{bottom:520.567719pt;}
.y123{bottom:524.842233pt;}
.y3d{bottom:525.447583pt;}
.y10{bottom:529.397061pt;}
.y15d{bottom:531.780916pt;}
.yb8{bottom:533.710249pt;}
.yf6{bottom:535.171486pt;}
.y8b{bottom:535.907052pt;}
.y122{bottom:537.172900pt;}
.y3c{bottom:540.786916pt;}
.y15c{bottom:544.111583pt;}
.yf{bottom:544.736395pt;}
.yf5{bottom:547.502152pt;}
.y61{bottom:548.222249pt;}
.yb7{bottom:549.049583pt;}
.y121{bottom:549.503566pt;}
.y8a{bottom:551.246386pt;}
.y3b{bottom:556.126249pt;}
.y15b{bottom:556.442249pt;}
.ye{bottom:560.075728pt;}
.y120{bottom:561.834233pt;}
.yf4{bottom:563.139486pt;}
.yb6{bottom:564.388916pt;}
.y89{bottom:566.585719pt;}
.y15a{bottom:568.772916pt;}
.y3a{bottom:571.465583pt;}
.y11f{bottom:574.164900pt;}
.yd{bottom:575.415061pt;}
.yf3{bottom:578.781752pt;}
.y159{bottom:581.103583pt;}
.y88{bottom:581.925052pt;}
.y60{bottom:584.216249pt;}
.y11e{bottom:586.495566pt;}
.y39{bottom:586.804916pt;}
.yc{bottom:590.754395pt;}
.y158{bottom:593.434249pt;}
.yb5{bottom:595.722249pt;}
.y87{bottom:597.264386pt;}
.y11d{bottom:598.826233pt;}
.y5f{bottom:599.555583pt;}
.y38{bottom:602.144249pt;}
.y157{bottom:605.764916pt;}
.yf2{bottom:606.749752pt;}
.y11c{bottom:611.156900pt;}
.y86{bottom:612.603719pt;}
.y37{bottom:617.483583pt;}
.y156{bottom:618.095583pt;}
.yf1{bottom:622.387854pt;}
.y11b{bottom:623.487566pt;}
.y155{bottom:630.426249pt;}
.y5e{bottom:630.888916pt;}
.yb4{bottom:631.668249pt;}
.y36{bottom:632.822916pt;}
.yb{bottom:633.189068pt;}
.y11a{bottom:635.818233pt;}
.yf0{bottom:638.025997pt;}
.y154{bottom:642.756916pt;}
.y85{bottom:643.937052pt;}
.ya{bottom:645.519735pt;}
.yb3{bottom:647.007583pt;}
.y119{bottom:648.148900pt;}
.y35{bottom:648.162249pt;}
.yef{bottom:653.664140pt;}
.y153{bottom:655.087583pt;}
.y118{bottom:660.479566pt;}
.yb2{bottom:662.346916pt;}
.y34{bottom:663.501583pt;}
.y152{bottom:667.418249pt;}
.yee{bottom:669.302283pt;}
.y117{bottom:672.810233pt;}
.yb1{bottom:677.686249pt;}
.y33{bottom:678.840916pt;}
.y9{bottom:679.088400pt;}
.y151{bottom:679.748916pt;}
.yed{bottom:684.940303pt;}
.y116{bottom:685.140900pt;}
.y150{bottom:692.079583pt;}
.y84{bottom:693.025583pt;}
.y32{bottom:694.180249pt;}
.y8{bottom:694.427733pt;}
.y115{bottom:697.471566pt;}
.yec{bottom:700.578568pt;}
.y14f{bottom:704.410249pt;}
.y83{bottom:708.364916pt;}
.y31{bottom:709.519583pt;}
.y114{bottom:709.802233pt;}
.yeb{bottom:716.216508pt;}
.y14e{bottom:716.740916pt;}
.y113{bottom:722.132900pt;}
.y82{bottom:723.704249pt;}
.y30{bottom:724.858916pt;}
.y14d{bottom:729.071583pt;}
.yea{bottom:731.854691pt;}
.y7{bottom:732.145038pt;}
.y112{bottom:734.463566pt;}
.y81{bottom:739.043583pt;}
.y2f{bottom:740.198249pt;}
.y14c{bottom:741.402249pt;}
.y111{bottom:746.794233pt;}
.ye9{bottom:747.492794pt;}
.y6{bottom:752.147705pt;}
.y14b{bottom:753.732916pt;}
.y80{bottom:754.382916pt;}
.y2e{bottom:755.537583pt;}
.y110{bottom:759.124900pt;}
.ye8{bottom:763.130127pt;}
.y14a{bottom:766.063583pt;}
.y7f{bottom:769.722249pt;}
.y2d{bottom:770.876916pt;}
.y10f{bottom:771.455566pt;}
.y149{bottom:778.394249pt;}
.ye7{bottom:779.263428pt;}
.y2c{bottom:786.216249pt;}
.y148{bottom:790.724916pt;}
.y5{bottom:799.809082pt;}
.y10e{bottom:800.055583pt;}
.y7e{bottom:801.055583pt;}
.y2b{bottom:801.555583pt;}
.ye1{bottom:803.055583pt;}
.y3{bottom:823.215232pt;}
.y29{bottom:834.763835pt;}
.y2a{bottom:835.542501pt;}
.y5d{bottom:835.545857pt;}
.y2{bottom:835.545898pt;}
.y5c{bottom:835.769857pt;}
.he{height:27.716267pt;}
.h2{height:30.080000pt;}
.h3{height:37.376000pt;}
.hd{height:39.594667pt;}
.h5{height:41.514667pt;}
.h10{height:43.648000pt;}
.h23{height:44.766343pt;}
.h1e{height:44.766425pt;}
.h17{height:44.772271pt;}
.h1f{height:44.772330pt;}
.h18{height:44.782998pt;}
.h22{height:45.009607pt;}
.h20{height:45.009932pt;}
.h1a{height:45.010095pt;}
.h1d{height:45.010176pt;}
.h1b{height:45.010258pt;}
.h1c{height:45.010583pt;}
.h21{height:45.010909pt;}
.h19{height:45.013333pt;}
.ha{height:47.018667pt;}
.h12{height:47.599484pt;}
.h16{height:47.606329pt;}
.h11{height:47.612843pt;}
.h15{height:47.617012pt;}
.h13{height:47.617093pt;}
.h14{height:47.617582pt;}
.hf{height:47.680000pt;}
.h4{height:48.766452pt;}
.h9{height:50.109333pt;}
.hb{height:51.832000pt;}
.h7{height:54.775672pt;}
.h8{height:54.799672pt;}
.hc{height:58.021333pt;}
.h6{height:61.429333pt;}
.h24{height:94.336000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:62.362269pt;}
.x6{left:63.307067pt;}
.x7{left:64.327469pt;}
.x4{left:66.248398pt;}
.x18{left:70.351481pt;}
.x8{left:77.480265pt;}
.x5{left:81.263601pt;}
.x1a{left:85.039602pt;}
.xa{left:185.207336pt;}
.xc{left:206.332804pt;}
.xd{left:218.663471pt;}
.x19{left:239.748814pt;}
.xe{left:243.559471pt;}
.xf{left:259.687471pt;}
.x10{left:275.324804pt;}
.x11{left:290.967330pt;}
.x12{left:306.605473pt;}
.x13{left:322.243596pt;}
.x14{left:337.881596pt;}
.x15{left:353.519739pt;}
.x16{left:369.157882pt;}
.x17{left:384.859984pt;}
.xb{left:408.428670pt;}
.x1{left:431.874146pt;}
.x3{left:469.341715pt;}
.x9{left:501.308553pt;}
}




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