
    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_8e4f68b54780d15cf3555649.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_ec73be7fdf9b0b67ab0507fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_710db9577317f776f15aa25e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_8bd77327cb7c576ac56ed490.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_3efa94a55160d6a3e2b6b1cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_8bbfbbfd5234c607dad7758d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_1018bffd98ed99bfd9deeff3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_7920393661d69e3519a56e0d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.207031;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_b63def62313892d56d43db15.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9c3c484e42788699a3708a04.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-0.801360px;}
.ls6a{letter-spacing:-0.787050px;}
.ls5e{letter-spacing:-0.767016px;}
.ls45{letter-spacing:-0.744120px;}
.ls2c{letter-spacing:-0.686880px;}
.ls5d{letter-spacing:-0.651964px;}
.ls33{letter-spacing:-0.629640px;}
.ls8{letter-spacing:-0.575262px;}
.ls11{letter-spacing:-0.572400px;}
.ls17{letter-spacing:-0.515160px;}
.ls2b{letter-spacing:-0.457920px;}
.ls6{letter-spacing:-0.421859px;}
.ls2d{letter-spacing:-0.400680px;}
.ls9{letter-spacing:-0.383508px;}
.ls21{letter-spacing:-0.343440px;}
.ls71{letter-spacing:-0.286200px;}
.ls5{letter-spacing:-0.237546px;}
.ls12{letter-spacing:-0.228960px;}
.ls5c{letter-spacing:-0.191754px;}
.ls19{letter-spacing:-0.171720px;}
.ls22{letter-spacing:-0.114480px;}
.ls5b{letter-spacing:-0.076702px;}
.ls1b{letter-spacing:-0.057240px;}
.ls2{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.057240px;}
.ls7{letter-spacing:0.076702px;}
.ls6b{letter-spacing:0.095018px;}
.ls10{letter-spacing:0.114480px;}
.ls4{letter-spacing:0.142528px;}
.ls1a{letter-spacing:0.171720px;}
.ls5a{letter-spacing:0.191754px;}
.ls0{letter-spacing:0.209498px;}
.ls18{letter-spacing:0.228960px;}
.ls1{letter-spacing:0.230105px;}
.ls64{letter-spacing:0.286200px;}
.ls3{letter-spacing:0.314248px;}
.lsc{letter-spacing:0.343440px;}
.ls23{letter-spacing:0.400680px;}
.ls60{letter-spacing:0.457920px;}
.ls24{letter-spacing:0.515160px;}
.ls5f{letter-spacing:0.572400px;}
.ls13{letter-spacing:0.629640px;}
.ls49{letter-spacing:0.744120px;}
.lsa{letter-spacing:0.915840px;}
.ls43{letter-spacing:1.030320px;}
.lsb{letter-spacing:1.144800px;}
.ls44{letter-spacing:1.602720px;}
.ls1d{letter-spacing:2.175120px;}
.ls1f{letter-spacing:2.747520px;}
.ls30{letter-spacing:3.319920px;}
.ls14{letter-spacing:3.434400px;}
.ls3a{letter-spacing:3.892320px;}
.lsf{letter-spacing:4.006800px;}
.ls32{letter-spacing:4.464720px;}
.ls56{letter-spacing:5.037120px;}
.ls38{letter-spacing:5.609520px;}
.ls15{letter-spacing:5.724000px;}
.ls52{letter-spacing:6.181920px;}
.ls20{letter-spacing:6.754320px;}
.ls3c{letter-spacing:7.326720px;}
.ls26{letter-spacing:7.899120px;}
.ls4b{letter-spacing:8.471520px;}
.ls31{letter-spacing:9.043920px;}
.ls40{letter-spacing:9.616320px;}
.lse{letter-spacing:9.730800px;}
.ls2e{letter-spacing:10.188720px;}
.lsd{letter-spacing:10.303200px;}
.ls3f{letter-spacing:10.761120px;}
.ls27{letter-spacing:11.333520px;}
.ls2f{letter-spacing:11.905920px;}
.ls35{letter-spacing:12.478320px;}
.ls16{letter-spacing:12.707280px;}
.ls51{letter-spacing:13.050720px;}
.ls4c{letter-spacing:13.623120px;}
.ls28{letter-spacing:14.195520px;}
.ls50{letter-spacing:14.767920px;}
.ls37{letter-spacing:16.485120px;}
.ls36{letter-spacing:17.057520px;}
.ls54{letter-spacing:17.629920px;}
.ls58{letter-spacing:18.202320px;}
.ls61{letter-spacing:18.774720px;}
.ls1e{letter-spacing:19.347120px;}
.ls3e{letter-spacing:19.919520px;}
.ls29{letter-spacing:20.491920px;}
.ls25{letter-spacing:21.064320px;}
.ls53{letter-spacing:21.636720px;}
.ls4d{letter-spacing:22.209120px;}
.ls41{letter-spacing:22.781520px;}
.ls34{letter-spacing:23.926320px;}
.ls2a{letter-spacing:24.498720px;}
.ls62{letter-spacing:25.071120px;}
.ls67{letter-spacing:25.643520px;}
.ls59{letter-spacing:26.788320px;}
.ls68{letter-spacing:27.933120px;}
.ls63{letter-spacing:28.505520px;}
.ls4e{letter-spacing:29.650320px;}
.ls42{letter-spacing:30.222720px;}
.ls70{letter-spacing:30.795120px;}
.ls39{letter-spacing:31.367520px;}
.ls4f{letter-spacing:31.939920px;}
.ls6e{letter-spacing:34.229520px;}
.ls55{letter-spacing:35.374320px;}
.ls4a{letter-spacing:35.946720px;}
.ls3b{letter-spacing:38.236320px;}
.ls3d{letter-spacing:39.381120px;}
.ls6c{letter-spacing:44.051904px;}
.ls65{letter-spacing:44.189280px;}
.ls69{letter-spacing:47.967120px;}
.ls48{letter-spacing:50.893229px;}
.ls6f{letter-spacing:60.559920px;}
.ls6d{letter-spacing:93.823229px;}
.ls46{letter-spacing:99.483120px;}
.ls66{letter-spacing:121.234320px;}
.ls47{letter-spacing:213.390720px;}
.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;}
}
.wsc9{word-spacing:-47.509200px;}
.ws0{word-spacing:-36.138474px;}
.ws17e{word-spacing:-20.892600px;}
.ws12c{word-spacing:-20.720880px;}
.ws7d{word-spacing:-20.663640px;}
.ws33{word-spacing:-20.549160px;}
.ws29{word-spacing:-20.491920px;}
.ws13c{word-spacing:-20.434680px;}
.ws27{word-spacing:-20.377440px;}
.ws6d{word-spacing:-20.320200px;}
.ws2a{word-spacing:-20.262960px;}
.ws35{word-spacing:-20.148480px;}
.ws57{word-spacing:-20.091240px;}
.ws4c{word-spacing:-20.034000px;}
.ws6c{word-spacing:-19.976760px;}
.ws28{word-spacing:-19.919520px;}
.ws14a{word-spacing:-19.890900px;}
.ws171{word-spacing:-19.862280px;}
.ws10b{word-spacing:-19.805040px;}
.wsc4{word-spacing:-19.747800px;}
.ws7c{word-spacing:-19.690560px;}
.ws131{word-spacing:-19.518840px;}
.ws32{word-spacing:-19.461600px;}
.ws172{word-spacing:-19.404360px;}
.ws34{word-spacing:-19.347120px;}
.ws26{word-spacing:-19.060920px;}
.ws17d{word-spacing:-15.569280px;}
.wsa{word-spacing:-14.081040px;}
.ws9{word-spacing:-13.737600px;}
.ws11e{word-spacing:-11.927099px;}
.ws11f{word-spacing:-11.812046px;}
.ws4{word-spacing:-11.620292px;}
.ws3{word-spacing:-11.428538px;}
.ws2{word-spacing:-11.313486px;}
.ws121{word-spacing:-11.160083px;}
.ws1{word-spacing:-10.814926px;}
.ws120{word-spacing:-10.584821px;}
.ws122{word-spacing:-10.469768px;}
.wse7{word-spacing:-3.319920px;}
.ws160{word-spacing:-1.431000px;}
.ws168{word-spacing:-1.202040px;}
.ws56{word-spacing:-1.087560px;}
.wsd8{word-spacing:-1.030320px;}
.ws15{word-spacing:-0.915840px;}
.ws2f{word-spacing:-0.858600px;}
.ws16f{word-spacing:-0.686880px;}
.wse0{word-spacing:-0.629640px;}
.ws6{word-spacing:-0.628495px;}
.wsad{word-spacing:-0.572400px;}
.ws97{word-spacing:-0.515160px;}
.ws2d{word-spacing:-0.457920px;}
.ws61{word-spacing:-0.400680px;}
.ws11{word-spacing:-0.343440px;}
.ws50{word-spacing:-0.286200px;}
.ws7{word-spacing:-0.237546px;}
.ws2c{word-spacing:-0.228960px;}
.ws4d{word-spacing:-0.171720px;}
.wsc{word-spacing:-0.114480px;}
.ws30{word-spacing:-0.057240px;}
.ws5{word-spacing:0.000000px;}
.ws2e{word-spacing:0.057240px;}
.ws2b{word-spacing:0.114480px;}
.ws8{word-spacing:0.142528px;}
.ws85{word-spacing:0.171720px;}
.wsbc{word-spacing:0.228960px;}
.wsb8{word-spacing:0.286200px;}
.ws43{word-spacing:0.343440px;}
.ws8e{word-spacing:0.400680px;}
.ws1b{word-spacing:0.457920px;}
.wsc5{word-spacing:0.515160px;}
.wsb{word-spacing:0.572400px;}
.ws74{word-spacing:0.629640px;}
.ws31{word-spacing:0.686880px;}
.wse{word-spacing:0.801360px;}
.wsc2{word-spacing:0.858600px;}
.ws14b{word-spacing:0.930150px;}
.ws1a{word-spacing:1.030320px;}
.ws72{word-spacing:1.087560px;}
.ws101{word-spacing:1.144800px;}
.ws5f{word-spacing:1.202040px;}
.ws55{word-spacing:1.259280px;}
.ws16{word-spacing:1.373760px;}
.wsa0{word-spacing:1.431000px;}
.ws14e{word-spacing:1.659960px;}
.ws62{word-spacing:1.774440px;}
.ws60{word-spacing:1.831680px;}
.ws63{word-spacing:1.946160px;}
.wsee{word-spacing:2.003400px;}
.ws22{word-spacing:2.175120px;}
.ws3e{word-spacing:2.232360px;}
.ws64{word-spacing:2.346840px;}
.ws3f{word-spacing:2.404080px;}
.wsa9{word-spacing:2.518560px;}
.ws45{word-spacing:2.575800px;}
.ws20{word-spacing:2.747520px;}
.wscb{word-spacing:2.804760px;}
.ws83{word-spacing:2.919240px;}
.wsde{word-spacing:2.976480px;}
.ws13b{word-spacing:3.090960px;}
.wsf9{word-spacing:3.148200px;}
.ws13d{word-spacing:3.205440px;}
.wsa4{word-spacing:3.377160px;}
.ws10e{word-spacing:3.434400px;}
.ws95{word-spacing:3.491640px;}
.ws9a{word-spacing:3.548880px;}
.ws19{word-spacing:3.663360px;}
.ws10d{word-spacing:3.720600px;}
.ws1f{word-spacing:3.892320px;}
.ws126{word-spacing:3.949560px;}
.ws13{word-spacing:4.006800px;}
.ws65{word-spacing:4.064040px;}
.ws99{word-spacing:4.121280px;}
.wsce{word-spacing:4.235760px;}
.wsaa{word-spacing:4.293000px;}
.wsab{word-spacing:4.521960px;}
.ws12{word-spacing:4.579200px;}
.ws76{word-spacing:4.636440px;}
.ws3c{word-spacing:4.693680px;}
.ws134{word-spacing:4.808160px;}
.wscf{word-spacing:4.865400px;}
.ws136{word-spacing:5.094360px;}
.ws14{word-spacing:5.151600px;}
.ws46{word-spacing:5.208840px;}
.wsb4{word-spacing:5.266080px;}
.wsb0{word-spacing:5.380560px;}
.wsb3{word-spacing:5.437800px;}
.ws25{word-spacing:5.609520px;}
.wscd{word-spacing:5.666760px;}
.ws24{word-spacing:5.724000px;}
.ws39{word-spacing:5.781240px;}
.ws93{word-spacing:5.838480px;}
.ws8c{word-spacing:5.952960px;}
.ws11c{word-spacing:6.010200px;}
.wse3{word-spacing:6.239160px;}
.ws49{word-spacing:6.353640px;}
.ws70{word-spacing:6.410880px;}
.ws9c{word-spacing:6.525360px;}
.ws144{word-spacing:6.811560px;}
.ws18{word-spacing:6.868800px;}
.ws52{word-spacing:6.926040px;}
.ws108{word-spacing:6.983280px;}
.ws17{word-spacing:7.097760px;}
.wsb7{word-spacing:7.155000px;}
.wsd6{word-spacing:7.383960px;}
.ws37{word-spacing:7.498440px;}
.ws7b{word-spacing:7.555680px;}
.wsdb{word-spacing:7.670160px;}
.ws7e{word-spacing:7.727400px;}
.ws51{word-spacing:7.956360px;}
.ws21{word-spacing:8.013600px;}
.ws84{word-spacing:8.070840px;}
.ws130{word-spacing:8.128080px;}
.ws9e{word-spacing:8.242560px;}
.ws112{word-spacing:8.299800px;}
.wsd7{word-spacing:8.528760px;}
.ws23{word-spacing:8.586000px;}
.ws58{word-spacing:8.643240px;}
.ws44{word-spacing:8.700480px;}
.wsd9{word-spacing:8.814960px;}
.ws3d{word-spacing:9.101160px;}
.wsd{word-spacing:9.158400px;}
.ws91{word-spacing:9.215640px;}
.wsa8{word-spacing:9.272880px;}
.ws152{word-spacing:9.444600px;}
.wsf{word-spacing:9.616320px;}
.ws143{word-spacing:9.673560px;}
.ws96{word-spacing:9.788040px;}
.ws71{word-spacing:9.845280px;}
.wsda{word-spacing:9.959760px;}
.wsa7{word-spacing:10.017000px;}
.ws140{word-spacing:10.245960px;}
.ws3a{word-spacing:10.360440px;}
.ws6a{word-spacing:10.417680px;}
.wsbb{word-spacing:10.532160px;}
.ws92{word-spacing:10.589400px;}
.ws3b{word-spacing:10.818360px;}
.ws10{word-spacing:10.875600px;}
.ws53{word-spacing:10.932840px;}
.ws104{word-spacing:10.990080px;}
.ws141{word-spacing:11.104560px;}
.ws16e{word-spacing:11.161800px;}
.ws133{word-spacing:11.219040px;}
.ws163{word-spacing:11.390760px;}
.ws16b{word-spacing:11.448000px;}
.wseb{word-spacing:11.505240px;}
.ws59{word-spacing:11.562480px;}
.ws148{word-spacing:11.676960px;}
.ws151{word-spacing:11.734200px;}
.ws13f{word-spacing:11.963160px;}
.ws4b{word-spacing:12.077640px;}
.ws8f{word-spacing:12.134880px;}
.ws81{word-spacing:12.249360px;}
.ws4a{word-spacing:12.535560px;}
.ws42{word-spacing:12.650040px;}
.ws15d{word-spacing:12.707280px;}
.wsf5{word-spacing:12.821760px;}
.wsdc{word-spacing:12.879000px;}
.ws1e{word-spacing:13.050720px;}
.wsed{word-spacing:13.107960px;}
.ws82{word-spacing:13.222440px;}
.wsec{word-spacing:13.279680px;}
.wsac{word-spacing:13.394160px;}
.ws116{word-spacing:13.680360px;}
.ws5a{word-spacing:13.794840px;}
.wsfb{word-spacing:13.852080px;}
.ws13a{word-spacing:14.023800px;}
.wsc1{word-spacing:14.252760px;}
.ws132{word-spacing:14.310000px;}
.ws47{word-spacing:14.367240px;}
.wsdd{word-spacing:14.424480px;}
.wsea{word-spacing:14.538960px;}
.ws157{word-spacing:14.596200px;}
.wsae{word-spacing:14.825160px;}
.ws94{word-spacing:14.939640px;}
.ws5b{word-spacing:14.996880px;}
.ws165{word-spacing:15.111360px;}
.wsa2{word-spacing:15.512040px;}
.ws12b{word-spacing:15.683760px;}
.ws162{word-spacing:15.741000px;}
.ws161{word-spacing:15.969960px;}
.ws6b{word-spacing:16.084440px;}
.ws12a{word-spacing:16.141680px;}
.ws1c{word-spacing:16.256160px;}
.wsa3{word-spacing:16.313400px;}
.wsaf{word-spacing:16.542360px;}
.wsf4{word-spacing:16.656840px;}
.wsfd{word-spacing:16.714080px;}
.ws87{word-spacing:16.828560px;}
.ws86{word-spacing:17.114760px;}
.ws5d{word-spacing:17.229240px;}
.ws142{word-spacing:17.400960px;}
.ws117{word-spacing:17.458200px;}
.ws5e{word-spacing:17.687160px;}
.ws4f{word-spacing:17.801640px;}
.ws119{word-spacing:17.858880px;}
.wsef{word-spacing:18.259560px;}
.ws6f{word-spacing:18.374040px;}
.ws110{word-spacing:18.603000px;}
.ws164{word-spacing:18.831960px;}
.ws41{word-spacing:18.946440px;}
.ws14d{word-spacing:19.003680px;}
.ws68{word-spacing:19.118160px;}
.ws17b{word-spacing:19.175400px;}
.ws1d{word-spacing:19.347120px;}
.ws7a{word-spacing:19.518840px;}
.ws111{word-spacing:19.576080px;}
.ws128{word-spacing:19.690560px;}
.wsd5{word-spacing:19.747800px;}
.wsf6{word-spacing:19.976760px;}
.ws79{word-spacing:20.091240px;}
.ws10c{word-spacing:20.148480px;}
.ws105{word-spacing:20.262960px;}
.ws124{word-spacing:20.549160px;}
.wsb9{word-spacing:20.663640px;}
.ws78{word-spacing:20.720880px;}
.ws4e{word-spacing:20.835360px;}
.ws8d{word-spacing:20.892600px;}
.ws88{word-spacing:21.236040px;}
.ws40{word-spacing:21.293280px;}
.wsf0{word-spacing:21.407760px;}
.ws166{word-spacing:21.465000px;}
.wsf3{word-spacing:21.579480px;}
.wscc{word-spacing:21.808440px;}
.ws118{word-spacing:21.865680px;}
.wsf2{word-spacing:21.980160px;}
.wsf1{word-spacing:22.037400px;}
.ws109{word-spacing:22.266360px;}
.wsc0{word-spacing:22.380840px;}
.ws137{word-spacing:22.438080px;}
.wsdf{word-spacing:22.609800px;}
.ws48{word-spacing:22.953240px;}
.ws115{word-spacing:23.411160px;}
.ws80{word-spacing:23.525640px;}
.wsc6{word-spacing:23.582880px;}
.ws90{word-spacing:23.697360px;}
.wse4{word-spacing:23.983560px;}
.ws7f{word-spacing:24.098040px;}
.ws13e{word-spacing:24.155280px;}
.wsa5{word-spacing:24.269760px;}
.wsa6{word-spacing:24.327000px;}
.ws16c{word-spacing:24.670440px;}
.ws114{word-spacing:24.727680px;}
.ws145{word-spacing:24.899400px;}
.wse6{word-spacing:25.185600px;}
.wsc3{word-spacing:25.242840px;}
.wse5{word-spacing:25.300080px;}
.wsa1{word-spacing:25.815240px;}
.ws9b{word-spacing:25.872480px;}
.wsc8{word-spacing:25.986960px;}
.ws15b{word-spacing:26.044200px;}
.ws14c{word-spacing:26.273160px;}
.ws69{word-spacing:26.387640px;}
.ws10a{word-spacing:26.444880px;}
.ws77{word-spacing:26.960040px;}
.ws102{word-spacing:27.017280px;}
.ws139{word-spacing:27.532440px;}
.ws10f{word-spacing:27.589680px;}
.ws129{word-spacing:27.704160px;}
.ws106{word-spacing:27.761400px;}
.ws147{word-spacing:27.990360px;}
.ws155{word-spacing:28.047600px;}
.ws107{word-spacing:28.104840px;}
.ws11d{word-spacing:28.162080px;}
.ws146{word-spacing:28.391040px;}
.ws123{word-spacing:28.677240px;}
.ws12e{word-spacing:28.734480px;}
.ws167{word-spacing:29.421360px;}
.ws17c{word-spacing:29.478600px;}
.wse1{word-spacing:29.822040px;}
.ws6e{word-spacing:29.993760px;}
.wsc7{word-spacing:30.051000px;}
.ws156{word-spacing:30.279960px;}
.ws5c{word-spacing:30.394440px;}
.wse2{word-spacing:30.451680px;}
.wsb1{word-spacing:30.623400px;}
.ws175{word-spacing:31.024080px;}
.ws12d{word-spacing:31.138560px;}
.wse9{word-spacing:31.424760px;}
.ws9f{word-spacing:31.539240px;}
.wsb2{word-spacing:31.596480px;}
.wsd3{word-spacing:32.111640px;}
.ws16a{word-spacing:32.168880px;}
.ws89{word-spacing:32.684040px;}
.wse8{word-spacing:32.741280px;}
.wsbd{word-spacing:32.855760px;}
.ws135{word-spacing:33.256440px;}
.ws11b{word-spacing:33.771600px;}
.ws11a{word-spacing:33.828840px;}
.wsba{word-spacing:34.401240px;}
.wsd1{word-spacing:34.973640px;}
.ws149{word-spacing:35.145360px;}
.wsd0{word-spacing:35.488800px;}
.ws73{word-spacing:35.546040px;}
.ws9d{word-spacing:35.603280px;}
.wsfc{word-spacing:35.775000px;}
.wsf8{word-spacing:36.003960px;}
.ws75{word-spacing:36.118440px;}
.ws12f{word-spacing:36.175680px;}
.wsd4{word-spacing:36.576360px;}
.ws98{word-spacing:36.690840px;}
.wsf7{word-spacing:36.748080px;}
.wsb5{word-spacing:37.434960px;}
.ws16d{word-spacing:37.835640px;}
.ws54{word-spacing:37.892880px;}
.wsb6{word-spacing:38.408040px;}
.ws38{word-spacing:38.980440px;}
.ws8b{word-spacing:39.037680px;}
.wsbf{word-spacing:39.438360px;}
.wsbe{word-spacing:40.010760px;}
.wsfe{word-spacing:41.270040px;}
.wsff{word-spacing:41.842440px;}
.ws103{word-spacing:44.933400px;}
.ws113{word-spacing:45.448560px;}
.ws170{word-spacing:45.734760px;}
.ws169{word-spacing:46.421640px;}
.ws8a{word-spacing:46.478880px;}
.ws66{word-spacing:46.879560px;}
.ws67{word-spacing:46.994040px;}
.ws14f{word-spacing:47.566440px;}
.ws150{word-spacing:47.795400px;}
.ws15c{word-spacing:50.428440px;}
.ws127{word-spacing:51.058080px;}
.wsd2{word-spacing:56.896560px;}
.ws15e{word-spacing:57.869640px;}
.ws15f{word-spacing:59.071680px;}
.wsfa{word-spacing:60.159240px;}
.ws174{word-spacing:60.788880px;}
.ws173{word-spacing:61.361280px;}
.ws138{word-spacing:64.337760px;}
.ws159{word-spacing:64.795680px;}
.ws158{word-spacing:65.368080px;}
.ws15a{word-spacing:79.620840px;}
.ws177{word-spacing:81.967680px;}
.ws178{word-spacing:82.482840px;}
.ws179{word-spacing:82.711800px;}
.ws100{word-spacing:95.075640px;}
.wsca{word-spacing:99.254160px;}
.ws125{word-spacing:136.860840px;}
.ws154{word-spacing:147.793680px;}
.ws153{word-spacing:148.938480px;}
.ws17a{word-spacing:176.986080px;}
.ws36{word-spacing:312.186960px;}
.ws176{word-spacing:1303.412040px;}
._1a{margin-left:-138.699389px;}
._17{margin-left:-94.947422px;}
._15{margin-left:-60.595409px;}
._21{margin-left:-43.083403px;}
._7{margin-left:-16.574414px;}
._1c{margin-left:-15.180048px;}
._25{margin-left:-11.174393px;}
._1b{margin-left:-9.816660px;}
._22{margin-left:-7.120656px;}
._16{margin-left:-5.948381px;}
._13{margin-left:-4.926074px;}
._14{margin-left:-3.752654px;}
._9{margin-left:-2.744086px;}
._0{margin-left:-1.466489px;}
._1{width:1.181434px;}
._4{width:2.202595px;}
._6{width:3.412649px;}
._5{width:4.922640px;}
._d{width:5.954105px;}
._8{width:7.163014px;}
._3{width:8.749706px;}
._2{width:9.959760px;}
._c{width:11.755951px;}
._a{width:13.579618px;}
._b{width:14.714114px;}
._e{width:16.353468px;}
._11{width:18.149659px;}
._1e{width:22.566298px;}
._12{width:25.840426px;}
._10{width:27.923962px;}
._f{width:29.091658px;}
._19{width:33.504862px;}
._18{width:34.708046px;}
._1d{width:36.622152px;}
._20{width:41.627218px;}
._26{width:46.357531px;}
._23{width:50.162846px;}
._24{width:51.630480px;}
._1f{width:380.036966px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.350800px;}
.fs2{font-size:47.509200px;}
.fs0{font-size:57.240000px;}
.fs4{font-size:71.550000px;}
.fs1{font-size:104.749200px;}
.y0{bottom:0.000000px;}
.y10{bottom:3.577500px;}
.y1fd{bottom:129.471000px;}
.y28{bottom:217.763100px;}
.y184{bottom:219.623400px;}
.y9a{bottom:220.625100px;}
.y1e3{bottom:220.768200px;}
.yf2{bottom:222.771600px;}
.y132{bottom:224.775000px;}
.yd2{bottom:224.918100px;}
.yb8{bottom:225.776700px;}
.y58{bottom:226.921500px;}
.y172{bottom:227.923200px;}
.yc{bottom:229.211100px;}
.yeb{bottom:229.926600px;}
.y13c{bottom:230.069700px;}
.y1ca{bottom:232.073100px;}
.y1c7{bottom:232.216200px;}
.y1fc{bottom:234.219600px;}
.y19b{bottom:238.512600px;}
.ydf{bottom:239.371200px;}
.y138{bottom:239.514300px;}
.y1fb{bottom:240.659100px;}
.y1df{bottom:241.517700px;}
.y84{bottom:243.664200px;}
.y171{bottom:245.810700px;}
.y99{bottom:246.669300px;}
.y1e7{bottom:246.812400px;}
.y41{bottom:247.098600px;}
.y142{bottom:248.815800px;}
.y131{bottom:250.819200px;}
.y1b5{bottom:251.248500px;}
.yb7{bottom:251.964000px;}
.y124{bottom:253.967400px;}
.yea{bottom:256.113900px;}
.y161{bottom:258.117300px;}
.y10e{bottom:258.260400px;}
.y27{bottom:259.119000px;}
.y1d4{bottom:261.122400px;}
.y183{bottom:262.410300px;}
.y107{bottom:262.839600px;}
.y178{bottom:263.412000px;}
.y1ee{bottom:263.555100px;}
.yde{bottom:265.415400px;}
.yf1{bottom:265.558500px;}
.y1fa{bottom:266.703300px;}
.y1de{bottom:267.561900px;}
.yd1{bottom:267.705000px;}
.y57{bottom:269.708400px;}
.yb{bottom:270.567000px;}
.yc4{bottom:270.710100px;}
.y98{bottom:272.713500px;}
.y13b{bottom:272.856600px;}
.y1c0{bottom:274.287600px;}
.y1c6{bottom:274.860000px;}
.y141{bottom:275.003100px;}
.y130{bottom:277.006500px;}
.yb6{bottom:278.008200px;}
.y123{bottom:280.011600px;}
.y71{bottom:280.154700px;}
.y19a{bottom:281.299500px;}
.y114{bottom:282.158100px;}
.y137{bottom:282.301200px;}
.y160{bottom:284.304600px;}
.y83{bottom:286.451100px;}
.y1d3{bottom:287.166600px;}
.y170{bottom:288.597600px;}
.y177{bottom:289.456200px;}
.y1e2{bottom:289.599300px;}
.y40{bottom:289.885500px;}
.y213{bottom:291.316500px;}
.ydd{bottom:291.602700px;}
.y1f9{bottom:292.890600px;}
.y1dd{bottom:293.606100px;}
.y1b4{bottom:294.035400px;}
.y18d{bottom:295.895700px;}
.yc3{bottom:296.754300px;}
.y97{bottom:298.900800px;}
.y26{bottom:300.474900px;}
.y168{bottom:300.904200px;}
.y10d{bottom:301.047300px;}
.ya{bottom:302.746899px;}
.y15a{bottom:303.193800px;}
.yb5{bottom:304.052400px;}
.y106{bottom:305.626500px;}
.y122{bottom:306.198900px;}
.y113{bottom:308.202300px;}
.yf0{bottom:308.345400px;}
.y15f{bottom:310.348800px;}
.yd0{bottom:310.491900px;}
.y56{bottom:312.495300px;}
.y1d2{bottom:313.353900px;}
.y176{bottom:315.500400px;}
.y13a{bottom:315.643500px;}
.y1ed{bottom:315.786600px;}
.y1bf{bottom:317.074500px;}
.ydc{bottom:317.646900px;}
.y140{bottom:317.790000px;}
.y1f8{bottom:319.077900px;}
.y12f{bottom:319.793400px;}
.y70{bottom:322.798500px;}
.y144{bottom:322.941600px;}
.y199{bottom:323.943300px;}
.y96{bottom:324.945000px;}
.y136{bottom:325.088100px;}
.y167{bottom:327.091500px;}
.y82{bottom:329.238000px;}
.yb4{bottom:330.096600px;}
.y16f{bottom:331.384500px;}
.y121{bottom:332.243100px;}
.y3f{bottom:332.672400px;}
.y212{bottom:333.244800px;}
.y9{bottom:333.948566px;}
.y112{bottom:334.389600px;}
.y15e{bottom:336.393000px;}
.y200{bottom:336.536100px;}
.y1b3{bottom:336.679200px;}
.y18c{bottom:338.682600px;}
.y1d1{bottom:339.398100px;}
.y175{bottom:341.687700px;}
.y25{bottom:341.973900px;}
.ydb{bottom:343.691100px;}
.y10c{bottom:343.834200px;}
.y14b{bottom:345.837600px;}
.y159{bottom:345.980700px;}
.y105{bottom:348.413400px;}
.y6f{bottom:348.985800px;}
.y95{bottom:350.989200px;}
.yef{bottom:351.132300px;}
.y1c5{bottom:353.135700px;}
.ycf{bottom:353.278800px;}
.y55{bottom:355.282200px;}
.yb3{bottom:356.283900px;}
.y120{bottom:358.287300px;}
.y17d{bottom:358.430400px;}
.y1be{bottom:359.861400px;}
.y111{bottom:360.433800px;}
.y11a{bottom:360.576900px;}
.y1f7{bottom:361.721700px;}
.y12e{bottom:362.580300px;}
.y1b2{bottom:362.866500px;}
.y8{bottom:365.150233px;}
.y143{bottom:365.728500px;}
.y198{bottom:366.730200px;}
.y174{bottom:367.731900px;}
.y135{bottom:367.875000px;}
.yda{bottom:369.878400px;}
.y14a{bottom:371.881800px;}
.y81{bottom:372.024900px;}
.y16e{bottom:374.028300px;}
.y6e{bottom:375.030000px;}
.y3e{bottom:375.459300px;}
.y211{bottom:375.888600px;}
.y94{bottom:377.176500px;}
.y1c4{bottom:379.179900px;}
.y1ff{bottom:379.323000px;}
.y18b{bottom:381.469500px;}
.y1d0{bottom:382.185000px;}
.yb2{bottom:382.328100px;}
.y24{bottom:383.329800px;}
.y11f{bottom:384.474600px;}
.y1ec{bottom:384.617700px;}
.y1bd{bottom:386.048700px;}
.y110{bottom:386.478000px;}
.y10b{bottom:386.621100px;}
.y1f6{bottom:387.909000px;}
.y158{bottom:388.624500px;}
.y15d{bottom:388.767600px;}
.y1b1{bottom:388.910700px;}
.yee{bottom:393.919200px;}
.yfd{bottom:395.922600px;}
.yce{bottom:396.065700px;}
.y7{bottom:396.351900px;}
.y54{bottom:398.069100px;}
.y6d{bottom:401.074200px;}
.yc2{bottom:401.217300px;}
.y210{bottom:402.648300px;}
.y119{bottom:403.220700px;}
.ye9{bottom:403.363800px;}
.y12d{bottom:405.367200px;}
.yb1{bottom:408.372300px;}
.y197{bottom:409.517100px;}
.y11e{bottom:410.518800px;}
.y1e6{bottom:410.661900px;}
.yd9{bottom:412.665300px;}
.y157{bottom:414.668700px;}
.y80{bottom:414.811800px;}
.y1b0{bottom:414.954900px;}
.y16d{bottom:416.815200px;}
.y3d{bottom:418.103100px;}
.y93{bottom:419.963400px;}
.yfc{bottom:421.966800px;}
.y18a{bottom:424.113300px;}
.y23{bottom:424.685700px;}
.y1cf{bottom:424.971900px;}
.y6c{bottom:427.261500px;}
.y6{bottom:427.547700px;}
.y1bc{bottom:428.692500px;}
.y10a{bottom:429.408000px;}
.y1eb{bottom:429.980400px;}
.y1f5{bottom:430.552800px;}
.y12c{bottom:431.411400px;}
.y15c{bottom:431.554500px;}
.yb0{bottom:434.559600px;}
.y11d{bottom:436.563000px;}
.yed{bottom:436.706100px;}
.ycd{bottom:438.709500px;}
.y166{bottom:438.852600px;}
.y156{bottom:440.712900px;}
.y53{bottom:440.856000px;}
.y1af{bottom:441.142200px;}
.y3c{bottom:442.859400px;}
.y182{bottom:443.002500px;}
.yc1{bottom:443.861100px;}
.y20f{bottom:444.862800px;}
.y92{bottom:446.007600px;}
.yfb{bottom:448.154100px;}
.y189{bottom:450.157500px;}
.y196{bottom:452.304000px;}
.y6b{bottom:453.305700px;}
.y1e5{bottom:453.448800px;}
.y1bb{bottom:454.736700px;}
.y1cb{bottom:455.452200px;}
.y1f4{bottom:456.740100px;}
.y12b{bottom:457.455600px;}
.y7f{bottom:457.598700px;}
.y16c{bottom:459.602100px;}
.yaf{bottom:460.603800px;}
.y11c{bottom:462.750300px;}
.ycc{bottom:464.753700px;}
.y13f{bottom:464.896800px;}
.y22{bottom:466.041600px;}
.y155{bottom:466.900200px;}
.y1ae{bottom:467.186400px;}
.y3b{bottom:467.472600px;}
.y1ce{bottom:467.758800px;}
.yc0{bottom:470.048400px;}
.y20e{bottom:470.907000px;}
.y91{bottom:472.051800px;}
.ye8{bottom:472.194900px;}
.yfa{bottom:474.198300px;}
.y188{bottom:476.344800px;}
.y5{bottom:477.765783px;}
.y195{bottom:478.491300px;}
.y6a{bottom:479.349900px;}
.y1ba{bottom:480.780900px;}
.y165{bottom:481.496400px;}
.y1c9{bottom:481.639500px;}
.y1f3{bottom:482.784300px;}
.y12a{bottom:483.499800px;}
.y52{bottom:483.642900px;}
.y181{bottom:485.789400px;}
.yae{bottom:486.648000px;}
.y11b{bottom:488.794500px;}
.y173{bottom:488.937600px;}
.ycb{bottom:490.797900px;}
.yd8{bottom:490.941000px;}
.y3a{bottom:492.228900px;}
.y1ad{bottom:493.230600px;}
.ybf{bottom:496.092600px;}
.y1e4{bottom:496.235700px;}
.y20d{bottom:497.094300px;}
.y90{bottom:498.239100px;}
.yf9{bottom:500.242500px;}
.y7e{bottom:500.385600px;}
.y16b{bottom:502.389000px;}
.y69{bottom:505.537200px;}
.y1b9{bottom:506.968200px;}
.y21{bottom:507.397500px;}
.y164{bottom:507.540600px;}
.y13e{bottom:507.683700px;}
.y1f2{bottom:508.828500px;}
.y129{bottom:509.687100px;}
.yad{bottom:512.835300px;}
.ye7{bottom:514.838700px;}
.y109{bottom:514.981800px;}
.y39{bottom:516.842100px;}
.yca{bottom:516.985200px;}
.y187{bottom:518.988600px;}
.y1ac{bottom:519.417900px;}
.y194{bottom:521.278200px;}
.ybe{bottom:522.136800px;}
.y8f{bottom:524.283300px;}
.yf8{bottom:526.286700px;}
.y51{bottom:526.429800px;}
.y180{bottom:528.576300px;}
.y68{bottom:531.581400px;}
.y17c{bottom:531.724500px;}
.y1b8{bottom:533.155500px;}
.yd7{bottom:533.584800px;}
.y1f1{bottom:534.872700px;}
.y149{bottom:535.731300px;}
.y154{bottom:535.874400px;}
.yac{bottom:538.879500px;}
.y20c{bottom:539.881200px;}
.ye6{bottom:540.882900px;}
.y1ea{bottom:541.026000px;}
.y4{bottom:542.160354px;}
.y10f{bottom:543.029400px;}
.y7d{bottom:543.172500px;}
.y16a{bottom:545.175900px;}
.y1ab{bottom:545.462100px;}
.ybd{bottom:548.324100px;}
.y20{bottom:548.896500px;}
.y8e{bottom:550.327500px;}
.y118{bottom:550.470600px;}
.yf7{bottom:552.474000px;}
.y67{bottom:557.625600px;}
.yec{bottom:557.768700px;}
.y38{bottom:558.341100px;}
.yd6{bottom:559.772100px;}
.y1f0{bottom:561.060000px;}
.y204{bottom:561.775500px;}
.y148{bottom:561.918600px;}
.y193{bottom:564.065100px;}
.yab{bottom:564.923700px;}
.y20b{bottom:566.068500px;}
.ye5{bottom:567.070200px;}
.y15b{bottom:569.073600px;}
.y50{bottom:569.216700px;}
.y17f{bottom:571.363200px;}
.y1aa{bottom:571.506300px;}
.y1f{bottom:573.509700px;}
.ybc{bottom:574.368300px;}
.y1b7{bottom:575.942400px;}
.y8d{bottom:576.371700px;}
.y1fe{bottom:577.407900px;}
.yf6{bottom:578.518200px;}
.y1dc{bottom:578.661300px;}
.y37{bottom:582.954300px;}
.y66{bottom:583.669800px;}
.y203{bottom:583.812900px;}
.yc9{bottom:585.816300px;}
.y7c{bottom:585.959400px;}
.y169{bottom:587.962800px;}
.y3{bottom:590.109300px;}
.yaa{bottom:590.967900px;}
.ye4{bottom:593.114400px;}
.y117{bottom:593.257500px;}
.y128{bottom:595.260900px;}
.y1a9{bottom:597.550500px;}
.ybb{bottom:600.412500px;}
.y108{bottom:600.555600px;}
.y8c{bottom:602.559000px;}
.yf5{bottom:604.562400px;}
.y1ef{bottom:606.422700px;}
.y192{bottom:606.852000px;}
.y36{bottom:607.567500px;}
.y20a{bottom:608.283000px;}
.y65{bottom:609.857100px;}
.y4f{bottom:611.860500px;}
.y1e1{bottom:612.003600px;}
.y17e{bottom:614.150100px;}
.y1e{bottom:614.865600px;}
.y1b6{bottom:615.724200px;}
.ya9{bottom:617.155200px;}
.ye3{bottom:619.158600px;}
.y1c3{bottom:621.305100px;}
.y1db{bottom:621.448200px;}
.y1a8{bottom:623.737800px;}
.yba{bottom:626.456700px;}
.y1c1{bottom:626.599800px;}
.y7b{bottom:628.603200px;}
.yf4{bottom:630.749700px;}
.y35{bottom:632.323800px;}
.y209{bottom:633.468600px;}
.y64{bottom:635.901300px;}
.y116{bottom:636.044400px;}
.y4e{bottom:638.047800px;}
.ya8{bottom:643.199400px;}
.y2{bottom:644.916600px;}
.ye2{bottom:645.345900px;}
.y1c2{bottom:647.349300px;}
.y191{bottom:649.638900px;}
.yb9{bottom:652.644000px;}
.y7a{bottom:654.647400px;}
.y1e0{bottom:654.790500px;}
.y1d{bottom:656.221500px;}
.y34{bottom:656.937000px;}
.y63{bottom:661.945500px;}
.y1cd{bottom:662.088600px;}
.y4d{bottom:664.092000px;}
.y1da{bottom:664.235100px;}
.y1a7{bottom:666.524700px;}
.ya7{bottom:669.243600px;}
.ye1{bottom:671.390100px;}
.y147{bottom:673.536600px;}
.y208{bottom:675.826200px;}
.y17b{bottom:678.688200px;}
.y115{bottom:678.831300px;}
.y79{bottom:680.834700px;}
.y1c{bottom:680.977800px;}
.y33{bottom:681.693300px;}
.y1{bottom:684.841500px;}
.y163{bottom:687.989271px;}
.y62{bottom:688.132800px;}
.y4c{bottom:690.136200px;}
.y1d6{bottom:690.279300px;}
.y190{bottom:692.425800px;}
.y1a6{bottom:692.568900px;}
.ya6{bottom:695.430900px;}
.ye0{bottom:697.434300px;}
.y1c8{bottom:697.577400px;}
.y162{bottom:699.580800px;}
.yf3{bottom:699.723900px;}
.y207{bottom:701.011800px;}
.y17a{bottom:704.732400px;}
.y1cc{bottom:704.875500px;}
.y32{bottom:706.306500px;}
.y8b{bottom:706.878900px;}
.y1d9{bottom:707.022000px;}
.y61{bottom:714.177000px;}
.y104{bottom:714.320100px;}
.y4b{bottom:716.323500px;}
.y1a5{bottom:718.613100px;}
.ya5{bottom:721.475100px;}
.y1b{bottom:722.333700px;}
.y78{bottom:723.621600px;}
.y186{bottom:725.768100px;}
.y179{bottom:730.919700px;}
.y31{bottom:731.062800px;}
.y8a{bottom:732.923100px;}
.y1d5{bottom:733.066200px;}
.y18f{bottom:735.069600px;}
.y60{bottom:740.221200px;}
.y202{bottom:740.364300px;}
.y4a{bottom:742.367700px;}
.y146{bottom:742.510800px;}
.y206{bottom:743.226300px;}
.y1a4{bottom:744.800400px;}
.y1a{bottom:746.946900px;}
.ya4{bottom:747.519300px;}
.y77{bottom:749.665800px;}
.y1d8{bottom:749.808900px;}
.y30{bottom:755.676000px;}
.y103{bottom:756.963900px;}
.y89{bottom:759.110400px;}
.y5f{bottom:766.408500px;}
.y49{bottom:768.411900px;}
.y127{bottom:768.555000px;}
.y1a3{bottom:770.844600px;}
.ya3{bottom:773.706600px;}
.yd5{bottom:775.710000px;}
.y76{bottom:775.853100px;}
.y18e{bottom:777.856500px;}
.y2f{bottom:780.432300px;}
.y102{bottom:783.008100px;}
.y201{bottom:783.151200px;}
.y88{bottom:785.154600px;}
.y19{bottom:788.445900px;}
.y5e{bottom:792.452700px;}
.y1d7{bottom:792.595800px;}
.y48{bottom:794.456100px;}
.y185{bottom:794.599200px;}
.y1a2{bottom:796.888800px;}
.ya2{bottom:799.750800px;}
.yd4{bottom:801.754200px;}
.y13d{bottom:801.897300px;}
.y2e{bottom:805.045500px;}
.y101{bottom:809.195400px;}
.yc8{bottom:811.198800px;}
.y87{bottom:811.341900px;}
.y18{bottom:813.059100px;}
.y5d{bottom:818.496900px;}
.y134{bottom:818.640000px;}
.y47{bottom:820.643400px;}
.y1a1{bottom:822.933000px;}
.ya1{bottom:825.795000px;}
.y152{bottom:826.366971px;}
.yd3{bottom:827.941500px;}
.y2d{bottom:829.801800px;}
.y100{bottom:835.239600px;}
.y1e8{bottom:835.382700px;}
.y205{bottom:837.243000px;}
.yc7{bottom:837.386100px;}
.y151{bottom:837.958500px;}
.y5c{bottom:844.541100px;}
.y139{bottom:844.684200px;}
.y1a0{bottom:849.120300px;}
.ya0{bottom:851.839200px;}
.y86{bottom:853.985700px;}
.y126{bottom:854.128800px;}
.y17{bottom:854.415000px;}
.y150{bottom:856.131771px;}
.yff{bottom:861.283800px;}
.y133{bottom:861.426900px;}
.y46{bottom:863.430300px;}
.y14f{bottom:867.723300px;}
.y5b{bottom:870.728400px;}
.y9f{bottom:878.026500px;}
.y16{bottom:879.028200px;}
.y2c{bottom:879.171300px;}
.y85{bottom:880.029900px;}
.yc6{bottom:880.173000px;}
.y14e{bottom:885.897000px;}
.yfe{bottom:887.328000px;}
.y19f{bottom:891.907200px;}
.y5a{bottom:896.772600px;}
.y125{bottom:896.915700px;}
.y2b{bottom:903.784500px;}
.y14d{bottom:904.070271px;}
.y9e{bottom:904.070700px;}
.y45{bottom:906.217200px;}
.y75{bottom:913.515300px;}
.y14c{bottom:915.661800px;}
.y15{bottom:920.527200px;}
.y59{bottom:922.816800px;}
.yc5{bottom:922.959900px;}
.y2a{bottom:928.540800px;}
.y9d{bottom:930.114900px;}
.y19e{bottom:937.413000px;}
.y74{bottom:939.559500px;}
.y145{bottom:939.702600px;}
.y14{bottom:945.140400px;}
.y44{bottom:949.004100px;}
.y29{bottom:953.154000px;}
.y9c{bottom:956.302200px;}
.y153{bottom:965.603700px;}
.y73{bottom:965.746800px;}
.y13{bottom:969.896700px;}
.y9b{bottom:982.346400px;}
.y19d{bottom:984.922200px;}
.y43{bottom:991.791000px;}
.y12{bottom:994.509900px;}
.y72{bottom:1008.390600px;}
.y1e9{bottom:1008.533700px;}
.y19c{bottom:1032.431400px;}
.y42{bottom:1034.577900px;}
.y11{bottom:1035.865800px;}
.yd{bottom:1036.724550px;}
.yf{bottom:1074.789000px;}
.ye{bottom:1078.366500px;}
.h7{height:16.456500px;}
.h8{height:39.743789px;}
.h6{height:40.920304px;}
.h4{height:50.692316px;}
.h5{height:56.177930px;}
.h9{height:57.267949px;}
.hc{height:59.699531px;}
.h2{height:61.075080px;}
.ha{height:74.624414px;}
.h3{height:111.767396px;}
.hb{height:1003.989000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.155000px;}
.w3{width:14.310000px;}
.w4{width:709.918500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:6.660000px;}
.x17{left:86.652900px;}
.x19{left:101.457900px;}
.x2{left:108.117900px;}
.x16{left:118.850400px;}
.x5{left:127.287719px;}
.xc{left:129.582900px;}
.xe{left:151.047900px;}
.x3{left:154.339200px;}
.x11{left:172.512900px;}
.x12{left:193.977900px;}
.x4{left:298.290788px;}
.x15{left:304.880400px;}
.xf{left:331.783200px;}
.x13{left:345.091500px;}
.x14{left:366.556500px;}
.x9{left:410.064624px;}
.x6{left:422.794800px;}
.x8{left:444.841358px;}
.x7{left:446.266634px;}
.x10{left:555.305400px;}
.xd{left:600.810000px;}
.xb{left:607.965000px;}
.x1{left:614.978100px;}
.x1a{left:620.129700px;}
.xa{left:657.478800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.712320pt;}
.ls6a{letter-spacing:-0.699600pt;}
.ls5e{letter-spacing:-0.681792pt;}
.ls45{letter-spacing:-0.661440pt;}
.ls2c{letter-spacing:-0.610560pt;}
.ls5d{letter-spacing:-0.579523pt;}
.ls33{letter-spacing:-0.559680pt;}
.ls8{letter-spacing:-0.511344pt;}
.ls11{letter-spacing:-0.508800pt;}
.ls17{letter-spacing:-0.457920pt;}
.ls2b{letter-spacing:-0.407040pt;}
.ls6{letter-spacing:-0.374986pt;}
.ls2d{letter-spacing:-0.356160pt;}
.ls9{letter-spacing:-0.340896pt;}
.ls21{letter-spacing:-0.305280pt;}
.ls71{letter-spacing:-0.254400pt;}
.ls5{letter-spacing:-0.211152pt;}
.ls12{letter-spacing:-0.203520pt;}
.ls5c{letter-spacing:-0.170448pt;}
.ls19{letter-spacing:-0.152640pt;}
.ls22{letter-spacing:-0.101760pt;}
.ls5b{letter-spacing:-0.068179pt;}
.ls1b{letter-spacing:-0.050880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.050880pt;}
.ls7{letter-spacing:0.068179pt;}
.ls6b{letter-spacing:0.084461pt;}
.ls10{letter-spacing:0.101760pt;}
.ls4{letter-spacing:0.126691pt;}
.ls1a{letter-spacing:0.152640pt;}
.ls5a{letter-spacing:0.170448pt;}
.ls0{letter-spacing:0.186221pt;}
.ls18{letter-spacing:0.203520pt;}
.ls1{letter-spacing:0.204538pt;}
.ls64{letter-spacing:0.254400pt;}
.ls3{letter-spacing:0.279331pt;}
.lsc{letter-spacing:0.305280pt;}
.ls23{letter-spacing:0.356160pt;}
.ls60{letter-spacing:0.407040pt;}
.ls24{letter-spacing:0.457920pt;}
.ls5f{letter-spacing:0.508800pt;}
.ls13{letter-spacing:0.559680pt;}
.ls49{letter-spacing:0.661440pt;}
.lsa{letter-spacing:0.814080pt;}
.ls43{letter-spacing:0.915840pt;}
.lsb{letter-spacing:1.017600pt;}
.ls44{letter-spacing:1.424640pt;}
.ls1d{letter-spacing:1.933440pt;}
.ls1f{letter-spacing:2.442240pt;}
.ls30{letter-spacing:2.951040pt;}
.ls14{letter-spacing:3.052800pt;}
.ls3a{letter-spacing:3.459840pt;}
.lsf{letter-spacing:3.561600pt;}
.ls32{letter-spacing:3.968640pt;}
.ls56{letter-spacing:4.477440pt;}
.ls38{letter-spacing:4.986240pt;}
.ls15{letter-spacing:5.088000pt;}
.ls52{letter-spacing:5.495040pt;}
.ls20{letter-spacing:6.003840pt;}
.ls3c{letter-spacing:6.512640pt;}
.ls26{letter-spacing:7.021440pt;}
.ls4b{letter-spacing:7.530240pt;}
.ls31{letter-spacing:8.039040pt;}
.ls40{letter-spacing:8.547840pt;}
.lse{letter-spacing:8.649600pt;}
.ls2e{letter-spacing:9.056640pt;}
.lsd{letter-spacing:9.158400pt;}
.ls3f{letter-spacing:9.565440pt;}
.ls27{letter-spacing:10.074240pt;}
.ls2f{letter-spacing:10.583040pt;}
.ls35{letter-spacing:11.091840pt;}
.ls16{letter-spacing:11.295360pt;}
.ls51{letter-spacing:11.600640pt;}
.ls4c{letter-spacing:12.109440pt;}
.ls28{letter-spacing:12.618240pt;}
.ls50{letter-spacing:13.127040pt;}
.ls37{letter-spacing:14.653440pt;}
.ls36{letter-spacing:15.162240pt;}
.ls54{letter-spacing:15.671040pt;}
.ls58{letter-spacing:16.179840pt;}
.ls61{letter-spacing:16.688640pt;}
.ls1e{letter-spacing:17.197440pt;}
.ls3e{letter-spacing:17.706240pt;}
.ls29{letter-spacing:18.215040pt;}
.ls25{letter-spacing:18.723840pt;}
.ls53{letter-spacing:19.232640pt;}
.ls4d{letter-spacing:19.741440pt;}
.ls41{letter-spacing:20.250240pt;}
.ls34{letter-spacing:21.267840pt;}
.ls2a{letter-spacing:21.776640pt;}
.ls62{letter-spacing:22.285440pt;}
.ls67{letter-spacing:22.794240pt;}
.ls59{letter-spacing:23.811840pt;}
.ls68{letter-spacing:24.829440pt;}
.ls63{letter-spacing:25.338240pt;}
.ls4e{letter-spacing:26.355840pt;}
.ls42{letter-spacing:26.864640pt;}
.ls70{letter-spacing:27.373440pt;}
.ls39{letter-spacing:27.882240pt;}
.ls4f{letter-spacing:28.391040pt;}
.ls6e{letter-spacing:30.426240pt;}
.ls55{letter-spacing:31.443840pt;}
.ls4a{letter-spacing:31.952640pt;}
.ls3b{letter-spacing:33.987840pt;}
.ls3d{letter-spacing:35.005440pt;}
.ls6c{letter-spacing:39.157248pt;}
.ls65{letter-spacing:39.279360pt;}
.ls69{letter-spacing:42.637440pt;}
.ls48{letter-spacing:45.238426pt;}
.ls6f{letter-spacing:53.831040pt;}
.ls6d{letter-spacing:83.398426pt;}
.ls46{letter-spacing:88.429440pt;}
.ls66{letter-spacing:107.763840pt;}
.ls47{letter-spacing:189.680640pt;}
.wsc9{word-spacing:-42.230400pt;}
.ws0{word-spacing:-32.123088pt;}
.ws17e{word-spacing:-18.571200pt;}
.ws12c{word-spacing:-18.418560pt;}
.ws7d{word-spacing:-18.367680pt;}
.ws33{word-spacing:-18.265920pt;}
.ws29{word-spacing:-18.215040pt;}
.ws13c{word-spacing:-18.164160pt;}
.ws27{word-spacing:-18.113280pt;}
.ws6d{word-spacing:-18.062400pt;}
.ws2a{word-spacing:-18.011520pt;}
.ws35{word-spacing:-17.909760pt;}
.ws57{word-spacing:-17.858880pt;}
.ws4c{word-spacing:-17.808000pt;}
.ws6c{word-spacing:-17.757120pt;}
.ws28{word-spacing:-17.706240pt;}
.ws14a{word-spacing:-17.680800pt;}
.ws171{word-spacing:-17.655360pt;}
.ws10b{word-spacing:-17.604480pt;}
.wsc4{word-spacing:-17.553600pt;}
.ws7c{word-spacing:-17.502720pt;}
.ws131{word-spacing:-17.350080pt;}
.ws32{word-spacing:-17.299200pt;}
.ws172{word-spacing:-17.248320pt;}
.ws34{word-spacing:-17.197440pt;}
.ws26{word-spacing:-16.943040pt;}
.ws17d{word-spacing:-13.839360pt;}
.wsa{word-spacing:-12.516480pt;}
.ws9{word-spacing:-12.211200pt;}
.ws11e{word-spacing:-10.601866pt;}
.ws11f{word-spacing:-10.499597pt;}
.ws4{word-spacing:-10.329149pt;}
.ws3{word-spacing:-10.158701pt;}
.ws2{word-spacing:-10.056432pt;}
.ws121{word-spacing:-9.920074pt;}
.ws1{word-spacing:-9.613267pt;}
.ws120{word-spacing:-9.408730pt;}
.ws122{word-spacing:-9.306461pt;}
.wse7{word-spacing:-2.951040pt;}
.ws160{word-spacing:-1.272000pt;}
.ws168{word-spacing:-1.068480pt;}
.ws56{word-spacing:-0.966720pt;}
.wsd8{word-spacing:-0.915840pt;}
.ws15{word-spacing:-0.814080pt;}
.ws2f{word-spacing:-0.763200pt;}
.ws16f{word-spacing:-0.610560pt;}
.wse0{word-spacing:-0.559680pt;}
.ws6{word-spacing:-0.558662pt;}
.wsad{word-spacing:-0.508800pt;}
.ws97{word-spacing:-0.457920pt;}
.ws2d{word-spacing:-0.407040pt;}
.ws61{word-spacing:-0.356160pt;}
.ws11{word-spacing:-0.305280pt;}
.ws50{word-spacing:-0.254400pt;}
.ws7{word-spacing:-0.211152pt;}
.ws2c{word-spacing:-0.203520pt;}
.ws4d{word-spacing:-0.152640pt;}
.wsc{word-spacing:-0.101760pt;}
.ws30{word-spacing:-0.050880pt;}
.ws5{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.050880pt;}
.ws2b{word-spacing:0.101760pt;}
.ws8{word-spacing:0.126691pt;}
.ws85{word-spacing:0.152640pt;}
.wsbc{word-spacing:0.203520pt;}
.wsb8{word-spacing:0.254400pt;}
.ws43{word-spacing:0.305280pt;}
.ws8e{word-spacing:0.356160pt;}
.ws1b{word-spacing:0.407040pt;}
.wsc5{word-spacing:0.457920pt;}
.wsb{word-spacing:0.508800pt;}
.ws74{word-spacing:0.559680pt;}
.ws31{word-spacing:0.610560pt;}
.wse{word-spacing:0.712320pt;}
.wsc2{word-spacing:0.763200pt;}
.ws14b{word-spacing:0.826800pt;}
.ws1a{word-spacing:0.915840pt;}
.ws72{word-spacing:0.966720pt;}
.ws101{word-spacing:1.017600pt;}
.ws5f{word-spacing:1.068480pt;}
.ws55{word-spacing:1.119360pt;}
.ws16{word-spacing:1.221120pt;}
.wsa0{word-spacing:1.272000pt;}
.ws14e{word-spacing:1.475520pt;}
.ws62{word-spacing:1.577280pt;}
.ws60{word-spacing:1.628160pt;}
.ws63{word-spacing:1.729920pt;}
.wsee{word-spacing:1.780800pt;}
.ws22{word-spacing:1.933440pt;}
.ws3e{word-spacing:1.984320pt;}
.ws64{word-spacing:2.086080pt;}
.ws3f{word-spacing:2.136960pt;}
.wsa9{word-spacing:2.238720pt;}
.ws45{word-spacing:2.289600pt;}
.ws20{word-spacing:2.442240pt;}
.wscb{word-spacing:2.493120pt;}
.ws83{word-spacing:2.594880pt;}
.wsde{word-spacing:2.645760pt;}
.ws13b{word-spacing:2.747520pt;}
.wsf9{word-spacing:2.798400pt;}
.ws13d{word-spacing:2.849280pt;}
.wsa4{word-spacing:3.001920pt;}
.ws10e{word-spacing:3.052800pt;}
.ws95{word-spacing:3.103680pt;}
.ws9a{word-spacing:3.154560pt;}
.ws19{word-spacing:3.256320pt;}
.ws10d{word-spacing:3.307200pt;}
.ws1f{word-spacing:3.459840pt;}
.ws126{word-spacing:3.510720pt;}
.ws13{word-spacing:3.561600pt;}
.ws65{word-spacing:3.612480pt;}
.ws99{word-spacing:3.663360pt;}
.wsce{word-spacing:3.765120pt;}
.wsaa{word-spacing:3.816000pt;}
.wsab{word-spacing:4.019520pt;}
.ws12{word-spacing:4.070400pt;}
.ws76{word-spacing:4.121280pt;}
.ws3c{word-spacing:4.172160pt;}
.ws134{word-spacing:4.273920pt;}
.wscf{word-spacing:4.324800pt;}
.ws136{word-spacing:4.528320pt;}
.ws14{word-spacing:4.579200pt;}
.ws46{word-spacing:4.630080pt;}
.wsb4{word-spacing:4.680960pt;}
.wsb0{word-spacing:4.782720pt;}
.wsb3{word-spacing:4.833600pt;}
.ws25{word-spacing:4.986240pt;}
.wscd{word-spacing:5.037120pt;}
.ws24{word-spacing:5.088000pt;}
.ws39{word-spacing:5.138880pt;}
.ws93{word-spacing:5.189760pt;}
.ws8c{word-spacing:5.291520pt;}
.ws11c{word-spacing:5.342400pt;}
.wse3{word-spacing:5.545920pt;}
.ws49{word-spacing:5.647680pt;}
.ws70{word-spacing:5.698560pt;}
.ws9c{word-spacing:5.800320pt;}
.ws144{word-spacing:6.054720pt;}
.ws18{word-spacing:6.105600pt;}
.ws52{word-spacing:6.156480pt;}
.ws108{word-spacing:6.207360pt;}
.ws17{word-spacing:6.309120pt;}
.wsb7{word-spacing:6.360000pt;}
.wsd6{word-spacing:6.563520pt;}
.ws37{word-spacing:6.665280pt;}
.ws7b{word-spacing:6.716160pt;}
.wsdb{word-spacing:6.817920pt;}
.ws7e{word-spacing:6.868800pt;}
.ws51{word-spacing:7.072320pt;}
.ws21{word-spacing:7.123200pt;}
.ws84{word-spacing:7.174080pt;}
.ws130{word-spacing:7.224960pt;}
.ws9e{word-spacing:7.326720pt;}
.ws112{word-spacing:7.377600pt;}
.wsd7{word-spacing:7.581120pt;}
.ws23{word-spacing:7.632000pt;}
.ws58{word-spacing:7.682880pt;}
.ws44{word-spacing:7.733760pt;}
.wsd9{word-spacing:7.835520pt;}
.ws3d{word-spacing:8.089920pt;}
.wsd{word-spacing:8.140800pt;}
.ws91{word-spacing:8.191680pt;}
.wsa8{word-spacing:8.242560pt;}
.ws152{word-spacing:8.395200pt;}
.wsf{word-spacing:8.547840pt;}
.ws143{word-spacing:8.598720pt;}
.ws96{word-spacing:8.700480pt;}
.ws71{word-spacing:8.751360pt;}
.wsda{word-spacing:8.853120pt;}
.wsa7{word-spacing:8.904000pt;}
.ws140{word-spacing:9.107520pt;}
.ws3a{word-spacing:9.209280pt;}
.ws6a{word-spacing:9.260160pt;}
.wsbb{word-spacing:9.361920pt;}
.ws92{word-spacing:9.412800pt;}
.ws3b{word-spacing:9.616320pt;}
.ws10{word-spacing:9.667200pt;}
.ws53{word-spacing:9.718080pt;}
.ws104{word-spacing:9.768960pt;}
.ws141{word-spacing:9.870720pt;}
.ws16e{word-spacing:9.921600pt;}
.ws133{word-spacing:9.972480pt;}
.ws163{word-spacing:10.125120pt;}
.ws16b{word-spacing:10.176000pt;}
.wseb{word-spacing:10.226880pt;}
.ws59{word-spacing:10.277760pt;}
.ws148{word-spacing:10.379520pt;}
.ws151{word-spacing:10.430400pt;}
.ws13f{word-spacing:10.633920pt;}
.ws4b{word-spacing:10.735680pt;}
.ws8f{word-spacing:10.786560pt;}
.ws81{word-spacing:10.888320pt;}
.ws4a{word-spacing:11.142720pt;}
.ws42{word-spacing:11.244480pt;}
.ws15d{word-spacing:11.295360pt;}
.wsf5{word-spacing:11.397120pt;}
.wsdc{word-spacing:11.448000pt;}
.ws1e{word-spacing:11.600640pt;}
.wsed{word-spacing:11.651520pt;}
.ws82{word-spacing:11.753280pt;}
.wsec{word-spacing:11.804160pt;}
.wsac{word-spacing:11.905920pt;}
.ws116{word-spacing:12.160320pt;}
.ws5a{word-spacing:12.262080pt;}
.wsfb{word-spacing:12.312960pt;}
.ws13a{word-spacing:12.465600pt;}
.wsc1{word-spacing:12.669120pt;}
.ws132{word-spacing:12.720000pt;}
.ws47{word-spacing:12.770880pt;}
.wsdd{word-spacing:12.821760pt;}
.wsea{word-spacing:12.923520pt;}
.ws157{word-spacing:12.974400pt;}
.wsae{word-spacing:13.177920pt;}
.ws94{word-spacing:13.279680pt;}
.ws5b{word-spacing:13.330560pt;}
.ws165{word-spacing:13.432320pt;}
.wsa2{word-spacing:13.788480pt;}
.ws12b{word-spacing:13.941120pt;}
.ws162{word-spacing:13.992000pt;}
.ws161{word-spacing:14.195520pt;}
.ws6b{word-spacing:14.297280pt;}
.ws12a{word-spacing:14.348160pt;}
.ws1c{word-spacing:14.449920pt;}
.wsa3{word-spacing:14.500800pt;}
.wsaf{word-spacing:14.704320pt;}
.wsf4{word-spacing:14.806080pt;}
.wsfd{word-spacing:14.856960pt;}
.ws87{word-spacing:14.958720pt;}
.ws86{word-spacing:15.213120pt;}
.ws5d{word-spacing:15.314880pt;}
.ws142{word-spacing:15.467520pt;}
.ws117{word-spacing:15.518400pt;}
.ws5e{word-spacing:15.721920pt;}
.ws4f{word-spacing:15.823680pt;}
.ws119{word-spacing:15.874560pt;}
.wsef{word-spacing:16.230720pt;}
.ws6f{word-spacing:16.332480pt;}
.ws110{word-spacing:16.536000pt;}
.ws164{word-spacing:16.739520pt;}
.ws41{word-spacing:16.841280pt;}
.ws14d{word-spacing:16.892160pt;}
.ws68{word-spacing:16.993920pt;}
.ws17b{word-spacing:17.044800pt;}
.ws1d{word-spacing:17.197440pt;}
.ws7a{word-spacing:17.350080pt;}
.ws111{word-spacing:17.400960pt;}
.ws128{word-spacing:17.502720pt;}
.wsd5{word-spacing:17.553600pt;}
.wsf6{word-spacing:17.757120pt;}
.ws79{word-spacing:17.858880pt;}
.ws10c{word-spacing:17.909760pt;}
.ws105{word-spacing:18.011520pt;}
.ws124{word-spacing:18.265920pt;}
.wsb9{word-spacing:18.367680pt;}
.ws78{word-spacing:18.418560pt;}
.ws4e{word-spacing:18.520320pt;}
.ws8d{word-spacing:18.571200pt;}
.ws88{word-spacing:18.876480pt;}
.ws40{word-spacing:18.927360pt;}
.wsf0{word-spacing:19.029120pt;}
.ws166{word-spacing:19.080000pt;}
.wsf3{word-spacing:19.181760pt;}
.wscc{word-spacing:19.385280pt;}
.ws118{word-spacing:19.436160pt;}
.wsf2{word-spacing:19.537920pt;}
.wsf1{word-spacing:19.588800pt;}
.ws109{word-spacing:19.792320pt;}
.wsc0{word-spacing:19.894080pt;}
.ws137{word-spacing:19.944960pt;}
.wsdf{word-spacing:20.097600pt;}
.ws48{word-spacing:20.402880pt;}
.ws115{word-spacing:20.809920pt;}
.ws80{word-spacing:20.911680pt;}
.wsc6{word-spacing:20.962560pt;}
.ws90{word-spacing:21.064320pt;}
.wse4{word-spacing:21.318720pt;}
.ws7f{word-spacing:21.420480pt;}
.ws13e{word-spacing:21.471360pt;}
.wsa5{word-spacing:21.573120pt;}
.wsa6{word-spacing:21.624000pt;}
.ws16c{word-spacing:21.929280pt;}
.ws114{word-spacing:21.980160pt;}
.ws145{word-spacing:22.132800pt;}
.wse6{word-spacing:22.387200pt;}
.wsc3{word-spacing:22.438080pt;}
.wse5{word-spacing:22.488960pt;}
.wsa1{word-spacing:22.946880pt;}
.ws9b{word-spacing:22.997760pt;}
.wsc8{word-spacing:23.099520pt;}
.ws15b{word-spacing:23.150400pt;}
.ws14c{word-spacing:23.353920pt;}
.ws69{word-spacing:23.455680pt;}
.ws10a{word-spacing:23.506560pt;}
.ws77{word-spacing:23.964480pt;}
.ws102{word-spacing:24.015360pt;}
.ws139{word-spacing:24.473280pt;}
.ws10f{word-spacing:24.524160pt;}
.ws129{word-spacing:24.625920pt;}
.ws106{word-spacing:24.676800pt;}
.ws147{word-spacing:24.880320pt;}
.ws155{word-spacing:24.931200pt;}
.ws107{word-spacing:24.982080pt;}
.ws11d{word-spacing:25.032960pt;}
.ws146{word-spacing:25.236480pt;}
.ws123{word-spacing:25.490880pt;}
.ws12e{word-spacing:25.541760pt;}
.ws167{word-spacing:26.152320pt;}
.ws17c{word-spacing:26.203200pt;}
.wse1{word-spacing:26.508480pt;}
.ws6e{word-spacing:26.661120pt;}
.wsc7{word-spacing:26.712000pt;}
.ws156{word-spacing:26.915520pt;}
.ws5c{word-spacing:27.017280pt;}
.wse2{word-spacing:27.068160pt;}
.wsb1{word-spacing:27.220800pt;}
.ws175{word-spacing:27.576960pt;}
.ws12d{word-spacing:27.678720pt;}
.wse9{word-spacing:27.933120pt;}
.ws9f{word-spacing:28.034880pt;}
.wsb2{word-spacing:28.085760pt;}
.wsd3{word-spacing:28.543680pt;}
.ws16a{word-spacing:28.594560pt;}
.ws89{word-spacing:29.052480pt;}
.wse8{word-spacing:29.103360pt;}
.wsbd{word-spacing:29.205120pt;}
.ws135{word-spacing:29.561280pt;}
.ws11b{word-spacing:30.019200pt;}
.ws11a{word-spacing:30.070080pt;}
.wsba{word-spacing:30.578880pt;}
.wsd1{word-spacing:31.087680pt;}
.ws149{word-spacing:31.240320pt;}
.wsd0{word-spacing:31.545600pt;}
.ws73{word-spacing:31.596480pt;}
.ws9d{word-spacing:31.647360pt;}
.wsfc{word-spacing:31.800000pt;}
.wsf8{word-spacing:32.003520pt;}
.ws75{word-spacing:32.105280pt;}
.ws12f{word-spacing:32.156160pt;}
.wsd4{word-spacing:32.512320pt;}
.ws98{word-spacing:32.614080pt;}
.wsf7{word-spacing:32.664960pt;}
.wsb5{word-spacing:33.275520pt;}
.ws16d{word-spacing:33.631680pt;}
.ws54{word-spacing:33.682560pt;}
.wsb6{word-spacing:34.140480pt;}
.ws38{word-spacing:34.649280pt;}
.ws8b{word-spacing:34.700160pt;}
.wsbf{word-spacing:35.056320pt;}
.wsbe{word-spacing:35.565120pt;}
.wsfe{word-spacing:36.684480pt;}
.wsff{word-spacing:37.193280pt;}
.ws103{word-spacing:39.940800pt;}
.ws113{word-spacing:40.398720pt;}
.ws170{word-spacing:40.653120pt;}
.ws169{word-spacing:41.263680pt;}
.ws8a{word-spacing:41.314560pt;}
.ws66{word-spacing:41.670720pt;}
.ws67{word-spacing:41.772480pt;}
.ws14f{word-spacing:42.281280pt;}
.ws150{word-spacing:42.484800pt;}
.ws15c{word-spacing:44.825280pt;}
.ws127{word-spacing:45.384960pt;}
.wsd2{word-spacing:50.574720pt;}
.ws15e{word-spacing:51.439680pt;}
.ws15f{word-spacing:52.508160pt;}
.wsfa{word-spacing:53.474880pt;}
.ws174{word-spacing:54.034560pt;}
.ws173{word-spacing:54.543360pt;}
.ws138{word-spacing:57.189120pt;}
.ws159{word-spacing:57.596160pt;}
.ws158{word-spacing:58.104960pt;}
.ws15a{word-spacing:70.774080pt;}
.ws177{word-spacing:72.860160pt;}
.ws178{word-spacing:73.318080pt;}
.ws179{word-spacing:73.521600pt;}
.ws100{word-spacing:84.511680pt;}
.wsca{word-spacing:88.225920pt;}
.ws125{word-spacing:121.654080pt;}
.ws154{word-spacing:131.372160pt;}
.ws153{word-spacing:132.389760pt;}
.ws17a{word-spacing:157.320960pt;}
.ws36{word-spacing:277.499520pt;}
.ws176{word-spacing:1158.588480pt;}
._1a{margin-left:-123.288346pt;}
._17{margin-left:-84.397709pt;}
._15{margin-left:-53.862586pt;}
._21{margin-left:-38.296358pt;}
._7{margin-left:-14.732813pt;}
._1c{margin-left:-13.493376pt;}
._25{margin-left:-9.932794pt;}
._1b{margin-left:-8.725920pt;}
._22{margin-left:-6.329472pt;}
._16{margin-left:-5.287450pt;}
._13{margin-left:-4.378733pt;}
._14{margin-left:-3.335693pt;}
._9{margin-left:-2.439187pt;}
._0{margin-left:-1.303546pt;}
._1{width:1.050163pt;}
._4{width:1.957862pt;}
._6{width:3.033466pt;}
._5{width:4.375680pt;}
._d{width:5.292538pt;}
._8{width:6.367123pt;}
._3{width:7.777517pt;}
._2{width:8.853120pt;}
._c{width:10.449734pt;}
._a{width:12.070771pt;}
._b{width:13.079213pt;}
._e{width:14.536416pt;}
._11{width:16.133030pt;}
._1e{width:20.058931pt;}
._12{width:22.969267pt;}
._10{width:24.821299pt;}
._f{width:25.859251pt;}
._19{width:29.782099pt;}
._18{width:30.851597pt;}
._1d{width:32.553024pt;}
._20{width:37.001971pt;}
._26{width:41.206694pt;}
._23{width:44.589197pt;}
._24{width:45.893760pt;}
._1f{width:337.810637pt;}
.fs3{font-size:34.089600pt;}
.fs2{font-size:42.230400pt;}
.fs0{font-size:50.880000pt;}
.fs4{font-size:63.600000pt;}
.fs1{font-size:93.110400pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:3.180000pt;}
.y1fd{bottom:115.085333pt;}
.y28{bottom:193.567200pt;}
.y184{bottom:195.220800pt;}
.y9a{bottom:196.111200pt;}
.y1e3{bottom:196.238400pt;}
.yf2{bottom:198.019200pt;}
.y132{bottom:199.800000pt;}
.yd2{bottom:199.927200pt;}
.yb8{bottom:200.690400pt;}
.y58{bottom:201.708000pt;}
.y172{bottom:202.598400pt;}
.yc{bottom:203.743200pt;}
.yeb{bottom:204.379200pt;}
.y13c{bottom:204.506400pt;}
.y1ca{bottom:206.287200pt;}
.y1c7{bottom:206.414400pt;}
.y1fc{bottom:208.195200pt;}
.y19b{bottom:212.011200pt;}
.ydf{bottom:212.774400pt;}
.y138{bottom:212.901600pt;}
.y1fb{bottom:213.919200pt;}
.y1df{bottom:214.682400pt;}
.y84{bottom:216.590400pt;}
.y171{bottom:218.498400pt;}
.y99{bottom:219.261600pt;}
.y1e7{bottom:219.388800pt;}
.y41{bottom:219.643200pt;}
.y142{bottom:221.169600pt;}
.y131{bottom:222.950400pt;}
.y1b5{bottom:223.332000pt;}
.yb7{bottom:223.968000pt;}
.y124{bottom:225.748800pt;}
.yea{bottom:227.656800pt;}
.y161{bottom:229.437600pt;}
.y10e{bottom:229.564800pt;}
.y27{bottom:230.328000pt;}
.y1d4{bottom:232.108800pt;}
.y183{bottom:233.253600pt;}
.y107{bottom:233.635200pt;}
.y178{bottom:234.144000pt;}
.y1ee{bottom:234.271200pt;}
.yde{bottom:235.924800pt;}
.yf1{bottom:236.052000pt;}
.y1fa{bottom:237.069600pt;}
.y1de{bottom:237.832800pt;}
.yd1{bottom:237.960000pt;}
.y57{bottom:239.740800pt;}
.yb{bottom:240.504000pt;}
.yc4{bottom:240.631200pt;}
.y98{bottom:242.412000pt;}
.y13b{bottom:242.539200pt;}
.y1c0{bottom:243.811200pt;}
.y1c6{bottom:244.320000pt;}
.y141{bottom:244.447200pt;}
.y130{bottom:246.228000pt;}
.yb6{bottom:247.118400pt;}
.y123{bottom:248.899200pt;}
.y71{bottom:249.026400pt;}
.y19a{bottom:250.044000pt;}
.y114{bottom:250.807200pt;}
.y137{bottom:250.934400pt;}
.y160{bottom:252.715200pt;}
.y83{bottom:254.623200pt;}
.y1d3{bottom:255.259200pt;}
.y170{bottom:256.531200pt;}
.y177{bottom:257.294400pt;}
.y1e2{bottom:257.421600pt;}
.y40{bottom:257.676000pt;}
.y213{bottom:258.948000pt;}
.ydd{bottom:259.202400pt;}
.y1f9{bottom:260.347200pt;}
.y1dd{bottom:260.983200pt;}
.y1b4{bottom:261.364800pt;}
.y18d{bottom:263.018400pt;}
.yc3{bottom:263.781600pt;}
.y97{bottom:265.689600pt;}
.y26{bottom:267.088800pt;}
.y168{bottom:267.470400pt;}
.y10d{bottom:267.597600pt;}
.ya{bottom:269.108354pt;}
.y15a{bottom:269.505600pt;}
.yb5{bottom:270.268800pt;}
.y106{bottom:271.668000pt;}
.y122{bottom:272.176800pt;}
.y113{bottom:273.957600pt;}
.yf0{bottom:274.084800pt;}
.y15f{bottom:275.865600pt;}
.yd0{bottom:275.992800pt;}
.y56{bottom:277.773600pt;}
.y1d2{bottom:278.536800pt;}
.y176{bottom:280.444800pt;}
.y13a{bottom:280.572000pt;}
.y1ed{bottom:280.699200pt;}
.y1bf{bottom:281.844000pt;}
.ydc{bottom:282.352800pt;}
.y140{bottom:282.480000pt;}
.y1f8{bottom:283.624800pt;}
.y12f{bottom:284.260800pt;}
.y70{bottom:286.932000pt;}
.y144{bottom:287.059200pt;}
.y199{bottom:287.949600pt;}
.y96{bottom:288.840000pt;}
.y136{bottom:288.967200pt;}
.y167{bottom:290.748000pt;}
.y82{bottom:292.656000pt;}
.yb4{bottom:293.419200pt;}
.y16f{bottom:294.564000pt;}
.y121{bottom:295.327200pt;}
.y3f{bottom:295.708800pt;}
.y212{bottom:296.217600pt;}
.y9{bottom:296.843170pt;}
.y112{bottom:297.235200pt;}
.y15e{bottom:299.016000pt;}
.y200{bottom:299.143200pt;}
.y1b3{bottom:299.270400pt;}
.y18c{bottom:301.051200pt;}
.y1d1{bottom:301.687200pt;}
.y175{bottom:303.722400pt;}
.y25{bottom:303.976800pt;}
.ydb{bottom:305.503200pt;}
.y10c{bottom:305.630400pt;}
.y14b{bottom:307.411200pt;}
.y159{bottom:307.538400pt;}
.y105{bottom:309.700800pt;}
.y6f{bottom:310.209600pt;}
.y95{bottom:311.990400pt;}
.yef{bottom:312.117600pt;}
.y1c5{bottom:313.898400pt;}
.ycf{bottom:314.025600pt;}
.y55{bottom:315.806400pt;}
.yb3{bottom:316.696800pt;}
.y120{bottom:318.477600pt;}
.y17d{bottom:318.604800pt;}
.y1be{bottom:319.876800pt;}
.y111{bottom:320.385600pt;}
.y11a{bottom:320.512800pt;}
.y1f7{bottom:321.530400pt;}
.y12e{bottom:322.293600pt;}
.y1b2{bottom:322.548000pt;}
.y8{bottom:324.577985pt;}
.y143{bottom:325.092000pt;}
.y198{bottom:325.982400pt;}
.y174{bottom:326.872800pt;}
.y135{bottom:327.000000pt;}
.yda{bottom:328.780800pt;}
.y14a{bottom:330.561600pt;}
.y81{bottom:330.688800pt;}
.y16e{bottom:332.469600pt;}
.y6e{bottom:333.360000pt;}
.y3e{bottom:333.741600pt;}
.y211{bottom:334.123200pt;}
.y94{bottom:335.268000pt;}
.y1c4{bottom:337.048800pt;}
.y1ff{bottom:337.176000pt;}
.y18b{bottom:339.084000pt;}
.y1d0{bottom:339.720000pt;}
.yb2{bottom:339.847200pt;}
.y24{bottom:340.737600pt;}
.y11f{bottom:341.755200pt;}
.y1ec{bottom:341.882400pt;}
.y1bd{bottom:343.154400pt;}
.y110{bottom:343.536000pt;}
.y10b{bottom:343.663200pt;}
.y1f6{bottom:344.808000pt;}
.y158{bottom:345.444000pt;}
.y15d{bottom:345.571200pt;}
.y1b1{bottom:345.698400pt;}
.yee{bottom:350.150400pt;}
.yfd{bottom:351.931200pt;}
.yce{bottom:352.058400pt;}
.y7{bottom:352.312800pt;}
.y54{bottom:353.839200pt;}
.y6d{bottom:356.510400pt;}
.yc2{bottom:356.637600pt;}
.y210{bottom:357.909600pt;}
.y119{bottom:358.418400pt;}
.ye9{bottom:358.545600pt;}
.y12d{bottom:360.326400pt;}
.yb1{bottom:362.997600pt;}
.y197{bottom:364.015200pt;}
.y11e{bottom:364.905600pt;}
.y1e6{bottom:365.032800pt;}
.yd9{bottom:366.813600pt;}
.y157{bottom:368.594400pt;}
.y80{bottom:368.721600pt;}
.y1b0{bottom:368.848800pt;}
.y16d{bottom:370.502400pt;}
.y3d{bottom:371.647200pt;}
.y93{bottom:373.300800pt;}
.yfc{bottom:375.081600pt;}
.y18a{bottom:376.989600pt;}
.y23{bottom:377.498400pt;}
.y1cf{bottom:377.752800pt;}
.y6c{bottom:379.788000pt;}
.y6{bottom:380.042400pt;}
.y1bc{bottom:381.060000pt;}
.y10a{bottom:381.696000pt;}
.y1eb{bottom:382.204800pt;}
.y1f5{bottom:382.713600pt;}
.y12c{bottom:383.476800pt;}
.y15c{bottom:383.604000pt;}
.yb0{bottom:386.275200pt;}
.y11d{bottom:388.056000pt;}
.yed{bottom:388.183200pt;}
.ycd{bottom:389.964000pt;}
.y166{bottom:390.091200pt;}
.y156{bottom:391.744800pt;}
.y53{bottom:391.872000pt;}
.y1af{bottom:392.126400pt;}
.y3c{bottom:393.652800pt;}
.y182{bottom:393.780000pt;}
.yc1{bottom:394.543200pt;}
.y20f{bottom:395.433600pt;}
.y92{bottom:396.451200pt;}
.yfb{bottom:398.359200pt;}
.y189{bottom:400.140000pt;}
.y196{bottom:402.048000pt;}
.y6b{bottom:402.938400pt;}
.y1e5{bottom:403.065600pt;}
.y1bb{bottom:404.210400pt;}
.y1cb{bottom:404.846400pt;}
.y1f4{bottom:405.991200pt;}
.y12b{bottom:406.627200pt;}
.y7f{bottom:406.754400pt;}
.y16c{bottom:408.535200pt;}
.yaf{bottom:409.425600pt;}
.y11c{bottom:411.333600pt;}
.ycc{bottom:413.114400pt;}
.y13f{bottom:413.241600pt;}
.y22{bottom:414.259200pt;}
.y155{bottom:415.022400pt;}
.y1ae{bottom:415.276800pt;}
.y3b{bottom:415.531200pt;}
.y1ce{bottom:415.785600pt;}
.yc0{bottom:417.820800pt;}
.y20e{bottom:418.584000pt;}
.y91{bottom:419.601600pt;}
.ye8{bottom:419.728800pt;}
.yfa{bottom:421.509600pt;}
.y188{bottom:423.417600pt;}
.y5{bottom:424.680696pt;}
.y195{bottom:425.325600pt;}
.y6a{bottom:426.088800pt;}
.y1ba{bottom:427.360800pt;}
.y165{bottom:427.996800pt;}
.y1c9{bottom:428.124000pt;}
.y1f3{bottom:429.141600pt;}
.y12a{bottom:429.777600pt;}
.y52{bottom:429.904800pt;}
.y181{bottom:431.812800pt;}
.yae{bottom:432.576000pt;}
.y11b{bottom:434.484000pt;}
.y173{bottom:434.611200pt;}
.ycb{bottom:436.264800pt;}
.yd8{bottom:436.392000pt;}
.y3a{bottom:437.536800pt;}
.y1ad{bottom:438.427200pt;}
.ybf{bottom:440.971200pt;}
.y1e4{bottom:441.098400pt;}
.y20d{bottom:441.861600pt;}
.y90{bottom:442.879200pt;}
.yf9{bottom:444.660000pt;}
.y7e{bottom:444.787200pt;}
.y16b{bottom:446.568000pt;}
.y69{bottom:449.366400pt;}
.y1b9{bottom:450.638400pt;}
.y21{bottom:451.020000pt;}
.y164{bottom:451.147200pt;}
.y13e{bottom:451.274400pt;}
.y1f2{bottom:452.292000pt;}
.y129{bottom:453.055200pt;}
.yad{bottom:455.853600pt;}
.ye7{bottom:457.634400pt;}
.y109{bottom:457.761600pt;}
.y39{bottom:459.415200pt;}
.yca{bottom:459.542400pt;}
.y187{bottom:461.323200pt;}
.y1ac{bottom:461.704800pt;}
.y194{bottom:463.358400pt;}
.ybe{bottom:464.121600pt;}
.y8f{bottom:466.029600pt;}
.yf8{bottom:467.810400pt;}
.y51{bottom:467.937600pt;}
.y180{bottom:469.845600pt;}
.y68{bottom:472.516800pt;}
.y17c{bottom:472.644000pt;}
.y1b8{bottom:473.916000pt;}
.yd7{bottom:474.297600pt;}
.y1f1{bottom:475.442400pt;}
.y149{bottom:476.205600pt;}
.y154{bottom:476.332800pt;}
.yac{bottom:479.004000pt;}
.y20c{bottom:479.894400pt;}
.ye6{bottom:480.784800pt;}
.y1ea{bottom:480.912000pt;}
.y4{bottom:481.920314pt;}
.y10f{bottom:482.692800pt;}
.y7d{bottom:482.820000pt;}
.y16a{bottom:484.600800pt;}
.y1ab{bottom:484.855200pt;}
.ybd{bottom:487.399200pt;}
.y20{bottom:487.908000pt;}
.y8e{bottom:489.180000pt;}
.y118{bottom:489.307200pt;}
.yf7{bottom:491.088000pt;}
.y67{bottom:495.667200pt;}
.yec{bottom:495.794400pt;}
.y38{bottom:496.303200pt;}
.yd6{bottom:497.575200pt;}
.y1f0{bottom:498.720000pt;}
.y204{bottom:499.356000pt;}
.y148{bottom:499.483200pt;}
.y193{bottom:501.391200pt;}
.yab{bottom:502.154400pt;}
.y20b{bottom:503.172000pt;}
.ye5{bottom:504.062400pt;}
.y15b{bottom:505.843200pt;}
.y50{bottom:505.970400pt;}
.y17f{bottom:507.878400pt;}
.y1aa{bottom:508.005600pt;}
.y1f{bottom:509.786400pt;}
.ybc{bottom:510.549600pt;}
.y1b7{bottom:511.948800pt;}
.y8d{bottom:512.330400pt;}
.y1fe{bottom:513.251467pt;}
.yf6{bottom:514.238400pt;}
.y1dc{bottom:514.365600pt;}
.y37{bottom:518.181600pt;}
.y66{bottom:518.817600pt;}
.y203{bottom:518.944800pt;}
.yc9{bottom:520.725600pt;}
.y7c{bottom:520.852800pt;}
.y169{bottom:522.633600pt;}
.y3{bottom:524.541600pt;}
.yaa{bottom:525.304800pt;}
.ye4{bottom:527.212800pt;}
.y117{bottom:527.340000pt;}
.y128{bottom:529.120800pt;}
.y1a9{bottom:531.156000pt;}
.ybb{bottom:533.700000pt;}
.y108{bottom:533.827200pt;}
.y8c{bottom:535.608000pt;}
.yf5{bottom:537.388800pt;}
.y1ef{bottom:539.042400pt;}
.y192{bottom:539.424000pt;}
.y36{bottom:540.060000pt;}
.y20a{bottom:540.696000pt;}
.y65{bottom:542.095200pt;}
.y4f{bottom:543.876000pt;}
.y1e1{bottom:544.003200pt;}
.y17e{bottom:545.911200pt;}
.y1e{bottom:546.547200pt;}
.y1b6{bottom:547.310400pt;}
.ya9{bottom:548.582400pt;}
.ye3{bottom:550.363200pt;}
.y1c3{bottom:552.271200pt;}
.y1db{bottom:552.398400pt;}
.y1a8{bottom:554.433600pt;}
.yba{bottom:556.850400pt;}
.y1c1{bottom:556.977600pt;}
.y7b{bottom:558.758400pt;}
.yf4{bottom:560.666400pt;}
.y35{bottom:562.065600pt;}
.y209{bottom:563.083200pt;}
.y64{bottom:565.245600pt;}
.y116{bottom:565.372800pt;}
.y4e{bottom:567.153600pt;}
.ya8{bottom:571.732800pt;}
.y2{bottom:573.259200pt;}
.ye2{bottom:573.640800pt;}
.y1c2{bottom:575.421600pt;}
.y191{bottom:577.456800pt;}
.yb9{bottom:580.128000pt;}
.y7a{bottom:581.908800pt;}
.y1e0{bottom:582.036000pt;}
.y1d{bottom:583.308000pt;}
.y34{bottom:583.944000pt;}
.y63{bottom:588.396000pt;}
.y1cd{bottom:588.523200pt;}
.y4d{bottom:590.304000pt;}
.y1da{bottom:590.431200pt;}
.y1a7{bottom:592.466400pt;}
.ya7{bottom:594.883200pt;}
.ye1{bottom:596.791200pt;}
.y147{bottom:598.699200pt;}
.y208{bottom:600.734400pt;}
.y17b{bottom:603.278400pt;}
.y115{bottom:603.405600pt;}
.y79{bottom:605.186400pt;}
.y1c{bottom:605.313600pt;}
.y33{bottom:605.949600pt;}
.y1{bottom:608.748000pt;}
.y163{bottom:611.546018pt;}
.y62{bottom:611.673600pt;}
.y4c{bottom:613.454400pt;}
.y1d6{bottom:613.581600pt;}
.y190{bottom:615.489600pt;}
.y1a6{bottom:615.616800pt;}
.ya6{bottom:618.160800pt;}
.ye0{bottom:619.941600pt;}
.y1c8{bottom:620.068800pt;}
.y162{bottom:621.849600pt;}
.yf3{bottom:621.976800pt;}
.y207{bottom:623.121600pt;}
.y17a{bottom:626.428800pt;}
.y1cc{bottom:626.556000pt;}
.y32{bottom:627.828000pt;}
.y8b{bottom:628.336800pt;}
.y1d9{bottom:628.464000pt;}
.y61{bottom:634.824000pt;}
.y104{bottom:634.951200pt;}
.y4b{bottom:636.732000pt;}
.y1a5{bottom:638.767200pt;}
.ya5{bottom:641.311200pt;}
.y1b{bottom:642.074400pt;}
.y78{bottom:643.219200pt;}
.y186{bottom:645.127200pt;}
.y179{bottom:649.706400pt;}
.y31{bottom:649.833600pt;}
.y8a{bottom:651.487200pt;}
.y1d5{bottom:651.614400pt;}
.y18f{bottom:653.395200pt;}
.y60{bottom:657.974400pt;}
.y202{bottom:658.101600pt;}
.y4a{bottom:659.882400pt;}
.y146{bottom:660.009600pt;}
.y206{bottom:660.645600pt;}
.y1a4{bottom:662.044800pt;}
.y1a{bottom:663.952800pt;}
.ya4{bottom:664.461600pt;}
.y77{bottom:666.369600pt;}
.y1d8{bottom:666.496800pt;}
.y30{bottom:671.712000pt;}
.y103{bottom:672.856800pt;}
.y89{bottom:674.764800pt;}
.y5f{bottom:681.252000pt;}
.y49{bottom:683.032800pt;}
.y127{bottom:683.160000pt;}
.y1a3{bottom:685.195200pt;}
.ya3{bottom:687.739200pt;}
.yd5{bottom:689.520000pt;}
.y76{bottom:689.647200pt;}
.y18e{bottom:691.428000pt;}
.y2f{bottom:693.717600pt;}
.y102{bottom:696.007200pt;}
.y201{bottom:696.134400pt;}
.y88{bottom:697.915200pt;}
.y19{bottom:700.840800pt;}
.y5e{bottom:704.402400pt;}
.y1d7{bottom:704.529600pt;}
.y48{bottom:706.183200pt;}
.y185{bottom:706.310400pt;}
.y1a2{bottom:708.345600pt;}
.ya2{bottom:710.889600pt;}
.yd4{bottom:712.670400pt;}
.y13d{bottom:712.797600pt;}
.y2e{bottom:715.596000pt;}
.y101{bottom:719.284800pt;}
.yc8{bottom:721.065600pt;}
.y87{bottom:721.192800pt;}
.y18{bottom:722.719200pt;}
.y5d{bottom:727.552800pt;}
.y134{bottom:727.680000pt;}
.y47{bottom:729.460800pt;}
.y1a1{bottom:731.496000pt;}
.ya1{bottom:734.040000pt;}
.y152{bottom:734.548418pt;}
.yd3{bottom:735.948000pt;}
.y2d{bottom:737.601600pt;}
.y100{bottom:742.435200pt;}
.y1e8{bottom:742.562400pt;}
.y205{bottom:744.216000pt;}
.yc7{bottom:744.343200pt;}
.y151{bottom:744.852000pt;}
.y5c{bottom:750.703200pt;}
.y139{bottom:750.830400pt;}
.y1a0{bottom:754.773600pt;}
.ya0{bottom:757.190400pt;}
.y86{bottom:759.098400pt;}
.y126{bottom:759.225600pt;}
.y17{bottom:759.480000pt;}
.y150{bottom:761.006018pt;}
.yff{bottom:765.585600pt;}
.y133{bottom:765.712800pt;}
.y46{bottom:767.493600pt;}
.y14f{bottom:771.309600pt;}
.y5b{bottom:773.980800pt;}
.y9f{bottom:780.468000pt;}
.y16{bottom:781.358400pt;}
.y2c{bottom:781.485600pt;}
.y85{bottom:782.248800pt;}
.yc6{bottom:782.376000pt;}
.y14e{bottom:787.464000pt;}
.yfe{bottom:788.736000pt;}
.y19f{bottom:792.806400pt;}
.y5a{bottom:797.131200pt;}
.y125{bottom:797.258400pt;}
.y2b{bottom:803.364000pt;}
.y14d{bottom:803.618018pt;}
.y9e{bottom:803.618400pt;}
.y45{bottom:805.526400pt;}
.y75{bottom:812.013600pt;}
.y14c{bottom:813.921600pt;}
.y15{bottom:818.246400pt;}
.y59{bottom:820.281600pt;}
.yc5{bottom:820.408800pt;}
.y2a{bottom:825.369600pt;}
.y9d{bottom:826.768800pt;}
.y19e{bottom:833.256000pt;}
.y74{bottom:835.164000pt;}
.y145{bottom:835.291200pt;}
.y14{bottom:840.124800pt;}
.y44{bottom:843.559200pt;}
.y29{bottom:847.248000pt;}
.y9c{bottom:850.046400pt;}
.y153{bottom:858.314400pt;}
.y73{bottom:858.441600pt;}
.y13{bottom:862.130400pt;}
.y9b{bottom:873.196800pt;}
.y19d{bottom:875.486400pt;}
.y43{bottom:881.592000pt;}
.y12{bottom:884.008800pt;}
.y72{bottom:896.347200pt;}
.y1e9{bottom:896.474400pt;}
.y19c{bottom:917.716800pt;}
.y42{bottom:919.624800pt;}
.y11{bottom:920.769600pt;}
.yd{bottom:921.532933pt;}
.yf{bottom:955.368000pt;}
.ye{bottom:958.548000pt;}
.h7{height:14.628000pt;}
.h8{height:35.327813pt;}
.h6{height:36.373603pt;}
.h4{height:45.059837pt;}
.h5{height:49.935937pt;}
.h9{height:50.904844pt;}
.hc{height:53.066250pt;}
.h2{height:54.288960pt;}
.ha{height:66.332813pt;}
.h3{height:99.348797pt;}
.hb{height:892.434667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.360000pt;}
.w3{width:12.720000pt;}
.w4{width:631.038667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:5.920000pt;}
.x17{left:77.024800pt;}
.x19{left:90.184800pt;}
.x2{left:96.104800pt;}
.x16{left:105.644800pt;}
.x5{left:113.144639pt;}
.xc{left:115.184800pt;}
.xe{left:134.264800pt;}
.x3{left:137.190400pt;}
.x11{left:153.344800pt;}
.x12{left:172.424800pt;}
.x4{left:265.147367pt;}
.x15{left:271.004800pt;}
.xf{left:294.918400pt;}
.x13{left:306.748000pt;}
.x14{left:325.828000pt;}
.x9{left:364.501888pt;}
.x6{left:375.817600pt;}
.x8{left:395.414541pt;}
.x7{left:396.681453pt;}
.x10{left:493.604800pt;}
.xd{left:534.053333pt;}
.xb{left:540.413333pt;}
.x1{left:546.647200pt;}
.x1a{left:551.226400pt;}
.xa{left:584.425600pt;}
}




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