
    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_0955876d9d8de47d225e900a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_4b71018b27214868771cf508.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_bfb6cfc8506f0bc3dccacd5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_53ecaf1427a1e70b6f16224a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_7ea73051e6ef686dc191c0f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_44a611313deacb5a176a947b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882812;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_03089c2ca7223fea63c29ea4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_2141c7c65e1dfef7b3d51a50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.812012;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_8c1026d6a7c549811c182bcf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls60{letter-spacing:-1.656000px;}
.ls10{letter-spacing:-1.512000px;}
.ls21{letter-spacing:-1.368000px;}
.ls22{letter-spacing:-1.296000px;}
.ls46{letter-spacing:-1.224000px;}
.ls4d{letter-spacing:-1.080000px;}
.ls8d{letter-spacing:-1.008000px;}
.ls34{letter-spacing:-0.936000px;}
.ls5a{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.792000px;}
.ls6b{letter-spacing:-0.776880px;}
.ls23{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.576000px;}
.ls91{letter-spacing:-0.505440px;}
.ls25{letter-spacing:-0.504000px;}
.ls9d{letter-spacing:-0.432000px;}
.ls87{letter-spacing:-0.418320px;}
.ls26{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.331200px;}
.ls86{letter-spacing:-0.298800px;}
.ls3{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.287280px;}
.ls16{letter-spacing:-0.264960px;}
.ls5{letter-spacing:-0.252720px;}
.ls58{letter-spacing:-0.239040px;}
.ls11{letter-spacing:-0.216000px;}
.ls92{letter-spacing:-0.168480px;}
.ls27{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.095760px;}
.ls24{letter-spacing:-0.072000px;}
.ls55{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.059760px;}
.lsc{letter-spacing:0.072000px;}
.ls74{letter-spacing:0.084240px;}
.ls6d{letter-spacing:0.087840px;}
.ls1{letter-spacing:0.095760px;}
.lsa5{letter-spacing:0.108000px;}
.ls78{letter-spacing:0.111600px;}
.ls8f{letter-spacing:0.112320px;}
.ls52{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.142560px;}
.ls20{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.168480px;}
.ls4f{letter-spacing:0.173304px;}
.ls4e{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.216000px;}
.ls56{letter-spacing:0.239040px;}
.ls13{letter-spacing:0.264960px;}
.ls45{letter-spacing:0.280800px;}
.ls6{letter-spacing:0.287280px;}
.lsd{letter-spacing:0.288000px;}
.ls72{letter-spacing:0.295200px;}
.ls50{letter-spacing:0.298800px;}
.ls80{letter-spacing:0.302400px;}
.ls38{letter-spacing:0.309600px;}
.ls75{letter-spacing:0.316800px;}
.ls9{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.331200px;}
.ls57{letter-spacing:0.358560px;}
.lse{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.400392px;}
.ls53{letter-spacing:0.436248px;}
.ls7f{letter-spacing:0.504000px;}
.ls2e{letter-spacing:1.008000px;}
.ls3a{letter-spacing:1.015200px;}
.ls93{letter-spacing:1.029600px;}
.ls2d{letter-spacing:1.728000px;}
.ls40{letter-spacing:1.735200px;}
.lsa3{letter-spacing:2.309760px;}
.ls1c{letter-spacing:2.448000px;}
.ls9a{letter-spacing:2.455200px;}
.ls82{letter-spacing:2.462400px;}
.ls43{letter-spacing:2.469600px;}
.ls9f{letter-spacing:2.527200px;}
.ls66{letter-spacing:3.047760px;}
.ls1e{letter-spacing:3.168000px;}
.ls77{letter-spacing:3.175200px;}
.ls79{letter-spacing:3.182400px;}
.ls36{letter-spacing:3.888000px;}
.ls49{letter-spacing:3.895200px;}
.ls9e{letter-spacing:3.902400px;}
.ls9c{letter-spacing:4.001760px;}
.ls65{letter-spacing:4.482000px;}
.ls35{letter-spacing:4.608000px;}
.ls84{letter-spacing:4.615200px;}
.ls8b{letter-spacing:4.622400px;}
.ls83{letter-spacing:5.199120px;}
.lsb{letter-spacing:5.328000px;}
.ls7a{letter-spacing:5.342400px;}
.ls51{letter-spacing:5.916240px;}
.ls29{letter-spacing:6.048000px;}
.ls8a{letter-spacing:6.055200px;}
.ls89{letter-spacing:6.069600px;}
.ls7e{letter-spacing:6.076800px;}
.lsa1{letter-spacing:6.629760px;}
.ls28{letter-spacing:6.768000px;}
.ls5b{letter-spacing:6.782400px;}
.ls73{letter-spacing:6.804000px;}
.ls31{letter-spacing:7.488000px;}
.ls6e{letter-spacing:7.502400px;}
.ls1d{letter-spacing:8.208000px;}
.ls95{letter-spacing:8.215200px;}
.ls85{letter-spacing:8.222400px;}
.ls2c{letter-spacing:8.928000px;}
.ls2b{letter-spacing:8.935200px;}
.ls37{letter-spacing:9.648000px;}
.ls8e{letter-spacing:10.278720px;}
.ls17{letter-spacing:10.368000px;}
.lsa0{letter-spacing:10.382400px;}
.ls19{letter-spacing:11.088000px;}
.ls5f{letter-spacing:11.109600px;}
.ls4b{letter-spacing:11.116800px;}
.ls99{letter-spacing:11.201760px;}
.ls4a{letter-spacing:11.808000px;}
.ls41{letter-spacing:12.528000px;}
.ls33{letter-spacing:13.248000px;}
.ls44{letter-spacing:13.262400px;}
.ls9b{letter-spacing:13.844160px;}
.ls1a{letter-spacing:13.968000px;}
.ls97{letter-spacing:13.975200px;}
.ls98{letter-spacing:14.572800px;}
.ls3b{letter-spacing:14.688000px;}
.ls39{letter-spacing:15.408000px;}
.ls18{letter-spacing:16.128000px;}
.ls54{letter-spacing:16.848000px;}
.ls48{letter-spacing:17.568000px;}
.ls1f{letter-spacing:18.288000px;}
.lsa2{letter-spacing:18.302400px;}
.ls47{letter-spacing:19.008000px;}
.ls3c{letter-spacing:19.728000px;}
.ls2a{letter-spacing:20.448000px;}
.ls64{letter-spacing:21.161016px;}
.ls5e{letter-spacing:21.168000px;}
.ls81{letter-spacing:21.189600px;}
.ls4c{letter-spacing:21.888000px;}
.ls3d{letter-spacing:22.608000px;}
.ls94{letter-spacing:22.615200px;}
.ls2f{letter-spacing:23.328000px;}
.ls32{letter-spacing:24.048000px;}
.ls7c{letter-spacing:24.069600px;}
.ls61{letter-spacing:24.768000px;}
.ls62{letter-spacing:24.796800px;}
.ls1b{letter-spacing:25.488000px;}
.ls70{letter-spacing:25.509600px;}
.ls63{letter-spacing:26.928000px;}
.ls5c{letter-spacing:26.935200px;}
.ls76{letter-spacing:26.956800px;}
.ls69{letter-spacing:27.648000px;}
.ls6a{letter-spacing:28.368000px;}
.ls68{letter-spacing:29.088000px;}
.ls7b{letter-spacing:29.664000px;}
.ls67{letter-spacing:29.808000px;}
.ls90{letter-spacing:30.528000px;}
.ls30{letter-spacing:31.248000px;}
.ls88{letter-spacing:32.688000px;}
.ls5d{letter-spacing:33.256440px;}
.ls3e{letter-spacing:33.408000px;}
.ls71{letter-spacing:33.429600px;}
.ls3f{letter-spacing:34.128000px;}
.ls42{letter-spacing:34.848000px;}
.lsa4{letter-spacing:36.288000px;}
.ls96{letter-spacing:37.728000px;}
.ls8c{letter-spacing:42.048000px;}
.ls7d{letter-spacing:44.208000px;}
.ls6f{letter-spacing:65.664000px;}
.lsa6{letter-spacing:150.768000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-24.732000px;}
.ws1{word-spacing:-24.624000px;}
.ws3{word-spacing:-21.354480px;}
.ws142{word-spacing:-21.060000px;}
.wsf8{word-spacing:-19.122480px;}
.ws0{word-spacing:-18.785520px;}
.ws12d{word-spacing:-18.288000px;}
.wsf3{word-spacing:-18.000000px;}
.ws2c{word-spacing:-16.632000px;}
.ws94{word-spacing:-16.560000px;}
.ws52{word-spacing:-16.488000px;}
.ws2b{word-spacing:-16.416000px;}
.ws2a{word-spacing:-16.344000px;}
.wsc{word-spacing:-16.272000px;}
.ws2d{word-spacing:-16.200000px;}
.ws2e{word-spacing:-16.128000px;}
.wsd{word-spacing:-16.056000px;}
.wsb{word-spacing:-15.984000px;}
.ws53{word-spacing:-15.912000px;}
.wsa0{word-spacing:-15.768000px;}
.ws55{word-spacing:-15.696000px;}
.ws54{word-spacing:-15.624000px;}
.wse{word-spacing:-15.480000px;}
.wsc8{word-spacing:-15.336000px;}
.ws20{word-spacing:-15.235200px;}
.ws103{word-spacing:-15.192000px;}
.ws80{word-spacing:-14.976000px;}
.ws22{word-spacing:-14.970240px;}
.wsfc{word-spacing:-14.705280px;}
.ws21{word-spacing:-14.639040px;}
.wsa3{word-spacing:-13.864320px;}
.ws117{word-spacing:-13.685040px;}
.wsa1{word-spacing:-13.505760px;}
.wsa2{word-spacing:-13.446000px;}
.wse0{word-spacing:-13.266720px;}
.ws59{word-spacing:-1.179360px;}
.ws1d{word-spacing:-0.792000px;}
.ws99{word-spacing:-0.648000px;}
.wsfd{word-spacing:-0.576000px;}
.ws6{word-spacing:-0.505440px;}
.ws1e{word-spacing:-0.504000px;}
.ws1f{word-spacing:-0.360000px;}
.ws24{word-spacing:-0.331200px;}
.wsa9{word-spacing:-0.298800px;}
.ws8{word-spacing:-0.287280px;}
.ws23{word-spacing:-0.264960px;}
.wsaa{word-spacing:-0.239040px;}
.ws38{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.168480px;}
.ws35{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.132480px;}
.wsdb{word-spacing:-0.119520px;}
.ws7{word-spacing:-0.084240px;}
.ws16{word-spacing:-0.072000px;}
.wsad{word-spacing:-0.059760px;}
.ws4{word-spacing:0.000000px;}
.wsee{word-spacing:0.059760px;}
.ws5a{word-spacing:0.072000px;}
.wsa{word-spacing:0.095760px;}
.wsef{word-spacing:0.119520px;}
.ws26{word-spacing:0.132480px;}
.ws51{word-spacing:0.144000px;}
.ws134{word-spacing:0.168480px;}
.ws15{word-spacing:0.216000px;}
.wsac{word-spacing:0.239040px;}
.ws2f{word-spacing:0.252720px;}
.ws9{word-spacing:0.287280px;}
.ws84{word-spacing:0.288000px;}
.ws11a{word-spacing:0.298800px;}
.ws5b{word-spacing:0.360000px;}
.ws25{word-spacing:0.397440px;}
.wsed{word-spacing:0.418320px;}
.ws5{word-spacing:0.432000px;}
.ws28{word-spacing:0.463680px;}
.ws4b{word-spacing:0.504000px;}
.ws19{word-spacing:0.576000px;}
.wsec{word-spacing:0.597600px;}
.ws44{word-spacing:0.648000px;}
.ws14c{word-spacing:0.720000px;}
.wsd5{word-spacing:0.776880px;}
.ws4d{word-spacing:0.792000px;}
.ws3f{word-spacing:0.864000px;}
.ws3e{word-spacing:0.936000px;}
.ws16c{word-spacing:0.956160px;}
.ws129{word-spacing:1.008000px;}
.ws65{word-spacing:1.080000px;}
.wsfb{word-spacing:1.152000px;}
.ws29{word-spacing:1.192320px;}
.ws83{word-spacing:1.224000px;}
.ws7c{word-spacing:1.296000px;}
.ws108{word-spacing:1.314720px;}
.ws3a{word-spacing:1.368000px;}
.ws169{word-spacing:1.434240px;}
.ws1b{word-spacing:1.512000px;}
.ws77{word-spacing:1.584000px;}
.ws17{word-spacing:1.656000px;}
.wsb3{word-spacing:2.016000px;}
.ws5d{word-spacing:2.088000px;}
.wsf1{word-spacing:2.232000px;}
.ws12e{word-spacing:2.304000px;}
.wsf{word-spacing:2.376000px;}
.wsd9{word-spacing:2.390400px;}
.wsf9{word-spacing:2.520000px;}
.wsf4{word-spacing:2.736000px;}
.ws5c{word-spacing:2.808000px;}
.wsd8{word-spacing:2.868480px;}
.ws75{word-spacing:2.952000px;}
.wsfe{word-spacing:3.024000px;}
.ws40{word-spacing:3.096000px;}
.wsd2{word-spacing:3.107520px;}
.wsb1{word-spacing:3.168000px;}
.ws100{word-spacing:3.240000px;}
.ws148{word-spacing:3.286800px;}
.ws15f{word-spacing:3.456000px;}
.ws14a{word-spacing:3.466080px;}
.ws4c{word-spacing:3.528000px;}
.ws156{word-spacing:3.585600px;}
.ws76{word-spacing:3.672000px;}
.ws67{word-spacing:3.744000px;}
.ws6d{word-spacing:3.816000px;}
.ws149{word-spacing:3.824640px;}
.ws87{word-spacing:3.960000px;}
.ws16b{word-spacing:4.003920px;}
.ws128{word-spacing:4.104000px;}
.wscd{word-spacing:4.176000px;}
.wsc3{word-spacing:4.183200px;}
.ws6b{word-spacing:4.248000px;}
.wsd7{word-spacing:4.302720px;}
.ws6e{word-spacing:4.392000px;}
.ws155{word-spacing:4.464000px;}
.ws62{word-spacing:4.536000px;}
.wsd6{word-spacing:4.541760px;}
.wscf{word-spacing:4.680000px;}
.ws6c{word-spacing:4.824000px;}
.ws7b{word-spacing:4.896000px;}
.wsa7{word-spacing:4.900320px;}
.ws1a{word-spacing:4.968000px;}
.wsa6{word-spacing:5.019840px;}
.wsb6{word-spacing:5.112000px;}
.ws93{word-spacing:5.184000px;}
.ws18{word-spacing:5.256000px;}
.ws11f{word-spacing:5.258880px;}
.ws159{word-spacing:5.400000px;}
.ws120{word-spacing:5.438160px;}
.ws143{word-spacing:5.544000px;}
.wse7{word-spacing:5.616000px;}
.ws107{word-spacing:5.617440px;}
.ws74{word-spacing:5.688000px;}
.wsa8{word-spacing:5.736960px;}
.ws130{word-spacing:5.832000px;}
.ws126{word-spacing:5.904000px;}
.ws47{word-spacing:5.976000px;}
.ws113{word-spacing:6.120000px;}
.wsab{word-spacing:6.155280px;}
.wse2{word-spacing:6.334560px;}
.ws8d{word-spacing:6.336000px;}
.ws56{word-spacing:6.408000px;}
.wsb7{word-spacing:6.552000px;}
.ws9a{word-spacing:6.624000px;}
.ws14{word-spacing:6.696000px;}
.ws166{word-spacing:6.840000px;}
.ws8b{word-spacing:6.984000px;}
.wse6{word-spacing:7.051680px;}
.ws8c{word-spacing:7.056000px;}
.ws4a{word-spacing:7.128000px;}
.wse9{word-spacing:7.272000px;}
.ws64{word-spacing:7.344000px;}
.ws158{word-spacing:7.410240px;}
.ws42{word-spacing:7.416000px;}
.ws144{word-spacing:7.560000px;}
.ws15d{word-spacing:7.704000px;}
.wsc2{word-spacing:7.768800px;}
.ws70{word-spacing:7.848000px;}
.wse5{word-spacing:7.888320px;}
.ws79{word-spacing:7.992000px;}
.wsc6{word-spacing:8.064000px;}
.ws49{word-spacing:8.136000px;}
.wsc4{word-spacing:8.280000px;}
.wsd0{word-spacing:8.306640px;}
.wsa4{word-spacing:8.485920px;}
.ws123{word-spacing:8.496000px;}
.ws13{word-spacing:8.568000px;}
.ws7a{word-spacing:8.712000px;}
.ws72{word-spacing:8.784000px;}
.wsa5{word-spacing:8.844480px;}
.ws12{word-spacing:8.856000px;}
.ws13c{word-spacing:9.000000px;}
.ws106{word-spacing:9.023760px;}
.ws9d{word-spacing:9.072000px;}
.ws179{word-spacing:9.144000px;}
.ws12a{word-spacing:9.216000px;}
.ws92{word-spacing:9.288000px;}
.ws9c{word-spacing:9.432000px;}
.wsc5{word-spacing:9.504000px;}
.ws6f{word-spacing:9.576000px;}
.ws115{word-spacing:9.648000px;}
.ws131{word-spacing:9.720000px;}
.ws16a{word-spacing:9.800640px;}
.ws171{word-spacing:9.936000px;}
.ws121{word-spacing:9.979920px;}
.ws37{word-spacing:10.008000px;}
.ws95{word-spacing:10.152000px;}
.ws31{word-spacing:10.296000px;}
.ws132{word-spacing:10.338480px;}
.ws15e{word-spacing:10.440000px;}
.ws10b{word-spacing:10.512000px;}
.wsc7{word-spacing:10.584000px;}
.ws71{word-spacing:10.728000px;}
.ws150{word-spacing:10.816560px;}
.ws98{word-spacing:10.872000px;}
.ws39{word-spacing:10.944000px;}
.ws33{word-spacing:11.016000px;}
.ws63{word-spacing:11.232000px;}
.ws138{word-spacing:11.376000px;}
.ws14b{word-spacing:11.414160px;}
.ws9f{word-spacing:11.448000px;}
.ws86{word-spacing:11.592000px;}
.ws15c{word-spacing:11.664000px;}
.ws9b{word-spacing:11.736000px;}
.ws105{word-spacing:12.131280px;}
.ws85{word-spacing:12.168000px;}
.ws168{word-spacing:12.250800px;}
.ws68{word-spacing:12.312000px;}
.wsc9{word-spacing:12.384000px;}
.ws11{word-spacing:12.456000px;}
.ws157{word-spacing:12.489840px;}
.ws153{word-spacing:12.600000px;}
.ws69{word-spacing:12.888000px;}
.wsda{word-spacing:12.967920px;}
.ws165{word-spacing:13.032000px;}
.ws163{word-spacing:13.104000px;}
.ws10{word-spacing:13.176000px;}
.wsf6{word-spacing:13.320000px;}
.ws16d{word-spacing:13.386240px;}
.ws174{word-spacing:13.536000px;}
.ws90{word-spacing:13.608000px;}
.ws3b{word-spacing:13.752000px;}
.ws13a{word-spacing:13.824000px;}
.ws3c{word-spacing:13.896000px;}
.wsd1{word-spacing:13.924080px;}
.wsea{word-spacing:14.256000px;}
.ws78{word-spacing:14.328000px;}
.ws151{word-spacing:14.402160px;}
.ws122{word-spacing:14.544000px;}
.ws58{word-spacing:14.616000px;}
.ws91{word-spacing:14.760000px;}
.wsb5{word-spacing:14.832000px;}
.ws13b{word-spacing:14.976000px;}
.ws6a{word-spacing:15.048000px;}
.wse3{word-spacing:15.119280px;}
.ws10c{word-spacing:15.192000px;}
.ws3d{word-spacing:15.264000px;}
.ws32{word-spacing:15.336000px;}
.ws36{word-spacing:15.768000px;}
.ws109{word-spacing:15.836400px;}
.ws13e{word-spacing:15.984000px;}
.ws34{word-spacing:16.056000px;}
.wsbe{word-spacing:16.075440px;}
.ws145{word-spacing:16.200000px;}
.wsbf{word-spacing:16.254720px;}
.wsf5{word-spacing:16.272000px;}
.ws136{word-spacing:16.344000px;}
.ws135{word-spacing:16.416000px;}
.ws104{word-spacing:16.488000px;}
.ws111{word-spacing:16.632000px;}
.ws73{word-spacing:16.776000px;}
.ws140{word-spacing:16.920000px;}
.ws16e{word-spacing:17.136000px;}
.ws11d{word-spacing:17.151120px;}
.ws4f{word-spacing:17.208000px;}
.wsae{word-spacing:17.352000px;}
.ws1c{word-spacing:17.496000px;}
.ws11c{word-spacing:17.509680px;}
.ws11b{word-spacing:17.688960px;}
.ws11e{word-spacing:17.868240px;}
.ws50{word-spacing:17.928000px;}
.ws4e{word-spacing:18.216000px;}
.ws161{word-spacing:18.360000px;}
.wseb{word-spacing:18.576000px;}
.wsdc{word-spacing:18.648000px;}
.ws96{word-spacing:18.936000px;}
.ws162{word-spacing:19.080000px;}
.wsfa{word-spacing:19.152000px;}
.wsbb{word-spacing:19.368000px;}
.wsf0{word-spacing:19.512000px;}
.ws119{word-spacing:19.584000px;}
.ws7d{word-spacing:19.656000px;}
.ws8f{word-spacing:19.872000px;}
.ws8e{word-spacing:20.088000px;}
.wsff{word-spacing:20.232000px;}
.ws57{word-spacing:20.376000px;}
.ws152{word-spacing:20.378160px;}
.ws7f{word-spacing:20.664000px;}
.wsba{word-spacing:20.736000px;}
.ws10f{word-spacing:20.808000px;}
.wsd4{word-spacing:20.856240px;}
.ws141{word-spacing:21.024000px;}
.wsd3{word-spacing:21.095280px;}
.ws7e{word-spacing:21.096000px;}
.ws118{word-spacing:21.240000px;}
.wscc{word-spacing:21.456000px;}
.ws9e{word-spacing:21.528000px;}
.ws139{word-spacing:21.672000px;}
.ws48{word-spacing:21.816000px;}
.ws177{word-spacing:22.176000px;}
.wsb8{word-spacing:22.248000px;}
.wsca{word-spacing:22.392000px;}
.wsb0{word-spacing:22.536000px;}
.ws14f{word-spacing:22.680000px;}
.wscb{word-spacing:22.824000px;}
.ws112{word-spacing:22.896000px;}
.ws60{word-spacing:22.968000px;}
.wsb9{word-spacing:23.184000px;}
.ws61{word-spacing:23.256000px;}
.ws133{word-spacing:23.616000px;}
.ws97{word-spacing:23.688000px;}
.ws66{word-spacing:23.976000px;}
.ws10d{word-spacing:24.408000px;}
.ws160{word-spacing:24.552000px;}
.wsb4{word-spacing:24.696000px;}
.ws45{word-spacing:25.128000px;}
.wse1{word-spacing:25.272000px;}
.ws46{word-spacing:25.416000px;}
.wsb2{word-spacing:25.704000px;}
.ws13f{word-spacing:25.848000px;}
.ws43{word-spacing:26.136000px;}
.ws15a{word-spacing:26.568000px;}
.wsbd{word-spacing:26.856000px;}
.ws15b{word-spacing:27.000000px;}
.wsbc{word-spacing:27.288000px;}
.wsce{word-spacing:27.576000px;}
.wsde{word-spacing:28.008000px;}
.wsdf{word-spacing:28.296000px;}
.ws127{word-spacing:28.728000px;}
.ws114{word-spacing:29.016000px;}
.wsdd{word-spacing:29.448000px;}
.wsf7{word-spacing:29.736000px;}
.ws116{word-spacing:30.168000px;}
.ws10e{word-spacing:30.456000px;}
.ws5f{word-spacing:30.888000px;}
.ws5e{word-spacing:31.176000px;}
.ws124{word-spacing:31.536000px;}
.ws101{word-spacing:31.608000px;}
.ws41{word-spacing:31.896000px;}
.ws102{word-spacing:32.040000px;}
.ws125{word-spacing:32.328000px;}
.ws12f{word-spacing:32.616000px;}
.ws137{word-spacing:33.048000px;}
.wsc0{word-spacing:33.107040px;}
.ws164{word-spacing:33.336000px;}
.wsc1{word-spacing:33.525360px;}
.ws82{word-spacing:33.768000px;}
.ws81{word-spacing:34.056000px;}
.ws8a{word-spacing:34.488000px;}
.ws10a{word-spacing:34.704000px;}
.ws89{word-spacing:34.776000px;}
.ws147{word-spacing:35.496000px;}
.ws88{word-spacing:35.784000px;}
.ws167{word-spacing:35.928000px;}
.wse4{word-spacing:36.214560px;}
.ws146{word-spacing:36.216000px;}
.ws14e{word-spacing:36.936000px;}
.wsaf{word-spacing:37.368000px;}
.ws14d{word-spacing:37.656000px;}
.wsf2{word-spacing:38.088000px;}
.ws13d{word-spacing:38.376000px;}
.wse8{word-spacing:39.096000px;}
.ws154{word-spacing:40.536000px;}
.ws12c{word-spacing:41.688000px;}
.ws12b{word-spacing:41.976000px;}
.ws110{word-spacing:44.856000px;}
.ws176{word-spacing:50.616000px;}
.ws175{word-spacing:51.336000px;}
.ws172{word-spacing:150.552000px;}
.ws173{word-spacing:150.696000px;}
.ws170{word-spacing:224.136000px;}
.ws16f{word-spacing:225.144000px;}
.ws178{word-spacing:422.136000px;}
._7{margin-left:-14.014080px;}
._5{margin-left:-12.651840px;}
._6{margin-left:-8.755200px;}
._1c{margin-left:-4.809600px;}
._4{margin-left:-3.323520px;}
._19{margin-left:-2.311200px;}
._1{margin-left:-1.263600px;}
._0{width:1.152000px;}
._b{width:2.372400px;}
._11{width:3.412800px;}
._3{width:4.669200px;}
._2{width:6.094800px;}
._d{width:7.272000px;}
._e{width:9.144000px;}
._9{width:10.152000px;}
._8{width:11.232000px;}
._14{width:12.528000px;}
._20{width:13.543200px;}
._a{width:14.551200px;}
._21{width:17.280000px;}
._f{width:18.288000px;}
._1a{width:19.317600px;}
._10{width:20.376000px;}
._17{width:21.780000px;}
._13{width:22.896000px;}
._1d{width:24.663600px;}
._c{width:25.686000px;}
._18{width:26.863200px;}
._1b{width:29.109600px;}
._12{width:30.646800px;}
._1e{width:31.737600px;}
._1f{width:32.742000px;}
._16{width:34.671600px;}
._15{width:36.216000px;}
._24{width:51.526800px;}
._22{width:88.128000px;}
._23{width:149.904000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:75.894664px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.606480px;}
.y1{bottom:77.760000px;}
.y1aa{bottom:111.780000px;}
.y133{bottom:112.320000px;}
.y16b{bottom:113.760000px;}
.yd3{bottom:114.660000px;}
.y17b{bottom:117.720000px;}
.y203{bottom:118.260000px;}
.y193{bottom:121.680000px;}
.y1f2{bottom:122.411160px;}
.y19f{bottom:123.480000px;}
.y126{bottom:123.660000px;}
.y213{bottom:125.640000px;}
.yac{bottom:126.720000px;}
.ydc{bottom:130.140000px;}
.y35{bottom:135.540000px;}
.y9c{bottom:135.720000px;}
.y237{bottom:135.900000px;}
.y11d{bottom:136.620000px;}
.yc1{bottom:138.780000px;}
.y1ac{bottom:139.320000px;}
.y217{bottom:141.660000px;}
.y1a2{bottom:142.200000px;}
.y104{bottom:143.280000px;}
.y1d7{bottom:143.640000px;}
.y1a9{bottom:144.720000px;}
.y132{bottom:145.260000px;}
.y16a{bottom:146.700000px;}
.yd2{bottom:147.780000px;}
.y1f1{bottom:149.945580px;}
.y17a{bottom:150.660000px;}
.y202{bottom:151.200000px;}
.y18{bottom:152.820000px;}
.y152{bottom:154.260000px;}
.y192{bottom:154.620000px;}
.y125{bottom:156.600000px;}
.y1c4{bottom:156.780000px;}
.yab{bottom:159.660000px;}
.ydb{bottom:163.080000px;}
.y19e{bottom:168.480000px;}
.y9b{bottom:168.660000px;}
.y11c{bottom:169.740000px;}
.y212{bottom:170.460000px;}
.y34{bottom:171.360000px;}
.y236{bottom:171.540000px;}
.yc0{bottom:171.720000px;}
.y1ab{bottom:173.700000px;}
.y66{bottom:174.420000px;}
.y82{bottom:175.140000px;}
.y103{bottom:176.220000px;}
.y1d6{bottom:176.580000px;}
.y1f0{bottom:177.480000px;}
.y1a8{bottom:177.660000px;}
.y131{bottom:178.200000px;}
.y169{bottom:179.640000px;}
.yd1{bottom:180.720000px;}
.y179{bottom:183.780000px;}
.y201{bottom:184.140000px;}
.y216{bottom:186.660000px;}
.y151{bottom:187.200000px;}
.y191{bottom:187.560000px;}
.y124{bottom:189.540000px;}
.yaa{bottom:192.600000px;}
.y4a{bottom:194.572800px;}
.yda{bottom:196.200000px;}
.y17{bottom:201.600000px;}
.y11b{bottom:202.680000px;}
.ybf{bottom:204.660000px;}
.y33{bottom:207.000000px;}
.y65{bottom:207.360000px;}
.y81{bottom:208.080000px;}
.y102{bottom:209.160000px;}
.y1d5{bottom:209.700000px;}
.y1a7{bottom:210.600000px;}
.y130{bottom:211.140000px;}
.y168{bottom:212.580000px;}
.y19d{bottom:213.480000px;}
.yd0{bottom:213.660000px;}
.y211{bottom:215.460000px;}
.y235{bottom:216.540000px;}
.y178{bottom:216.720000px;}
.y200{bottom:217.080000px;}
.y1ef{bottom:219.600000px;}
.y150{bottom:220.140000px;}
.y190{bottom:220.500000px;}
.y123{bottom:222.660000px;}
.ya9{bottom:225.540000px;}
.yd9{bottom:229.140000px;}
.y49{bottom:229.680000px;}
.y215{bottom:231.480000px;}
.y9a{bottom:234.540000px;}
.y1c3{bottom:234.720000px;}
.y11a{bottom:235.620000px;}
.ybe{bottom:237.600000px;}
.y64{bottom:240.300000px;}
.y80{bottom:241.020000px;}
.y1d4{bottom:242.640000px;}
.y32{bottom:242.820000px;}
.y1b8{bottom:243.540000px;}
.y12f{bottom:244.080000px;}
.ycf{bottom:246.600000px;}
.y177{bottom:249.660000px;}
.y1ff{bottom:250.020000px;}
.y1ee{bottom:252.540000px;}
.y14f{bottom:253.080000px;}
.y18f{bottom:253.440000px;}
.y101{bottom:254.160000px;}
.y167{bottom:254.880000px;}
.y122{bottom:255.600000px;}
.y48{bottom:256.140000px;}
.y19c{bottom:258.480000px;}
.y135{bottom:258.660000px;}
.y16{bottom:260.100000px;}
.y210{bottom:260.460000px;}
.y234{bottom:261.360000px;}
.ye4{bottom:262.080000px;}
.y99{bottom:267.480000px;}
.y1c2{bottom:267.660000px;}
.y119{bottom:268.560000px;}
.ya8{bottom:270.540000px;}
.y63{bottom:273.240000px;}
.y7f{bottom:273.960000px;}
.y1b7{bottom:276.480000px;}
.y12e{bottom:277.020000px;}
.y31{bottom:278.460000px;}
.yce{bottom:279.540000px;}
.y166{bottom:282.240000px;}
.y176{bottom:282.600000px;}
.y1fe{bottom:283.140000px;}
.y1d3{bottom:284.940000px;}
.y1ed{bottom:285.660000px;}
.y14e{bottom:286.020000px;}
.y100{bottom:287.100000px;}
.y121{bottom:288.540000px;}
.y227{bottom:291.420000px;}
.y134{bottom:291.600000px;}
.y233{bottom:294.480000px;}
.ye3{bottom:295.020000px;}
.y18e{bottom:298.440000px;}
.y98{bottom:300.420000px;}
.y1c1{bottom:300.600000px;}
.y118{bottom:301.500000px;}
.y19b{bottom:303.300000px;}
.ya7{bottom:303.480000px;}
.y20f{bottom:305.460000px;}
.y62{bottom:306.180000px;}
.y7e{bottom:307.080000px;}
.y165{bottom:309.780000px;}
.y12d{bottom:309.960000px;}
.y1d2{bottom:312.331320px;}
.ycd{bottom:312.480000px;}
.y30{bottom:314.100000px;}
.y175{bottom:315.540000px;}
.y1fd{bottom:316.080000px;}
.y1ec{bottom:318.600000px;}
.y15{bottom:318.960000px;}
.yff{bottom:320.040000px;}
.y120{bottom:321.480000px;}
.y47{bottom:321.681600px;}
.ydd{bottom:324.540000px;}
.y97{bottom:333.360000px;}
.y1c0{bottom:333.540000px;}
.y117{bottom:334.440000px;}
.y226{bottom:336.240000px;}
.ya6{bottom:336.420000px;}
.y164{bottom:337.140000px;}
.y61{bottom:339.120000px;}
.y232{bottom:339.300000px;}
.y1d1{bottom:339.686460px;}
.y7d{bottom:340.020000px;}
.y18d{bottom:340.740000px;}
.y12c{bottom:343.080000px;}
.y204{bottom:345.420000px;}
.y1b6{bottom:346.161600px;}
.y19a{bottom:348.300000px;}
.y174{bottom:348.480000px;}
.y1fc{bottom:349.020000px;}
.y2f{bottom:349.920000px;}
.y20e{bottom:350.280000px;}
.y1eb{bottom:351.540000px;}
.y14d{bottom:351.900000px;}
.yfe{bottom:352.980000px;}
.y11f{bottom:354.420000px;}
.ycc{bottom:357.480000px;}
.y163{bottom:364.680000px;}
.y96{bottom:366.480000px;}
.y1d0{bottom:367.220880px;}
.y116{bottom:367.380000px;}
.y18c{bottom:368.100000px;}
.ya5{bottom:369.360000px;}
.y60{bottom:372.060000px;}
.y231{bottom:372.240000px;}
.y7c{bottom:372.960000px;}
.y1b5{bottom:373.696020px;}
.y46{bottom:374.060880px;}
.y12b{bottom:376.020000px;}
.y14{bottom:377.460000px;}
.y225{bottom:381.240000px;}
.y173{bottom:381.420000px;}
.y1fb{bottom:381.960000px;}
.y1ea{bottom:384.480000px;}
.y14c{bottom:384.840000px;}
.y2e{bottom:385.560000px;}
.yfd{bottom:385.920000px;}
.y171{bottom:387.360000px;}
.y189{bottom:387.540000px;}
.ycb{bottom:390.420000px;}
.y162{bottom:392.040000px;}
.y199{bottom:393.300000px;}
.y1cf{bottom:394.576020px;}
.y20d{bottom:395.280000px;}
.y18b{bottom:395.640000px;}
.y95{bottom:399.420000px;}
.y115{bottom:400.320000px;}
.y1b4{bottom:401.051160px;}
.ya4{bottom:402.480000px;}
.y5f{bottom:405.180000px;}
.y230{bottom:405.360000px;}
.y7b{bottom:405.900000px;}
.y12a{bottom:406.101600px;}
.y214{bottom:411.300000px;}
.y224{bottom:414.180000px;}
.y172{bottom:414.360000px;}
.y1fa{bottom:414.900000px;}
.y188{bottom:415.080000px;}
.y1e9{bottom:417.420000px;}
.y14b{bottom:417.960000px;}
.yfc{bottom:418.860000px;}
.y161{bottom:419.580000px;}
.y170{bottom:420.300000px;}
.y1a6{bottom:420.480000px;}
.y2d{bottom:421.380000px;}
.y1ce{bottom:422.110440px;}
.y18a{bottom:423.000000px;}
.yca{bottom:423.360000px;}
.y45{bottom:426.258000px;}
.y1b3{bottom:428.585580px;}
.y94{bottom:432.360000px;}
.y114{bottom:433.260000px;}
.y13{bottom:433.620000px;}
.y129{bottom:433.636020px;}
.ya3{bottom:435.420000px;}
.y198{bottom:438.300000px;}
.y7a{bottom:438.840000px;}
.y20c{bottom:440.280000px;}
.y187{bottom:442.620000px;}
.y160{bottom:446.940000px;}
.ybd{bottom:447.300000px;}
.y1f9{bottom:447.840000px;}
.y1cd{bottom:449.465580px;}
.y5e{bottom:450.000000px;}
.y1e8{bottom:450.360000px;}
.y14a{bottom:450.900000px;}
.yfb{bottom:451.800000px;}
.y1a5{bottom:453.420000px;}
.y1b2{bottom:456.120000px;}
.yc9{bottom:456.300000px;}
.y2c{bottom:457.020000px;}
.y223{bottom:459.180000px;}
.y12{bottom:460.069560px;}
.y128{bottom:460.991160px;}
.y93{bottom:465.300000px;}
.y113{bottom:466.380000px;}
.ya2{bottom:468.360000px;}
.y186{bottom:469.980000px;}
.y79{bottom:471.780000px;}
.y1cc{bottom:477.000000px;}
.y44{bottom:478.637280px;}
.ybc{bottom:480.240000px;}
.y1f8{bottom:480.780000px;}
.y5d{bottom:482.940000px;}
.y197{bottom:483.120000px;}
.y1e7{bottom:483.300000px;}
.y149{bottom:483.840000px;}
.yfa{bottom:484.740000px;}
.y20b{bottom:485.280000px;}
.y1a4{bottom:486.360000px;}
.y127{bottom:488.525580px;}
.yc8{bottom:489.240000px;}
.y11{bottom:489.420000px;}
.y222{bottom:492.120000px;}
.y2b{bottom:492.660000px;}
.y185{bottom:497.520000px;}
.y92{bottom:498.240000px;}
.y112{bottom:499.320000px;}
.ya1{bottom:501.300000px;}
.y78{bottom:504.720000px;}
.y11e{bottom:510.300000px;}
.ybb{bottom:513.360000px;}
.y1f7{bottom:513.720000px;}
.y5c{bottom:516.060000px;}
.y1e6{bottom:516.240000px;}
.y148{bottom:516.780000px;}
.yf9{bottom:517.680000px;}
.y1cb{bottom:519.300000px;}
.y1a3{bottom:520.740000px;}
.yc7{bottom:522.180000px;}
.y184{bottom:524.880000px;}
.y221{bottom:525.060000px;}
.y196{bottom:528.120000px;}
.y2a{bottom:528.480000px;}
.y20a{bottom:530.100000px;}
.y43{bottom:530.834400px;}
.y91{bottom:531.180000px;}
.y1b1{bottom:531.360000px;}
.ya0{bottom:534.240000px;}
.y77{bottom:537.660000px;}
.y10{bottom:542.700000px;}
.y17c{bottom:543.240000px;}
.y111{bottom:544.140000px;}
.yba{bottom:546.300000px;}
.y1f6{bottom:546.660000px;}
.y5b{bottom:549.000000px;}
.y1e5{bottom:549.180000px;}
.y147{bottom:549.720000px;}
.yf8{bottom:550.800000px;}
.y1ca{bottom:552.240000px;}
.yc6{bottom:555.120000px;}
.y22f{bottom:561.060000px;}
.y29{bottom:564.120000px;}
.y1b0{bottom:564.300000px;}
.y9f{bottom:567.180000px;}
.y220{bottom:570.060000px;}
.y76{bottom:570.600000px;}
.y195{bottom:573.120000px;}
.y209{bottom:575.100000px;}
.y90{bottom:576.180000px;}
.y110{bottom:577.260000px;}
.yb9{bottom:579.240000px;}
.y5a{bottom:581.940000px;}
.y1e4{bottom:582.300000px;}
.y146{bottom:582.660000px;}
.y42{bottom:583.031520px;}
.yf7{bottom:583.740000px;}
.y1c9{bottom:585.180000px;}
.yc5{bottom:588.240000px;}
.yf{bottom:590.580000px;}
.y1f5{bottom:591.660000px;}
.y22e{bottom:594.000000px;}
.y15f{bottom:597.060000px;}
.y1af{bottom:597.240000px;}
.y28{bottom:599.940000px;}
.y9e{bottom:600.120000px;}
.y75{bottom:603.540000px;}
.y16f{bottom:609.120000px;}
.y10f{bottom:610.200000px;}
.yb8{bottom:612.180000px;}
.y59{bottom:614.880000px;}
.y21f{bottom:615.060000px;}
.y1a1{bottom:615.600000px;}
.yf6{bottom:616.680000px;}
.y194{bottom:618.120000px;}
.y208{bottom:620.100000px;}
.y8f{bottom:621.180000px;}
.y1f4{bottom:626.220000px;}
.y1e3{bottom:627.120000px;}
.y145{bottom:627.660000px;}
.y15e{bottom:630.000000px;}
.y1ae{bottom:630.180000px;}
.y9d{bottom:633.060000px;}
.y41{bottom:635.410800px;}
.y27{bottom:635.580000px;}
.y74{bottom:636.660000px;}
.ye{bottom:638.100000px;}
.y22d{bottom:639.000000px;}
.y16e{bottom:642.060000px;}
.yb7{bottom:645.120000px;}
.ye2{bottom:646.040160px;}
.y58{bottom:647.820000px;}
.y1a0{bottom:648.540000px;}
.yf5{bottom:649.620000px;}
.y1c8{bottom:651.060000px;}
.y10e{bottom:652.546620px;}
.yc4{bottom:654.120000px;}
.y1e2{bottom:660.060000px;}
.y144{bottom:660.600000px;}
.y15d{bottom:663.120000px;}
.y207{bottom:665.100000px;}
.y8e{bottom:666.000000px;}
.y73{bottom:669.600000px;}
.y26{bottom:671.220000px;}
.y22c{bottom:671.940000px;}
.ye1{bottom:673.216020px;}
.y16d{bottom:675.000000px;}
.y1bf{bottom:675.180000px;}
.yb6{bottom:678.060000px;}
.yd8{bottom:678.980160px;}
.y10d{bottom:679.722480px;}
.y57{bottom:680.760000px;}
.yf4{bottom:682.560000px;}
.y1c7{bottom:684.000000px;}
.yc3{bottom:687.060000px;}
.y40{bottom:687.607920px;}
.yd{bottom:688.500000px;}
.y21e{bottom:693.000000px;}
.y1e1{bottom:693.180000px;}
.y143{bottom:693.540000px;}
.y1ad{bottom:697.680000px;}
.y8d{bottom:699.120000px;}
.ye0{bottom:700.750440px;}
.y72{bottom:702.540000px;}
.yd7{bottom:706.156020px;}
.y10c{bottom:707.256900px;}
.y206{bottom:707.400000px;}
.y15c{bottom:707.940000px;}
.y1be{bottom:708.120000px;}
.yb5{bottom:711.000000px;}
.yf3{bottom:715.500000px;}
.y25{bottom:716.220000px;}
.y1c6{bottom:716.940000px;}
.yc2{bottom:720.000000px;}
.y56{bottom:725.760000px;}
.y1e0{bottom:726.120000px;}
.y142{bottom:726.480000px;}
.ydf{bottom:728.284860px;}
.y8c{bottom:732.060000px;}
.yd6{bottom:733.690440px;}
.y205{bottom:734.760000px;}
.y10b{bottom:734.791320px;}
.y71{bottom:735.480000px;}
.yc{bottom:735.840000px;}
.y21d{bottom:738.000000px;}
.y3f{bottom:739.987200px;}
.y15b{bottom:740.880000px;}
.y1bd{bottom:741.060000px;}
.yb4{bottom:743.940000px;}
.yf2{bottom:748.440000px;}
.y24{bottom:749.160000px;}
.y1c5{bottom:751.500000px;}
.y183{bottom:752.940000px;}
.yde{bottom:755.640000px;}
.y55{bottom:758.700000px;}
.y1df{bottom:759.060000px;}
.y141{bottom:759.420000px;}
.yd5{bottom:761.224860px;}
.y22b{bottom:761.940000px;}
.y10a{bottom:762.146460px;}
.y8b{bottom:765.000000px;}
.y70{bottom:768.420000px;}
.y21c{bottom:770.940000px;}
.y15a{bottom:774.000000px;}
.yb3{bottom:776.880000px;}
.yb{bottom:779.760000px;}
.yf1{bottom:781.380000px;}
.y23{bottom:782.100000px;}
.y182{bottom:785.880000px;}
.yd4{bottom:788.580000px;}
.y109{bottom:789.680880px;}
.y54{bottom:791.640000px;}
.y1de{bottom:792.000000px;}
.y3e{bottom:792.184320px;}
.y140{bottom:792.360000px;}
.y22a{bottom:794.880000px;}
.y8a{bottom:797.940000px;}
.y6f{bottom:801.360000px;}
.y159{bottom:806.940000px;}
.yb2{bottom:810.000000px;}
.yf0{bottom:814.320000px;}
.y22{bottom:815.040000px;}
.y21b{bottom:815.760000px;}
.y108{bottom:817.036020px;}
.y181{bottom:818.820000px;}
.y53{bottom:824.580000px;}
.ya{bottom:824.760000px;}
.y13f{bottom:825.300000px;}
.y1dd{bottom:826.380000px;}
.y229{bottom:827.820000px;}
.y89{bottom:830.880000px;}
.y3d{bottom:832.507920px;}
.y6e{bottom:834.300000px;}
.y158{bottom:839.880000px;}
.yb1{bottom:842.940000px;}
.y107{bottom:844.570440px;}
.yef{bottom:847.440000px;}
.y21{bottom:848.160000px;}
.y21a{bottom:848.880000px;}
.y180{bottom:851.760000px;}
.y52{bottom:857.520000px;}
.y13e{bottom:858.420000px;}
.y228{bottom:860.760000px;}
.y1dc{bottom:860.940000px;}
.y88{bottom:863.820000px;}
.y6d{bottom:867.240000px;}
.y9{bottom:869.760000px;}
.y106{bottom:872.104860px;}
.y157{bottom:872.820000px;}
.yb0{bottom:875.880000px;}
.yee{bottom:880.380000px;}
.y20{bottom:881.100000px;}
.y219{bottom:881.820000px;}
.y16c{bottom:884.880000px;}
.y3c{bottom:884.887200px;}
.y51{bottom:890.460000px;}
.y13d{bottom:891.360000px;}
.y1db{bottom:893.880000px;}
.y87{bottom:896.760000px;}
.y105{bottom:899.460000px;}
.y156{bottom:905.760000px;}
.yaf{bottom:908.820000px;}
.y1f{bottom:914.040000px;}
.y8{bottom:914.760000px;}
.y6c{bottom:914.940000px;}
.y17f{bottom:917.820000px;}
.yed{bottom:922.721760px;}
.y50{bottom:923.400000px;}
.y13c{bottom:924.300000px;}
.y218{bottom:926.640000px;}
.y1da{bottom:926.820000px;}
.y86{bottom:929.700000px;}
.y3b{bottom:932.580000px;}
.y155{bottom:938.700000px;}
.yae{bottom:941.760000px;}
.y1e{bottom:946.980000px;}
.yec{bottom:949.897620px;}
.y17e{bottom:950.760000px;}
.y4f{bottom:956.520000px;}
.y13b{bottom:957.240000px;}
.y7{bottom:959.580000px;}
.y6b{bottom:962.640000px;}
.y154{bottom:971.640000px;}
.y1bc{bottom:971.820000px;}
.yad{bottom:974.700000px;}
.yeb{bottom:977.432040px;}
.y1d{bottom:979.920000px;}
.y3a{bottom:980.460000px;}
.y17d{bottom:983.700000px;}
.y4e{bottom:989.460000px;}
.y13a{bottom:990.180000px;}
.y85{bottom:995.580000px;}
.y6{bottom:1004.580000px;}
.y1bb{bottom:1004.760000px;}
.yea{bottom:1004.966460px;}
.y6a{bottom:1007.640000px;}
.y1c{bottom:1011.600000px;}
.y153{bottom:1016.640000px;}
.y4d{bottom:1022.400000px;}
.y139{bottom:1023.120000px;}
.y39{bottom:1028.175120px;}
.y84{bottom:1028.700000px;}
.ye9{bottom:1032.321600px;}
.y1f3{bottom:1032.480000px;}
.y1ba{bottom:1037.700000px;}
.y69{bottom:1040.580000px;}
.y5{bottom:1049.580000px;}
.y1b{bottom:1055.160000px;}
.y4c{bottom:1055.340000px;}
.y138{bottom:1056.060000px;}
.ye8{bottom:1059.856020px;}
.y83{bottom:1061.640000px;}
.y1d9{bottom:1070.640000px;}
.y1b9{bottom:1072.080000px;}
.y68{bottom:1073.520000px;}
.y38{bottom:1075.867920px;}
.ye7{bottom:1087.211160px;}
.y137{bottom:1089.000000px;}
.y4{bottom:1094.580000px;}
.y1a{bottom:1098.733680px;}
.y4b{bottom:1102.860000px;}
.y1d8{bottom:1105.020000px;}
.y67{bottom:1106.460000px;}
.y37{bottom:1109.700000px;}
.ye6{bottom:1114.745580px;}
.y36{bottom:1133.460000px;}
.y136{bottom:1136.700000px;}
.y3{bottom:1139.580000px;}
.y19{bottom:1141.027920px;}
.ye5{bottom:1142.280000px;}
.h8{height:49.284492px;}
.hb{height:50.584090px;}
.hc{height:54.542194px;}
.h2{height:54.628594px;}
.ha{height:59.192426px;}
.h9{height:59.298266px;}
.h3{height:59.378906px;}
.h4{height:63.949219px;}
.h5{height:69.473320px;}
.h6{height:78.973945px;}
.h7{height:89.068359px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.xe{left:143.820000px;}
.x19{left:148.860000px;}
.x10{left:154.620000px;}
.x11{left:159.660000px;}
.x3{left:173.880000px;}
.x14{left:181.620000px;}
.x15{left:202.140000px;}
.x18{left:207.720000px;}
.x13{left:212.580000px;}
.x8{left:255.780000px;}
.x9{left:266.936040px;}
.x4{left:281.160000px;}
.xd{left:328.140000px;}
.x7{left:344.880000px;}
.xb{left:350.280000px;}
.x5{left:370.080000px;}
.x6{left:374.040000px;}
.xa{left:395.820000px;}
.xc{left:408.780000px;}
.x12{left:438.120000px;}
.xf{left:442.260000px;}
.x1{left:446.400000px;}
.x16{left:758.340000px;}
.x17{left:765.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls60{letter-spacing:-1.472000pt;}
.ls10{letter-spacing:-1.344000pt;}
.ls21{letter-spacing:-1.216000pt;}
.ls22{letter-spacing:-1.152000pt;}
.ls46{letter-spacing:-1.088000pt;}
.ls4d{letter-spacing:-0.960000pt;}
.ls8d{letter-spacing:-0.896000pt;}
.ls34{letter-spacing:-0.832000pt;}
.ls5a{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.704000pt;}
.ls6b{letter-spacing:-0.690560pt;}
.ls23{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls91{letter-spacing:-0.449280pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls9d{letter-spacing:-0.384000pt;}
.ls87{letter-spacing:-0.371840pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.294400pt;}
.ls86{letter-spacing:-0.265600pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.255360pt;}
.ls16{letter-spacing:-0.235520pt;}
.ls5{letter-spacing:-0.224640pt;}
.ls58{letter-spacing:-0.212480pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls92{letter-spacing:-0.149760pt;}
.ls27{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.085120pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls55{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.053120pt;}
.lsc{letter-spacing:0.064000pt;}
.ls74{letter-spacing:0.074880pt;}
.ls6d{letter-spacing:0.078080pt;}
.ls1{letter-spacing:0.085120pt;}
.lsa5{letter-spacing:0.096000pt;}
.ls78{letter-spacing:0.099200pt;}
.ls8f{letter-spacing:0.099840pt;}
.ls52{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.126720pt;}
.ls20{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.149760pt;}
.ls4f{letter-spacing:0.154048pt;}
.ls4e{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.192000pt;}
.ls56{letter-spacing:0.212480pt;}
.ls13{letter-spacing:0.235520pt;}
.ls45{letter-spacing:0.249600pt;}
.ls6{letter-spacing:0.255360pt;}
.lsd{letter-spacing:0.256000pt;}
.ls72{letter-spacing:0.262400pt;}
.ls50{letter-spacing:0.265600pt;}
.ls80{letter-spacing:0.268800pt;}
.ls38{letter-spacing:0.275200pt;}
.ls75{letter-spacing:0.281600pt;}
.ls9{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.294400pt;}
.ls57{letter-spacing:0.318720pt;}
.lse{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.355904pt;}
.ls53{letter-spacing:0.387776pt;}
.ls7f{letter-spacing:0.448000pt;}
.ls2e{letter-spacing:0.896000pt;}
.ls3a{letter-spacing:0.902400pt;}
.ls93{letter-spacing:0.915200pt;}
.ls2d{letter-spacing:1.536000pt;}
.ls40{letter-spacing:1.542400pt;}
.lsa3{letter-spacing:2.053120pt;}
.ls1c{letter-spacing:2.176000pt;}
.ls9a{letter-spacing:2.182400pt;}
.ls82{letter-spacing:2.188800pt;}
.ls43{letter-spacing:2.195200pt;}
.ls9f{letter-spacing:2.246400pt;}
.ls66{letter-spacing:2.709120pt;}
.ls1e{letter-spacing:2.816000pt;}
.ls77{letter-spacing:2.822400pt;}
.ls79{letter-spacing:2.828800pt;}
.ls36{letter-spacing:3.456000pt;}
.ls49{letter-spacing:3.462400pt;}
.ls9e{letter-spacing:3.468800pt;}
.ls9c{letter-spacing:3.557120pt;}
.ls65{letter-spacing:3.984000pt;}
.ls35{letter-spacing:4.096000pt;}
.ls84{letter-spacing:4.102400pt;}
.ls8b{letter-spacing:4.108800pt;}
.ls83{letter-spacing:4.621440pt;}
.lsb{letter-spacing:4.736000pt;}
.ls7a{letter-spacing:4.748800pt;}
.ls51{letter-spacing:5.258880pt;}
.ls29{letter-spacing:5.376000pt;}
.ls8a{letter-spacing:5.382400pt;}
.ls89{letter-spacing:5.395200pt;}
.ls7e{letter-spacing:5.401600pt;}
.lsa1{letter-spacing:5.893120pt;}
.ls28{letter-spacing:6.016000pt;}
.ls5b{letter-spacing:6.028800pt;}
.ls73{letter-spacing:6.048000pt;}
.ls31{letter-spacing:6.656000pt;}
.ls6e{letter-spacing:6.668800pt;}
.ls1d{letter-spacing:7.296000pt;}
.ls95{letter-spacing:7.302400pt;}
.ls85{letter-spacing:7.308800pt;}
.ls2c{letter-spacing:7.936000pt;}
.ls2b{letter-spacing:7.942400pt;}
.ls37{letter-spacing:8.576000pt;}
.ls8e{letter-spacing:9.136640pt;}
.ls17{letter-spacing:9.216000pt;}
.lsa0{letter-spacing:9.228800pt;}
.ls19{letter-spacing:9.856000pt;}
.ls5f{letter-spacing:9.875200pt;}
.ls4b{letter-spacing:9.881600pt;}
.ls99{letter-spacing:9.957120pt;}
.ls4a{letter-spacing:10.496000pt;}
.ls41{letter-spacing:11.136000pt;}
.ls33{letter-spacing:11.776000pt;}
.ls44{letter-spacing:11.788800pt;}
.ls9b{letter-spacing:12.305920pt;}
.ls1a{letter-spacing:12.416000pt;}
.ls97{letter-spacing:12.422400pt;}
.ls98{letter-spacing:12.953600pt;}
.ls3b{letter-spacing:13.056000pt;}
.ls39{letter-spacing:13.696000pt;}
.ls18{letter-spacing:14.336000pt;}
.ls54{letter-spacing:14.976000pt;}
.ls48{letter-spacing:15.616000pt;}
.ls1f{letter-spacing:16.256000pt;}
.lsa2{letter-spacing:16.268800pt;}
.ls47{letter-spacing:16.896000pt;}
.ls3c{letter-spacing:17.536000pt;}
.ls2a{letter-spacing:18.176000pt;}
.ls64{letter-spacing:18.809792pt;}
.ls5e{letter-spacing:18.816000pt;}
.ls81{letter-spacing:18.835200pt;}
.ls4c{letter-spacing:19.456000pt;}
.ls3d{letter-spacing:20.096000pt;}
.ls94{letter-spacing:20.102400pt;}
.ls2f{letter-spacing:20.736000pt;}
.ls32{letter-spacing:21.376000pt;}
.ls7c{letter-spacing:21.395200pt;}
.ls61{letter-spacing:22.016000pt;}
.ls62{letter-spacing:22.041600pt;}
.ls1b{letter-spacing:22.656000pt;}
.ls70{letter-spacing:22.675200pt;}
.ls63{letter-spacing:23.936000pt;}
.ls5c{letter-spacing:23.942400pt;}
.ls76{letter-spacing:23.961600pt;}
.ls69{letter-spacing:24.576000pt;}
.ls6a{letter-spacing:25.216000pt;}
.ls68{letter-spacing:25.856000pt;}
.ls7b{letter-spacing:26.368000pt;}
.ls67{letter-spacing:26.496000pt;}
.ls90{letter-spacing:27.136000pt;}
.ls30{letter-spacing:27.776000pt;}
.ls88{letter-spacing:29.056000pt;}
.ls5d{letter-spacing:29.561280pt;}
.ls3e{letter-spacing:29.696000pt;}
.ls71{letter-spacing:29.715200pt;}
.ls3f{letter-spacing:30.336000pt;}
.ls42{letter-spacing:30.976000pt;}
.lsa4{letter-spacing:32.256000pt;}
.ls96{letter-spacing:33.536000pt;}
.ls8c{letter-spacing:37.376000pt;}
.ls7d{letter-spacing:39.296000pt;}
.ls6f{letter-spacing:58.368000pt;}
.lsa6{letter-spacing:134.016000pt;}
.ws2{word-spacing:-21.984000pt;}
.ws1{word-spacing:-21.888000pt;}
.ws3{word-spacing:-18.981760pt;}
.ws142{word-spacing:-18.720000pt;}
.wsf8{word-spacing:-16.997760pt;}
.ws0{word-spacing:-16.698240pt;}
.ws12d{word-spacing:-16.256000pt;}
.wsf3{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-14.784000pt;}
.ws94{word-spacing:-14.720000pt;}
.ws52{word-spacing:-14.656000pt;}
.ws2b{word-spacing:-14.592000pt;}
.ws2a{word-spacing:-14.528000pt;}
.wsc{word-spacing:-14.464000pt;}
.ws2d{word-spacing:-14.400000pt;}
.ws2e{word-spacing:-14.336000pt;}
.wsd{word-spacing:-14.272000pt;}
.wsb{word-spacing:-14.208000pt;}
.ws53{word-spacing:-14.144000pt;}
.wsa0{word-spacing:-14.016000pt;}
.ws55{word-spacing:-13.952000pt;}
.ws54{word-spacing:-13.888000pt;}
.wse{word-spacing:-13.760000pt;}
.wsc8{word-spacing:-13.632000pt;}
.ws20{word-spacing:-13.542400pt;}
.ws103{word-spacing:-13.504000pt;}
.ws80{word-spacing:-13.312000pt;}
.ws22{word-spacing:-13.306880pt;}
.wsfc{word-spacing:-13.071360pt;}
.ws21{word-spacing:-13.012480pt;}
.wsa3{word-spacing:-12.323840pt;}
.ws117{word-spacing:-12.164480pt;}
.wsa1{word-spacing:-12.005120pt;}
.wsa2{word-spacing:-11.952000pt;}
.wse0{word-spacing:-11.792640pt;}
.ws59{word-spacing:-1.048320pt;}
.ws1d{word-spacing:-0.704000pt;}
.ws99{word-spacing:-0.576000pt;}
.wsfd{word-spacing:-0.512000pt;}
.ws6{word-spacing:-0.449280pt;}
.ws1e{word-spacing:-0.448000pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws24{word-spacing:-0.294400pt;}
.wsa9{word-spacing:-0.265600pt;}
.ws8{word-spacing:-0.255360pt;}
.ws23{word-spacing:-0.235520pt;}
.wsaa{word-spacing:-0.212480pt;}
.ws38{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.149760pt;}
.ws35{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.117760pt;}
.wsdb{word-spacing:-0.106240pt;}
.ws7{word-spacing:-0.074880pt;}
.ws16{word-spacing:-0.064000pt;}
.wsad{word-spacing:-0.053120pt;}
.ws4{word-spacing:0.000000pt;}
.wsee{word-spacing:0.053120pt;}
.ws5a{word-spacing:0.064000pt;}
.wsa{word-spacing:0.085120pt;}
.wsef{word-spacing:0.106240pt;}
.ws26{word-spacing:0.117760pt;}
.ws51{word-spacing:0.128000pt;}
.ws134{word-spacing:0.149760pt;}
.ws15{word-spacing:0.192000pt;}
.wsac{word-spacing:0.212480pt;}
.ws2f{word-spacing:0.224640pt;}
.ws9{word-spacing:0.255360pt;}
.ws84{word-spacing:0.256000pt;}
.ws11a{word-spacing:0.265600pt;}
.ws5b{word-spacing:0.320000pt;}
.ws25{word-spacing:0.353280pt;}
.wsed{word-spacing:0.371840pt;}
.ws5{word-spacing:0.384000pt;}
.ws28{word-spacing:0.412160pt;}
.ws4b{word-spacing:0.448000pt;}
.ws19{word-spacing:0.512000pt;}
.wsec{word-spacing:0.531200pt;}
.ws44{word-spacing:0.576000pt;}
.ws14c{word-spacing:0.640000pt;}
.wsd5{word-spacing:0.690560pt;}
.ws4d{word-spacing:0.704000pt;}
.ws3f{word-spacing:0.768000pt;}
.ws3e{word-spacing:0.832000pt;}
.ws16c{word-spacing:0.849920pt;}
.ws129{word-spacing:0.896000pt;}
.ws65{word-spacing:0.960000pt;}
.wsfb{word-spacing:1.024000pt;}
.ws29{word-spacing:1.059840pt;}
.ws83{word-spacing:1.088000pt;}
.ws7c{word-spacing:1.152000pt;}
.ws108{word-spacing:1.168640pt;}
.ws3a{word-spacing:1.216000pt;}
.ws169{word-spacing:1.274880pt;}
.ws1b{word-spacing:1.344000pt;}
.ws77{word-spacing:1.408000pt;}
.ws17{word-spacing:1.472000pt;}
.wsb3{word-spacing:1.792000pt;}
.ws5d{word-spacing:1.856000pt;}
.wsf1{word-spacing:1.984000pt;}
.ws12e{word-spacing:2.048000pt;}
.wsf{word-spacing:2.112000pt;}
.wsd9{word-spacing:2.124800pt;}
.wsf9{word-spacing:2.240000pt;}
.wsf4{word-spacing:2.432000pt;}
.ws5c{word-spacing:2.496000pt;}
.wsd8{word-spacing:2.549760pt;}
.ws75{word-spacing:2.624000pt;}
.wsfe{word-spacing:2.688000pt;}
.ws40{word-spacing:2.752000pt;}
.wsd2{word-spacing:2.762240pt;}
.wsb1{word-spacing:2.816000pt;}
.ws100{word-spacing:2.880000pt;}
.ws148{word-spacing:2.921600pt;}
.ws15f{word-spacing:3.072000pt;}
.ws14a{word-spacing:3.080960pt;}
.ws4c{word-spacing:3.136000pt;}
.ws156{word-spacing:3.187200pt;}
.ws76{word-spacing:3.264000pt;}
.ws67{word-spacing:3.328000pt;}
.ws6d{word-spacing:3.392000pt;}
.ws149{word-spacing:3.399680pt;}
.ws87{word-spacing:3.520000pt;}
.ws16b{word-spacing:3.559040pt;}
.ws128{word-spacing:3.648000pt;}
.wscd{word-spacing:3.712000pt;}
.wsc3{word-spacing:3.718400pt;}
.ws6b{word-spacing:3.776000pt;}
.wsd7{word-spacing:3.824640pt;}
.ws6e{word-spacing:3.904000pt;}
.ws155{word-spacing:3.968000pt;}
.ws62{word-spacing:4.032000pt;}
.wsd6{word-spacing:4.037120pt;}
.wscf{word-spacing:4.160000pt;}
.ws6c{word-spacing:4.288000pt;}
.ws7b{word-spacing:4.352000pt;}
.wsa7{word-spacing:4.355840pt;}
.ws1a{word-spacing:4.416000pt;}
.wsa6{word-spacing:4.462080pt;}
.wsb6{word-spacing:4.544000pt;}
.ws93{word-spacing:4.608000pt;}
.ws18{word-spacing:4.672000pt;}
.ws11f{word-spacing:4.674560pt;}
.ws159{word-spacing:4.800000pt;}
.ws120{word-spacing:4.833920pt;}
.ws143{word-spacing:4.928000pt;}
.wse7{word-spacing:4.992000pt;}
.ws107{word-spacing:4.993280pt;}
.ws74{word-spacing:5.056000pt;}
.wsa8{word-spacing:5.099520pt;}
.ws130{word-spacing:5.184000pt;}
.ws126{word-spacing:5.248000pt;}
.ws47{word-spacing:5.312000pt;}
.ws113{word-spacing:5.440000pt;}
.wsab{word-spacing:5.471360pt;}
.wse2{word-spacing:5.630720pt;}
.ws8d{word-spacing:5.632000pt;}
.ws56{word-spacing:5.696000pt;}
.wsb7{word-spacing:5.824000pt;}
.ws9a{word-spacing:5.888000pt;}
.ws14{word-spacing:5.952000pt;}
.ws166{word-spacing:6.080000pt;}
.ws8b{word-spacing:6.208000pt;}
.wse6{word-spacing:6.268160pt;}
.ws8c{word-spacing:6.272000pt;}
.ws4a{word-spacing:6.336000pt;}
.wse9{word-spacing:6.464000pt;}
.ws64{word-spacing:6.528000pt;}
.ws158{word-spacing:6.586880pt;}
.ws42{word-spacing:6.592000pt;}
.ws144{word-spacing:6.720000pt;}
.ws15d{word-spacing:6.848000pt;}
.wsc2{word-spacing:6.905600pt;}
.ws70{word-spacing:6.976000pt;}
.wse5{word-spacing:7.011840pt;}
.ws79{word-spacing:7.104000pt;}
.wsc6{word-spacing:7.168000pt;}
.ws49{word-spacing:7.232000pt;}
.wsc4{word-spacing:7.360000pt;}
.wsd0{word-spacing:7.383680pt;}
.wsa4{word-spacing:7.543040pt;}
.ws123{word-spacing:7.552000pt;}
.ws13{word-spacing:7.616000pt;}
.ws7a{word-spacing:7.744000pt;}
.ws72{word-spacing:7.808000pt;}
.wsa5{word-spacing:7.861760pt;}
.ws12{word-spacing:7.872000pt;}
.ws13c{word-spacing:8.000000pt;}
.ws106{word-spacing:8.021120pt;}
.ws9d{word-spacing:8.064000pt;}
.ws179{word-spacing:8.128000pt;}
.ws12a{word-spacing:8.192000pt;}
.ws92{word-spacing:8.256000pt;}
.ws9c{word-spacing:8.384000pt;}
.wsc5{word-spacing:8.448000pt;}
.ws6f{word-spacing:8.512000pt;}
.ws115{word-spacing:8.576000pt;}
.ws131{word-spacing:8.640000pt;}
.ws16a{word-spacing:8.711680pt;}
.ws171{word-spacing:8.832000pt;}
.ws121{word-spacing:8.871040pt;}
.ws37{word-spacing:8.896000pt;}
.ws95{word-spacing:9.024000pt;}
.ws31{word-spacing:9.152000pt;}
.ws132{word-spacing:9.189760pt;}
.ws15e{word-spacing:9.280000pt;}
.ws10b{word-spacing:9.344000pt;}
.wsc7{word-spacing:9.408000pt;}
.ws71{word-spacing:9.536000pt;}
.ws150{word-spacing:9.614720pt;}
.ws98{word-spacing:9.664000pt;}
.ws39{word-spacing:9.728000pt;}
.ws33{word-spacing:9.792000pt;}
.ws63{word-spacing:9.984000pt;}
.ws138{word-spacing:10.112000pt;}
.ws14b{word-spacing:10.145920pt;}
.ws9f{word-spacing:10.176000pt;}
.ws86{word-spacing:10.304000pt;}
.ws15c{word-spacing:10.368000pt;}
.ws9b{word-spacing:10.432000pt;}
.ws105{word-spacing:10.783360pt;}
.ws85{word-spacing:10.816000pt;}
.ws168{word-spacing:10.889600pt;}
.ws68{word-spacing:10.944000pt;}
.wsc9{word-spacing:11.008000pt;}
.ws11{word-spacing:11.072000pt;}
.ws157{word-spacing:11.102080pt;}
.ws153{word-spacing:11.200000pt;}
.ws69{word-spacing:11.456000pt;}
.wsda{word-spacing:11.527040pt;}
.ws165{word-spacing:11.584000pt;}
.ws163{word-spacing:11.648000pt;}
.ws10{word-spacing:11.712000pt;}
.wsf6{word-spacing:11.840000pt;}
.ws16d{word-spacing:11.898880pt;}
.ws174{word-spacing:12.032000pt;}
.ws90{word-spacing:12.096000pt;}
.ws3b{word-spacing:12.224000pt;}
.ws13a{word-spacing:12.288000pt;}
.ws3c{word-spacing:12.352000pt;}
.wsd1{word-spacing:12.376960pt;}
.wsea{word-spacing:12.672000pt;}
.ws78{word-spacing:12.736000pt;}
.ws151{word-spacing:12.801920pt;}
.ws122{word-spacing:12.928000pt;}
.ws58{word-spacing:12.992000pt;}
.ws91{word-spacing:13.120000pt;}
.wsb5{word-spacing:13.184000pt;}
.ws13b{word-spacing:13.312000pt;}
.ws6a{word-spacing:13.376000pt;}
.wse3{word-spacing:13.439360pt;}
.ws10c{word-spacing:13.504000pt;}
.ws3d{word-spacing:13.568000pt;}
.ws32{word-spacing:13.632000pt;}
.ws36{word-spacing:14.016000pt;}
.ws109{word-spacing:14.076800pt;}
.ws13e{word-spacing:14.208000pt;}
.ws34{word-spacing:14.272000pt;}
.wsbe{word-spacing:14.289280pt;}
.ws145{word-spacing:14.400000pt;}
.wsbf{word-spacing:14.448640pt;}
.wsf5{word-spacing:14.464000pt;}
.ws136{word-spacing:14.528000pt;}
.ws135{word-spacing:14.592000pt;}
.ws104{word-spacing:14.656000pt;}
.ws111{word-spacing:14.784000pt;}
.ws73{word-spacing:14.912000pt;}
.ws140{word-spacing:15.040000pt;}
.ws16e{word-spacing:15.232000pt;}
.ws11d{word-spacing:15.245440pt;}
.ws4f{word-spacing:15.296000pt;}
.wsae{word-spacing:15.424000pt;}
.ws1c{word-spacing:15.552000pt;}
.ws11c{word-spacing:15.564160pt;}
.ws11b{word-spacing:15.723520pt;}
.ws11e{word-spacing:15.882880pt;}
.ws50{word-spacing:15.936000pt;}
.ws4e{word-spacing:16.192000pt;}
.ws161{word-spacing:16.320000pt;}
.wseb{word-spacing:16.512000pt;}
.wsdc{word-spacing:16.576000pt;}
.ws96{word-spacing:16.832000pt;}
.ws162{word-spacing:16.960000pt;}
.wsfa{word-spacing:17.024000pt;}
.wsbb{word-spacing:17.216000pt;}
.wsf0{word-spacing:17.344000pt;}
.ws119{word-spacing:17.408000pt;}
.ws7d{word-spacing:17.472000pt;}
.ws8f{word-spacing:17.664000pt;}
.ws8e{word-spacing:17.856000pt;}
.wsff{word-spacing:17.984000pt;}
.ws57{word-spacing:18.112000pt;}
.ws152{word-spacing:18.113920pt;}
.ws7f{word-spacing:18.368000pt;}
.wsba{word-spacing:18.432000pt;}
.ws10f{word-spacing:18.496000pt;}
.wsd4{word-spacing:18.538880pt;}
.ws141{word-spacing:18.688000pt;}
.wsd3{word-spacing:18.751360pt;}
.ws7e{word-spacing:18.752000pt;}
.ws118{word-spacing:18.880000pt;}
.wscc{word-spacing:19.072000pt;}
.ws9e{word-spacing:19.136000pt;}
.ws139{word-spacing:19.264000pt;}
.ws48{word-spacing:19.392000pt;}
.ws177{word-spacing:19.712000pt;}
.wsb8{word-spacing:19.776000pt;}
.wsca{word-spacing:19.904000pt;}
.wsb0{word-spacing:20.032000pt;}
.ws14f{word-spacing:20.160000pt;}
.wscb{word-spacing:20.288000pt;}
.ws112{word-spacing:20.352000pt;}
.ws60{word-spacing:20.416000pt;}
.wsb9{word-spacing:20.608000pt;}
.ws61{word-spacing:20.672000pt;}
.ws133{word-spacing:20.992000pt;}
.ws97{word-spacing:21.056000pt;}
.ws66{word-spacing:21.312000pt;}
.ws10d{word-spacing:21.696000pt;}
.ws160{word-spacing:21.824000pt;}
.wsb4{word-spacing:21.952000pt;}
.ws45{word-spacing:22.336000pt;}
.wse1{word-spacing:22.464000pt;}
.ws46{word-spacing:22.592000pt;}
.wsb2{word-spacing:22.848000pt;}
.ws13f{word-spacing:22.976000pt;}
.ws43{word-spacing:23.232000pt;}
.ws15a{word-spacing:23.616000pt;}
.wsbd{word-spacing:23.872000pt;}
.ws15b{word-spacing:24.000000pt;}
.wsbc{word-spacing:24.256000pt;}
.wsce{word-spacing:24.512000pt;}
.wsde{word-spacing:24.896000pt;}
.wsdf{word-spacing:25.152000pt;}
.ws127{word-spacing:25.536000pt;}
.ws114{word-spacing:25.792000pt;}
.wsdd{word-spacing:26.176000pt;}
.wsf7{word-spacing:26.432000pt;}
.ws116{word-spacing:26.816000pt;}
.ws10e{word-spacing:27.072000pt;}
.ws5f{word-spacing:27.456000pt;}
.ws5e{word-spacing:27.712000pt;}
.ws124{word-spacing:28.032000pt;}
.ws101{word-spacing:28.096000pt;}
.ws41{word-spacing:28.352000pt;}
.ws102{word-spacing:28.480000pt;}
.ws125{word-spacing:28.736000pt;}
.ws12f{word-spacing:28.992000pt;}
.ws137{word-spacing:29.376000pt;}
.wsc0{word-spacing:29.428480pt;}
.ws164{word-spacing:29.632000pt;}
.wsc1{word-spacing:29.800320pt;}
.ws82{word-spacing:30.016000pt;}
.ws81{word-spacing:30.272000pt;}
.ws8a{word-spacing:30.656000pt;}
.ws10a{word-spacing:30.848000pt;}
.ws89{word-spacing:30.912000pt;}
.ws147{word-spacing:31.552000pt;}
.ws88{word-spacing:31.808000pt;}
.ws167{word-spacing:31.936000pt;}
.wse4{word-spacing:32.190720pt;}
.ws146{word-spacing:32.192000pt;}
.ws14e{word-spacing:32.832000pt;}
.wsaf{word-spacing:33.216000pt;}
.ws14d{word-spacing:33.472000pt;}
.wsf2{word-spacing:33.856000pt;}
.ws13d{word-spacing:34.112000pt;}
.wse8{word-spacing:34.752000pt;}
.ws154{word-spacing:36.032000pt;}
.ws12c{word-spacing:37.056000pt;}
.ws12b{word-spacing:37.312000pt;}
.ws110{word-spacing:39.872000pt;}
.ws176{word-spacing:44.992000pt;}
.ws175{word-spacing:45.632000pt;}
.ws172{word-spacing:133.824000pt;}
.ws173{word-spacing:133.952000pt;}
.ws170{word-spacing:199.232000pt;}
.ws16f{word-spacing:200.128000pt;}
.ws178{word-spacing:375.232000pt;}
._7{margin-left:-12.456960pt;}
._5{margin-left:-11.246080pt;}
._6{margin-left:-7.782400pt;}
._1c{margin-left:-4.275200pt;}
._4{margin-left:-2.954240pt;}
._19{margin-left:-2.054400pt;}
._1{margin-left:-1.123200pt;}
._0{width:1.024000pt;}
._b{width:2.108800pt;}
._11{width:3.033600pt;}
._3{width:4.150400pt;}
._2{width:5.417600pt;}
._d{width:6.464000pt;}
._e{width:8.128000pt;}
._9{width:9.024000pt;}
._8{width:9.984000pt;}
._14{width:11.136000pt;}
._20{width:12.038400pt;}
._a{width:12.934400pt;}
._21{width:15.360000pt;}
._f{width:16.256000pt;}
._1a{width:17.171200pt;}
._10{width:18.112000pt;}
._17{width:19.360000pt;}
._13{width:20.352000pt;}
._1d{width:21.923200pt;}
._c{width:22.832000pt;}
._18{width:23.878400pt;}
._1b{width:25.875200pt;}
._12{width:27.241600pt;}
._1e{width:28.211200pt;}
._1f{width:29.104000pt;}
._16{width:30.819200pt;}
._15{width:32.192000pt;}
._24{width:45.801600pt;}
._22{width:78.336000pt;}
._23{width:133.248000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:67.461923pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.205760pt;}
.y1{bottom:69.120000pt;}
.y1aa{bottom:99.360000pt;}
.y133{bottom:99.840000pt;}
.y16b{bottom:101.120000pt;}
.yd3{bottom:101.920000pt;}
.y17b{bottom:104.640000pt;}
.y203{bottom:105.120000pt;}
.y193{bottom:108.160000pt;}
.y1f2{bottom:108.809920pt;}
.y19f{bottom:109.760000pt;}
.y126{bottom:109.920000pt;}
.y213{bottom:111.680000pt;}
.yac{bottom:112.640000pt;}
.ydc{bottom:115.680000pt;}
.y35{bottom:120.480000pt;}
.y9c{bottom:120.640000pt;}
.y237{bottom:120.800000pt;}
.y11d{bottom:121.440000pt;}
.yc1{bottom:123.360000pt;}
.y1ac{bottom:123.840000pt;}
.y217{bottom:125.920000pt;}
.y1a2{bottom:126.400000pt;}
.y104{bottom:127.360000pt;}
.y1d7{bottom:127.680000pt;}
.y1a9{bottom:128.640000pt;}
.y132{bottom:129.120000pt;}
.y16a{bottom:130.400000pt;}
.yd2{bottom:131.360000pt;}
.y1f1{bottom:133.284960pt;}
.y17a{bottom:133.920000pt;}
.y202{bottom:134.400000pt;}
.y18{bottom:135.840000pt;}
.y152{bottom:137.120000pt;}
.y192{bottom:137.440000pt;}
.y125{bottom:139.200000pt;}
.y1c4{bottom:139.360000pt;}
.yab{bottom:141.920000pt;}
.ydb{bottom:144.960000pt;}
.y19e{bottom:149.760000pt;}
.y9b{bottom:149.920000pt;}
.y11c{bottom:150.880000pt;}
.y212{bottom:151.520000pt;}
.y34{bottom:152.320000pt;}
.y236{bottom:152.480000pt;}
.yc0{bottom:152.640000pt;}
.y1ab{bottom:154.400000pt;}
.y66{bottom:155.040000pt;}
.y82{bottom:155.680000pt;}
.y103{bottom:156.640000pt;}
.y1d6{bottom:156.960000pt;}
.y1f0{bottom:157.760000pt;}
.y1a8{bottom:157.920000pt;}
.y131{bottom:158.400000pt;}
.y169{bottom:159.680000pt;}
.yd1{bottom:160.640000pt;}
.y179{bottom:163.360000pt;}
.y201{bottom:163.680000pt;}
.y216{bottom:165.920000pt;}
.y151{bottom:166.400000pt;}
.y191{bottom:166.720000pt;}
.y124{bottom:168.480000pt;}
.yaa{bottom:171.200000pt;}
.y4a{bottom:172.953600pt;}
.yda{bottom:174.400000pt;}
.y17{bottom:179.200000pt;}
.y11b{bottom:180.160000pt;}
.ybf{bottom:181.920000pt;}
.y33{bottom:184.000000pt;}
.y65{bottom:184.320000pt;}
.y81{bottom:184.960000pt;}
.y102{bottom:185.920000pt;}
.y1d5{bottom:186.400000pt;}
.y1a7{bottom:187.200000pt;}
.y130{bottom:187.680000pt;}
.y168{bottom:188.960000pt;}
.y19d{bottom:189.760000pt;}
.yd0{bottom:189.920000pt;}
.y211{bottom:191.520000pt;}
.y235{bottom:192.480000pt;}
.y178{bottom:192.640000pt;}
.y200{bottom:192.960000pt;}
.y1ef{bottom:195.200000pt;}
.y150{bottom:195.680000pt;}
.y190{bottom:196.000000pt;}
.y123{bottom:197.920000pt;}
.ya9{bottom:200.480000pt;}
.yd9{bottom:203.680000pt;}
.y49{bottom:204.160000pt;}
.y215{bottom:205.760000pt;}
.y9a{bottom:208.480000pt;}
.y1c3{bottom:208.640000pt;}
.y11a{bottom:209.440000pt;}
.ybe{bottom:211.200000pt;}
.y64{bottom:213.600000pt;}
.y80{bottom:214.240000pt;}
.y1d4{bottom:215.680000pt;}
.y32{bottom:215.840000pt;}
.y1b8{bottom:216.480000pt;}
.y12f{bottom:216.960000pt;}
.ycf{bottom:219.200000pt;}
.y177{bottom:221.920000pt;}
.y1ff{bottom:222.240000pt;}
.y1ee{bottom:224.480000pt;}
.y14f{bottom:224.960000pt;}
.y18f{bottom:225.280000pt;}
.y101{bottom:225.920000pt;}
.y167{bottom:226.560000pt;}
.y122{bottom:227.200000pt;}
.y48{bottom:227.680000pt;}
.y19c{bottom:229.760000pt;}
.y135{bottom:229.920000pt;}
.y16{bottom:231.200000pt;}
.y210{bottom:231.520000pt;}
.y234{bottom:232.320000pt;}
.ye4{bottom:232.960000pt;}
.y99{bottom:237.760000pt;}
.y1c2{bottom:237.920000pt;}
.y119{bottom:238.720000pt;}
.ya8{bottom:240.480000pt;}
.y63{bottom:242.880000pt;}
.y7f{bottom:243.520000pt;}
.y1b7{bottom:245.760000pt;}
.y12e{bottom:246.240000pt;}
.y31{bottom:247.520000pt;}
.yce{bottom:248.480000pt;}
.y166{bottom:250.880000pt;}
.y176{bottom:251.200000pt;}
.y1fe{bottom:251.680000pt;}
.y1d3{bottom:253.280000pt;}
.y1ed{bottom:253.920000pt;}
.y14e{bottom:254.240000pt;}
.y100{bottom:255.200000pt;}
.y121{bottom:256.480000pt;}
.y227{bottom:259.040000pt;}
.y134{bottom:259.200000pt;}
.y233{bottom:261.760000pt;}
.ye3{bottom:262.240000pt;}
.y18e{bottom:265.280000pt;}
.y98{bottom:267.040000pt;}
.y1c1{bottom:267.200000pt;}
.y118{bottom:268.000000pt;}
.y19b{bottom:269.600000pt;}
.ya7{bottom:269.760000pt;}
.y20f{bottom:271.520000pt;}
.y62{bottom:272.160000pt;}
.y7e{bottom:272.960000pt;}
.y165{bottom:275.360000pt;}
.y12d{bottom:275.520000pt;}
.y1d2{bottom:277.627840pt;}
.ycd{bottom:277.760000pt;}
.y30{bottom:279.200000pt;}
.y175{bottom:280.480000pt;}
.y1fd{bottom:280.960000pt;}
.y1ec{bottom:283.200000pt;}
.y15{bottom:283.520000pt;}
.yff{bottom:284.480000pt;}
.y120{bottom:285.760000pt;}
.y47{bottom:285.939200pt;}
.ydd{bottom:288.480000pt;}
.y97{bottom:296.320000pt;}
.y1c0{bottom:296.480000pt;}
.y117{bottom:297.280000pt;}
.y226{bottom:298.880000pt;}
.ya6{bottom:299.040000pt;}
.y164{bottom:299.680000pt;}
.y61{bottom:301.440000pt;}
.y232{bottom:301.600000pt;}
.y1d1{bottom:301.943520pt;}
.y7d{bottom:302.240000pt;}
.y18d{bottom:302.880000pt;}
.y12c{bottom:304.960000pt;}
.y204{bottom:307.040000pt;}
.y1b6{bottom:307.699200pt;}
.y19a{bottom:309.600000pt;}
.y174{bottom:309.760000pt;}
.y1fc{bottom:310.240000pt;}
.y2f{bottom:311.040000pt;}
.y20e{bottom:311.360000pt;}
.y1eb{bottom:312.480000pt;}
.y14d{bottom:312.800000pt;}
.yfe{bottom:313.760000pt;}
.y11f{bottom:315.040000pt;}
.ycc{bottom:317.760000pt;}
.y163{bottom:324.160000pt;}
.y96{bottom:325.760000pt;}
.y1d0{bottom:326.418560pt;}
.y116{bottom:326.560000pt;}
.y18c{bottom:327.200000pt;}
.ya5{bottom:328.320000pt;}
.y60{bottom:330.720000pt;}
.y231{bottom:330.880000pt;}
.y7c{bottom:331.520000pt;}
.y1b5{bottom:332.174240pt;}
.y46{bottom:332.498560pt;}
.y12b{bottom:334.240000pt;}
.y14{bottom:335.520000pt;}
.y225{bottom:338.880000pt;}
.y173{bottom:339.040000pt;}
.y1fb{bottom:339.520000pt;}
.y1ea{bottom:341.760000pt;}
.y14c{bottom:342.080000pt;}
.y2e{bottom:342.720000pt;}
.yfd{bottom:343.040000pt;}
.y171{bottom:344.320000pt;}
.y189{bottom:344.480000pt;}
.ycb{bottom:347.040000pt;}
.y162{bottom:348.480000pt;}
.y199{bottom:349.600000pt;}
.y1cf{bottom:350.734240pt;}
.y20d{bottom:351.360000pt;}
.y18b{bottom:351.680000pt;}
.y95{bottom:355.040000pt;}
.y115{bottom:355.840000pt;}
.y1b4{bottom:356.489920pt;}
.ya4{bottom:357.760000pt;}
.y5f{bottom:360.160000pt;}
.y230{bottom:360.320000pt;}
.y7b{bottom:360.800000pt;}
.y12a{bottom:360.979200pt;}
.y214{bottom:365.600000pt;}
.y224{bottom:368.160000pt;}
.y172{bottom:368.320000pt;}
.y1fa{bottom:368.800000pt;}
.y188{bottom:368.960000pt;}
.y1e9{bottom:371.040000pt;}
.y14b{bottom:371.520000pt;}
.yfc{bottom:372.320000pt;}
.y161{bottom:372.960000pt;}
.y170{bottom:373.600000pt;}
.y1a6{bottom:373.760000pt;}
.y2d{bottom:374.560000pt;}
.y1ce{bottom:375.209280pt;}
.y18a{bottom:376.000000pt;}
.yca{bottom:376.320000pt;}
.y45{bottom:378.896000pt;}
.y1b3{bottom:380.964960pt;}
.y94{bottom:384.320000pt;}
.y114{bottom:385.120000pt;}
.y13{bottom:385.440000pt;}
.y129{bottom:385.454240pt;}
.ya3{bottom:387.040000pt;}
.y198{bottom:389.600000pt;}
.y7a{bottom:390.080000pt;}
.y20c{bottom:391.360000pt;}
.y187{bottom:393.440000pt;}
.y160{bottom:397.280000pt;}
.ybd{bottom:397.600000pt;}
.y1f9{bottom:398.080000pt;}
.y1cd{bottom:399.524960pt;}
.y5e{bottom:400.000000pt;}
.y1e8{bottom:400.320000pt;}
.y14a{bottom:400.800000pt;}
.yfb{bottom:401.600000pt;}
.y1a5{bottom:403.040000pt;}
.y1b2{bottom:405.440000pt;}
.yc9{bottom:405.600000pt;}
.y2c{bottom:406.240000pt;}
.y223{bottom:408.160000pt;}
.y12{bottom:408.950720pt;}
.y128{bottom:409.769920pt;}
.y93{bottom:413.600000pt;}
.y113{bottom:414.560000pt;}
.ya2{bottom:416.320000pt;}
.y186{bottom:417.760000pt;}
.y79{bottom:419.360000pt;}
.y1cc{bottom:424.000000pt;}
.y44{bottom:425.455360pt;}
.ybc{bottom:426.880000pt;}
.y1f8{bottom:427.360000pt;}
.y5d{bottom:429.280000pt;}
.y197{bottom:429.440000pt;}
.y1e7{bottom:429.600000pt;}
.y149{bottom:430.080000pt;}
.yfa{bottom:430.880000pt;}
.y20b{bottom:431.360000pt;}
.y1a4{bottom:432.320000pt;}
.y127{bottom:434.244960pt;}
.yc8{bottom:434.880000pt;}
.y11{bottom:435.040000pt;}
.y222{bottom:437.440000pt;}
.y2b{bottom:437.920000pt;}
.y185{bottom:442.240000pt;}
.y92{bottom:442.880000pt;}
.y112{bottom:443.840000pt;}
.ya1{bottom:445.600000pt;}
.y78{bottom:448.640000pt;}
.y11e{bottom:453.600000pt;}
.ybb{bottom:456.320000pt;}
.y1f7{bottom:456.640000pt;}
.y5c{bottom:458.720000pt;}
.y1e6{bottom:458.880000pt;}
.y148{bottom:459.360000pt;}
.yf9{bottom:460.160000pt;}
.y1cb{bottom:461.600000pt;}
.y1a3{bottom:462.880000pt;}
.yc7{bottom:464.160000pt;}
.y184{bottom:466.560000pt;}
.y221{bottom:466.720000pt;}
.y196{bottom:469.440000pt;}
.y2a{bottom:469.760000pt;}
.y20a{bottom:471.200000pt;}
.y43{bottom:471.852800pt;}
.y91{bottom:472.160000pt;}
.y1b1{bottom:472.320000pt;}
.ya0{bottom:474.880000pt;}
.y77{bottom:477.920000pt;}
.y10{bottom:482.400000pt;}
.y17c{bottom:482.880000pt;}
.y111{bottom:483.680000pt;}
.yba{bottom:485.600000pt;}
.y1f6{bottom:485.920000pt;}
.y5b{bottom:488.000000pt;}
.y1e5{bottom:488.160000pt;}
.y147{bottom:488.640000pt;}
.yf8{bottom:489.600000pt;}
.y1ca{bottom:490.880000pt;}
.yc6{bottom:493.440000pt;}
.y22f{bottom:498.720000pt;}
.y29{bottom:501.440000pt;}
.y1b0{bottom:501.600000pt;}
.y9f{bottom:504.160000pt;}
.y220{bottom:506.720000pt;}
.y76{bottom:507.200000pt;}
.y195{bottom:509.440000pt;}
.y209{bottom:511.200000pt;}
.y90{bottom:512.160000pt;}
.y110{bottom:513.120000pt;}
.yb9{bottom:514.880000pt;}
.y5a{bottom:517.280000pt;}
.y1e4{bottom:517.600000pt;}
.y146{bottom:517.920000pt;}
.y42{bottom:518.250240pt;}
.yf7{bottom:518.880000pt;}
.y1c9{bottom:520.160000pt;}
.yc5{bottom:522.880000pt;}
.yf{bottom:524.960000pt;}
.y1f5{bottom:525.920000pt;}
.y22e{bottom:528.000000pt;}
.y15f{bottom:530.720000pt;}
.y1af{bottom:530.880000pt;}
.y28{bottom:533.280000pt;}
.y9e{bottom:533.440000pt;}
.y75{bottom:536.480000pt;}
.y16f{bottom:541.440000pt;}
.y10f{bottom:542.400000pt;}
.yb8{bottom:544.160000pt;}
.y59{bottom:546.560000pt;}
.y21f{bottom:546.720000pt;}
.y1a1{bottom:547.200000pt;}
.yf6{bottom:548.160000pt;}
.y194{bottom:549.440000pt;}
.y208{bottom:551.200000pt;}
.y8f{bottom:552.160000pt;}
.y1f4{bottom:556.640000pt;}
.y1e3{bottom:557.440000pt;}
.y145{bottom:557.920000pt;}
.y15e{bottom:560.000000pt;}
.y1ae{bottom:560.160000pt;}
.y9d{bottom:562.720000pt;}
.y41{bottom:564.809600pt;}
.y27{bottom:564.960000pt;}
.y74{bottom:565.920000pt;}
.ye{bottom:567.200000pt;}
.y22d{bottom:568.000000pt;}
.y16e{bottom:570.720000pt;}
.yb7{bottom:573.440000pt;}
.ye2{bottom:574.257920pt;}
.y58{bottom:575.840000pt;}
.y1a0{bottom:576.480000pt;}
.yf5{bottom:577.440000pt;}
.y1c8{bottom:578.720000pt;}
.y10e{bottom:580.041440pt;}
.yc4{bottom:581.440000pt;}
.y1e2{bottom:586.720000pt;}
.y144{bottom:587.200000pt;}
.y15d{bottom:589.440000pt;}
.y207{bottom:591.200000pt;}
.y8e{bottom:592.000000pt;}
.y73{bottom:595.200000pt;}
.y26{bottom:596.640000pt;}
.y22c{bottom:597.280000pt;}
.ye1{bottom:598.414240pt;}
.y16d{bottom:600.000000pt;}
.y1bf{bottom:600.160000pt;}
.yb6{bottom:602.720000pt;}
.yd8{bottom:603.537920pt;}
.y10d{bottom:604.197760pt;}
.y57{bottom:605.120000pt;}
.yf4{bottom:606.720000pt;}
.y1c7{bottom:608.000000pt;}
.yc3{bottom:610.720000pt;}
.y40{bottom:611.207040pt;}
.yd{bottom:612.000000pt;}
.y21e{bottom:616.000000pt;}
.y1e1{bottom:616.160000pt;}
.y143{bottom:616.480000pt;}
.y1ad{bottom:620.160000pt;}
.y8d{bottom:621.440000pt;}
.ye0{bottom:622.889280pt;}
.y72{bottom:624.480000pt;}
.yd7{bottom:627.694240pt;}
.y10c{bottom:628.672800pt;}
.y206{bottom:628.800000pt;}
.y15c{bottom:629.280000pt;}
.y1be{bottom:629.440000pt;}
.yb5{bottom:632.000000pt;}
.yf3{bottom:636.000000pt;}
.y25{bottom:636.640000pt;}
.y1c6{bottom:637.280000pt;}
.yc2{bottom:640.000000pt;}
.y56{bottom:645.120000pt;}
.y1e0{bottom:645.440000pt;}
.y142{bottom:645.760000pt;}
.ydf{bottom:647.364320pt;}
.y8c{bottom:650.720000pt;}
.yd6{bottom:652.169280pt;}
.y205{bottom:653.120000pt;}
.y10b{bottom:653.147840pt;}
.y71{bottom:653.760000pt;}
.yc{bottom:654.080000pt;}
.y21d{bottom:656.000000pt;}
.y3f{bottom:657.766400pt;}
.y15b{bottom:658.560000pt;}
.y1bd{bottom:658.720000pt;}
.yb4{bottom:661.280000pt;}
.yf2{bottom:665.280000pt;}
.y24{bottom:665.920000pt;}
.y1c5{bottom:668.000000pt;}
.y183{bottom:669.280000pt;}
.yde{bottom:671.680000pt;}
.y55{bottom:674.400000pt;}
.y1df{bottom:674.720000pt;}
.y141{bottom:675.040000pt;}
.yd5{bottom:676.644320pt;}
.y22b{bottom:677.280000pt;}
.y10a{bottom:677.463520pt;}
.y8b{bottom:680.000000pt;}
.y70{bottom:683.040000pt;}
.y21c{bottom:685.280000pt;}
.y15a{bottom:688.000000pt;}
.yb3{bottom:690.560000pt;}
.yb{bottom:693.120000pt;}
.yf1{bottom:694.560000pt;}
.y23{bottom:695.200000pt;}
.y182{bottom:698.560000pt;}
.yd4{bottom:700.960000pt;}
.y109{bottom:701.938560pt;}
.y54{bottom:703.680000pt;}
.y1de{bottom:704.000000pt;}
.y3e{bottom:704.163840pt;}
.y140{bottom:704.320000pt;}
.y22a{bottom:706.560000pt;}
.y8a{bottom:709.280000pt;}
.y6f{bottom:712.320000pt;}
.y159{bottom:717.280000pt;}
.yb2{bottom:720.000000pt;}
.yf0{bottom:723.840000pt;}
.y22{bottom:724.480000pt;}
.y21b{bottom:725.120000pt;}
.y108{bottom:726.254240pt;}
.y181{bottom:727.840000pt;}
.y53{bottom:732.960000pt;}
.ya{bottom:733.120000pt;}
.y13f{bottom:733.600000pt;}
.y1dd{bottom:734.560000pt;}
.y229{bottom:735.840000pt;}
.y89{bottom:738.560000pt;}
.y3d{bottom:740.007040pt;}
.y6e{bottom:741.600000pt;}
.y158{bottom:746.560000pt;}
.yb1{bottom:749.280000pt;}
.y107{bottom:750.729280pt;}
.yef{bottom:753.280000pt;}
.y21{bottom:753.920000pt;}
.y21a{bottom:754.560000pt;}
.y180{bottom:757.120000pt;}
.y52{bottom:762.240000pt;}
.y13e{bottom:763.040000pt;}
.y228{bottom:765.120000pt;}
.y1dc{bottom:765.280000pt;}
.y88{bottom:767.840000pt;}
.y6d{bottom:770.880000pt;}
.y9{bottom:773.120000pt;}
.y106{bottom:775.204320pt;}
.y157{bottom:775.840000pt;}
.yb0{bottom:778.560000pt;}
.yee{bottom:782.560000pt;}
.y20{bottom:783.200000pt;}
.y219{bottom:783.840000pt;}
.y16c{bottom:786.560000pt;}
.y3c{bottom:786.566400pt;}
.y51{bottom:791.520000pt;}
.y13d{bottom:792.320000pt;}
.y1db{bottom:794.560000pt;}
.y87{bottom:797.120000pt;}
.y105{bottom:799.520000pt;}
.y156{bottom:805.120000pt;}
.yaf{bottom:807.840000pt;}
.y1f{bottom:812.480000pt;}
.y8{bottom:813.120000pt;}
.y6c{bottom:813.280000pt;}
.y17f{bottom:815.840000pt;}
.yed{bottom:820.197120pt;}
.y50{bottom:820.800000pt;}
.y13c{bottom:821.600000pt;}
.y218{bottom:823.680000pt;}
.y1da{bottom:823.840000pt;}
.y86{bottom:826.400000pt;}
.y3b{bottom:828.960000pt;}
.y155{bottom:834.400000pt;}
.yae{bottom:837.120000pt;}
.y1e{bottom:841.760000pt;}
.yec{bottom:844.353440pt;}
.y17e{bottom:845.120000pt;}
.y4f{bottom:850.240000pt;}
.y13b{bottom:850.880000pt;}
.y7{bottom:852.960000pt;}
.y6b{bottom:855.680000pt;}
.y154{bottom:863.680000pt;}
.y1bc{bottom:863.840000pt;}
.yad{bottom:866.400000pt;}
.yeb{bottom:868.828480pt;}
.y1d{bottom:871.040000pt;}
.y3a{bottom:871.520000pt;}
.y17d{bottom:874.400000pt;}
.y4e{bottom:879.520000pt;}
.y13a{bottom:880.160000pt;}
.y85{bottom:884.960000pt;}
.y6{bottom:892.960000pt;}
.y1bb{bottom:893.120000pt;}
.yea{bottom:893.303520pt;}
.y6a{bottom:895.680000pt;}
.y1c{bottom:899.200000pt;}
.y153{bottom:903.680000pt;}
.y4d{bottom:908.800000pt;}
.y139{bottom:909.440000pt;}
.y39{bottom:913.933440pt;}
.y84{bottom:914.400000pt;}
.ye9{bottom:917.619200pt;}
.y1f3{bottom:917.760000pt;}
.y1ba{bottom:922.400000pt;}
.y69{bottom:924.960000pt;}
.y5{bottom:932.960000pt;}
.y1b{bottom:937.920000pt;}
.y4c{bottom:938.080000pt;}
.y138{bottom:938.720000pt;}
.ye8{bottom:942.094240pt;}
.y83{bottom:943.680000pt;}
.y1d9{bottom:951.680000pt;}
.y1b9{bottom:952.960000pt;}
.y68{bottom:954.240000pt;}
.y38{bottom:956.327040pt;}
.ye7{bottom:966.409920pt;}
.y137{bottom:968.000000pt;}
.y4{bottom:972.960000pt;}
.y1a{bottom:976.652160pt;}
.y4b{bottom:980.320000pt;}
.y1d8{bottom:982.240000pt;}
.y67{bottom:983.520000pt;}
.y37{bottom:986.400000pt;}
.ye6{bottom:990.884960pt;}
.y36{bottom:1007.520000pt;}
.y136{bottom:1010.400000pt;}
.y3{bottom:1012.960000pt;}
.y19{bottom:1014.247040pt;}
.ye5{bottom:1015.360000pt;}
.h8{height:43.808438pt;}
.hb{height:44.963635pt;}
.hc{height:48.481950pt;}
.h2{height:48.558750pt;}
.ha{height:52.615490pt;}
.h9{height:52.709570pt;}
.h3{height:52.781250pt;}
.h4{height:56.843750pt;}
.h5{height:61.754062pt;}
.h6{height:70.199062pt;}
.h7{height:79.171875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.xe{left:127.840000pt;}
.x19{left:132.320000pt;}
.x10{left:137.440000pt;}
.x11{left:141.920000pt;}
.x3{left:154.560000pt;}
.x14{left:161.440000pt;}
.x15{left:179.680000pt;}
.x18{left:184.640000pt;}
.x13{left:188.960000pt;}
.x8{left:227.360000pt;}
.x9{left:237.276480pt;}
.x4{left:249.920000pt;}
.xd{left:291.680000pt;}
.x7{left:306.560000pt;}
.xb{left:311.360000pt;}
.x5{left:328.960000pt;}
.x6{left:332.480000pt;}
.xa{left:351.840000pt;}
.xc{left:363.360000pt;}
.x12{left:389.440000pt;}
.xf{left:393.120000pt;}
.x1{left:396.800000pt;}
.x16{left:674.080000pt;}
.x17{left:680.320000pt;}
}




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