
    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_c4c68a40bc0bff59e9e765f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f3b71f4e91ec5dce5405e7d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174316;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_76eac1acbd616970e072f888.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_14f1e4ab31288cec29d89a3b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_495c241b6a3eab32e88d1e39.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.174000px;}
.v3{vertical-align:18.201600px;}
.v1{vertical-align:23.760000px;}
.ls63{letter-spacing:-1.457280px;}
.lsa8{letter-spacing:-1.192320px;}
.ls97{letter-spacing:-1.126080px;}
.ls4b{letter-spacing:-0.993600px;}
.lsa9{letter-spacing:-0.927360px;}
.ls7a{letter-spacing:-0.864000px;}
.ls2f{letter-spacing:-0.861120px;}
.ls2b{letter-spacing:-0.794880px;}
.ls1e{letter-spacing:-0.771840px;}
.lsa5{letter-spacing:-0.756000px;}
.ls26{letter-spacing:-0.728640px;}
.ls31{letter-spacing:-0.723600px;}
.ls58{letter-spacing:-0.702000px;}
.ls1c{letter-spacing:-0.675360px;}
.ls6e{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.627120px;}
.lsa0{letter-spacing:-0.596160px;}
.ls6f{letter-spacing:-0.594000px;}
.ls86{letter-spacing:-0.540000px;}
.ls4c{letter-spacing:-0.529920px;}
.ls6d{letter-spacing:-0.486000px;}
.ls1a{letter-spacing:-0.482400px;}
.lsa4{letter-spacing:-0.463680px;}
.ls19{letter-spacing:-0.434160px;}
.ls7c{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.418320px;}
.ls62{letter-spacing:-0.397440px;}
.ls43{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.336960px;}
.ls56{letter-spacing:-0.331200px;}
.ls98{letter-spacing:-0.324000px;}
.ls25{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.284400px;}
.ls41{letter-spacing:-0.264960px;}
.ls22{letter-spacing:-0.227520px;}
.ls17{letter-spacing:-0.216000px;}
.ls55{letter-spacing:-0.198720px;}
.ls57{letter-spacing:-0.162000px;}
.ls84{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.132480px;}
.ls85{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.096480px;}
.ls16{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.066240px;}
.ls23{letter-spacing:-0.056880px;}
.ls12{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020880px;}
.ls1d{letter-spacing:0.048240px;}
.ls1{letter-spacing:0.053280px;}
.ls2d{letter-spacing:0.054000px;}
.ls9c{letter-spacing:0.066240px;}
.ls2a{letter-spacing:0.072000px;}
.ls64{letter-spacing:0.072864px;}
.ls54{letter-spacing:0.108000px;}
.ls42{letter-spacing:0.132480px;}
.ls6c{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.162000px;}
.ls37{letter-spacing:0.165600px;}
.ls8{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.182880px;}
.ls6{letter-spacing:0.190296px;}
.ls21{letter-spacing:0.192960px;}
.ls7{letter-spacing:0.195840px;}
.ls27{letter-spacing:0.198720px;}
.lsa1{letter-spacing:0.216000px;}
.lsaa{letter-spacing:0.225216px;}
.ls2{letter-spacing:0.241200px;}
.ls33{letter-spacing:0.264960px;}
.ls2c{letter-spacing:0.270000px;}
.ls9d{letter-spacing:0.272160px;}
.ls15{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.306000px;}
.lsb{letter-spacing:0.306720px;}
.lsa3{letter-spacing:0.313200px;}
.ls8e{letter-spacing:0.329400px;}
.ls29{letter-spacing:0.331200px;}
.ls13{letter-spacing:0.336960px;}
.ls5{letter-spacing:0.358560px;}
.lsf{letter-spacing:0.360000px;}
.ls7b{letter-spacing:0.364320px;}
.ls18{letter-spacing:0.378000px;}
.ls2e{letter-spacing:0.385920px;}
.ls7f{letter-spacing:0.394200px;}
.lsab{letter-spacing:0.397440px;}
.ls60{letter-spacing:0.469800px;}
.ls53{letter-spacing:0.480600px;}
.ls44{letter-spacing:0.728640px;}
.ls40{letter-spacing:0.918000px;}
.ls70{letter-spacing:1.205568px;}
.ls10{letter-spacing:1.457280px;}
.ls61{letter-spacing:1.620000px;}
.ls73{letter-spacing:2.041344px;}
.ls99{letter-spacing:2.053440px;}
.ls71{letter-spacing:2.062944px;}
.ls8c{letter-spacing:2.072448px;}
.ls95{letter-spacing:2.102400px;}
.ls76{letter-spacing:2.108160px;}
.ls82{letter-spacing:2.111040px;}
.ls69{letter-spacing:2.120832px;}
.ls47{letter-spacing:2.126304px;}
.ls9e{letter-spacing:2.154240px;}
.ls94{letter-spacing:2.168640px;}
.ls81{letter-spacing:2.180160px;}
.ls3c{letter-spacing:2.185920px;}
.ls4f{letter-spacing:2.194560px;}
.ls5c{letter-spacing:2.260800px;}
.ls6a{letter-spacing:2.322000px;}
.ls3d{letter-spacing:2.370240px;}
.ls7e{letter-spacing:2.378880px;}
.ls5e{letter-spacing:2.638944px;}
.ls3e{letter-spacing:2.770560px;}
.ls5a{letter-spacing:2.802240px;}
.ls91{letter-spacing:2.848320px;}
.ls96{letter-spacing:2.874816px;}
.ls8a{letter-spacing:2.880000px;}
.ls87{letter-spacing:2.907936px;}
.ls93{letter-spacing:2.914560px;}
.ls65{letter-spacing:2.943360px;}
.ls3f{letter-spacing:3.078000px;}
.ls92{letter-spacing:3.176640px;}
.ls48{letter-spacing:3.576960px;}
.ls88{letter-spacing:3.610080px;}
.ls83{letter-spacing:3.780000px;}
.ls90{letter-spacing:3.868416px;}
.ls4e{letter-spacing:3.901536px;}
.ls45{letter-spacing:4.305600px;}
.ls6b{letter-spacing:4.482000px;}
.ls5f{letter-spacing:5.238000px;}
.ls59{letter-spacing:5.723136px;}
.lsa2{letter-spacing:5.749632px;}
.ls66{letter-spacing:5.762880px;}
.lse{letter-spacing:5.929200px;}
.lsc{letter-spacing:5.937120px;}
.lsa{letter-spacing:5.940000px;}
.ls9{letter-spacing:5.946480px;}
.ls68{letter-spacing:6.458400px;}
.ls49{letter-spacing:6.491520px;}
.ls51{letter-spacing:6.642000px;}
.ls67{letter-spacing:7.226784px;}
.ls9a{letter-spacing:7.398000px;}
.ls8f{letter-spacing:7.909056px;}
.ls4a{letter-spacing:7.948800px;}
.ls52{letter-spacing:8.100000px;}
.ls9b{letter-spacing:8.116200px;}
.ls8b{letter-spacing:8.611200px;}
.ls89{letter-spacing:9.339840px;}
.ls35{letter-spacing:9.412704px;}
.ls46{letter-spacing:10.068480px;}
.ls78{letter-spacing:10.962000px;}
.ls5d{letter-spacing:11.525760px;}
.ls79{letter-spacing:11.691000px;}
.ls7d{letter-spacing:12.254400px;}
.ls34{letter-spacing:12.896928px;}
.ls5b{letter-spacing:12.983040px;}
.ls50{letter-spacing:13.678560px;}
.ls77{letter-spacing:13.711680px;}
.ls4d{letter-spacing:14.374080px;}
.lsa7{letter-spacing:15.255072px;}
.ls3a{letter-spacing:15.433920px;}
.ls75{letter-spacing:16.560000px;}
.ls8d{letter-spacing:16.740000px;}
.ls80{letter-spacing:17.280000px;}
.ls39{letter-spacing:20.136960px;}
.ls3b{letter-spacing:20.865600px;}
.ls3{letter-spacing:21.060000px;}
.lsa6{letter-spacing:26.025696px;}
.ls72{letter-spacing:26.628480px;}
.ls74{letter-spacing:34.577280px;}
.ls38{letter-spacing:34.842240px;}
.ls36{letter-spacing:53.588160px;}
.ls9f{letter-spacing:68.580000px;}
.ls30{letter-spacing:846.000000px;}
.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;}
}
.ws15{word-spacing:-36.000000px;}
.ws6{word-spacing:-21.396960px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.723040px;}
.ws2{word-spacing:-18.288000px;}
.ws104{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.712000px;}
.ws152{word-spacing:-16.957440px;}
.ws4f{word-spacing:-16.891200px;}
.ws55{word-spacing:-16.824960px;}
.ws51{word-spacing:-16.758720px;}
.ws53{word-spacing:-16.725600px;}
.ws54{word-spacing:-16.692480px;}
.ws12f{word-spacing:-16.626240px;}
.ws56{word-spacing:-16.560000px;}
.ws4b{word-spacing:-16.493760px;}
.ws52{word-spacing:-16.427520px;}
.ws8c{word-spacing:-16.361280px;}
.ws4e{word-spacing:-16.295040px;}
.wse2{word-spacing:-16.228800px;}
.ws149{word-spacing:-16.162560px;}
.ws141{word-spacing:-16.096320px;}
.wse0{word-spacing:-16.030080px;}
.ws137{word-spacing:-15.963840px;}
.ws50{word-spacing:-15.831360px;}
.ws8b{word-spacing:-15.765120px;}
.ws14a{word-spacing:-15.698880px;}
.ws153{word-spacing:-15.566400px;}
.ws9{word-spacing:-15.298560px;}
.ws7{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.521680px;}
.ws13{word-spacing:-13.935600px;}
.ws5{word-spacing:-13.878000px;}
.wsbf{word-spacing:-13.770000px;}
.wsb5{word-spacing:-13.662000px;}
.wsd0{word-spacing:-13.608000px;}
.ws17{word-spacing:-13.554000px;}
.ws16{word-spacing:-13.500000px;}
.wse4{word-spacing:-13.338000px;}
.ws105{word-spacing:-13.284000px;}
.ws59{word-spacing:-13.122000px;}
.wsbd{word-spacing:-13.014000px;}
.wsbe{word-spacing:-12.852000px;}
.ws8d{word-spacing:-12.798000px;}
.wsa{word-spacing:-12.301200px;}
.wse{word-spacing:-12.252960px;}
.ws11{word-spacing:-12.108240px;}
.wsf{word-spacing:-11.963520px;}
.ws10{word-spacing:-11.625840px;}
.ws8{word-spacing:-11.577600px;}
.wsd{word-spacing:-11.432880px;}
.ws12{word-spacing:-11.384640px;}
.wsb{word-spacing:-11.288160px;}
.ws130{word-spacing:-9.992160px;}
.ws57{word-spacing:-9.720000px;}
.wse1{word-spacing:-9.000000px;}
.wse3{word-spacing:-8.644320px;}
.ws58{word-spacing:-8.280000px;}
.ws114{word-spacing:-8.147520px;}
.wsd1{word-spacing:-7.551360px;}
.ws13c{word-spacing:-4.305600px;}
.ws143{word-spacing:-4.173120px;}
.ws144{word-spacing:-3.908160px;}
.ws146{word-spacing:-3.775680px;}
.ws2f{word-spacing:-3.576960px;}
.wsba{word-spacing:-3.444480px;}
.ws96{word-spacing:-3.179520px;}
.wsdd{word-spacing:-3.078000px;}
.ws45{word-spacing:-3.047040px;}
.ws127{word-spacing:-2.970000px;}
.ws2b{word-spacing:-2.848320px;}
.ws81{word-spacing:-2.782080px;}
.wsb1{word-spacing:-2.754000px;}
.ws115{word-spacing:-2.715840px;}
.ws94{word-spacing:-2.517120px;}
.wsc4{word-spacing:-2.384640px;}
.ws98{word-spacing:-2.376000px;}
.ws84{word-spacing:-2.318400px;}
.wsb0{word-spacing:-2.268000px;}
.ws5c{word-spacing:-2.185920px;}
.wsbb{word-spacing:-2.119680px;}
.ws5b{word-spacing:-2.053440px;}
.wsdb{word-spacing:-1.998000px;}
.ws134{word-spacing:-1.987200px;}
.ws95{word-spacing:-1.854720px;}
.ws31{word-spacing:-1.788480px;}
.ws9e{word-spacing:-1.620000px;}
.ws132{word-spacing:-1.589760px;}
.ws10a{word-spacing:-1.512000px;}
.ws32{word-spacing:-1.457280px;}
.wsfa{word-spacing:-1.391040px;}
.ws5a{word-spacing:-1.324800px;}
.wsb2{word-spacing:-1.296000px;}
.ws6b{word-spacing:-1.059840px;}
.wsfd{word-spacing:-0.927360px;}
.ws18{word-spacing:-0.926640px;}
.ws9f{word-spacing:-0.918000px;}
.ws41{word-spacing:-0.916560px;}
.ws66{word-spacing:-0.861120px;}
.ws77{word-spacing:-0.810000px;}
.ws25{word-spacing:-0.771840px;}
.ws12d{word-spacing:-0.756000px;}
.ws30{word-spacing:-0.728640px;}
.wsf0{word-spacing:-0.702000px;}
.ws13d{word-spacing:-0.662400px;}
.ws1c{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.596160px;}
.ws9b{word-spacing:-0.594000px;}
.ws126{word-spacing:-0.540000px;}
.ws1a{word-spacing:-0.505440px;}
.ws139{word-spacing:-0.463680px;}
.wsca{word-spacing:-0.378000px;}
.ws27{word-spacing:-0.358560px;}
.ws87{word-spacing:-0.331200px;}
.wsef{word-spacing:-0.324000px;}
.ws1b{word-spacing:-0.288000px;}
.wsc6{word-spacing:-0.270000px;}
.ws63{word-spacing:-0.264960px;}
.ws40{word-spacing:-0.216000px;}
.ws92{word-spacing:-0.198720px;}
.ws26{word-spacing:-0.192960px;}
.wsc9{word-spacing:-0.162000px;}
.wsc3{word-spacing:-0.144000px;}
.wse9{word-spacing:-0.132480px;}
.ws3a{word-spacing:-0.108000px;}
.ws36{word-spacing:-0.072000px;}
.wsb3{word-spacing:-0.054000px;}
.ws23{word-spacing:-0.048240px;}
.ws19{word-spacing:0.000000px;}
.wsee{word-spacing:0.054000px;}
.ws29{word-spacing:0.056880px;}
.ws4d{word-spacing:0.066240px;}
.ws1d{word-spacing:0.072000px;}
.ws21{word-spacing:0.096480px;}
.ws79{word-spacing:0.108000px;}
.ws4a{word-spacing:0.132480px;}
.ws106{word-spacing:0.144000px;}
.wsc7{word-spacing:0.162000px;}
.ws1e{word-spacing:0.216000px;}
.ws28{word-spacing:0.227520px;}
.ws83{word-spacing:0.264960px;}
.ws8f{word-spacing:0.288000px;}
.ws99{word-spacing:0.324000px;}
.ws3f{word-spacing:0.378000px;}
.ws11a{word-spacing:0.397440px;}
.ws20{word-spacing:0.434160px;}
.ws140{word-spacing:0.486000px;}
.ws88{word-spacing:0.529920px;}
.ws3d{word-spacing:0.540000px;}
.wscc{word-spacing:0.594000px;}
.wseb{word-spacing:0.596160px;}
.ws78{word-spacing:0.648000px;}
.ws22{word-spacing:0.675360px;}
.ws2a{word-spacing:0.728640px;}
.ws147{word-spacing:0.756000px;}
.ws39{word-spacing:0.794880px;}
.ws80{word-spacing:0.861120px;}
.ws3e{word-spacing:0.864000px;}
.ws4c{word-spacing:0.916560px;}
.ws150{word-spacing:0.927360px;}
.ws7b{word-spacing:0.993600px;}
.ws121{word-spacing:1.026000px;}
.wsf4{word-spacing:1.126080px;}
.ws14d{word-spacing:1.192320px;}
.wsd9{word-spacing:1.242000px;}
.ws8e{word-spacing:1.258560px;}
.ws74{word-spacing:1.324800px;}
.ws120{word-spacing:1.350000px;}
.wsbc{word-spacing:1.440000px;}
.ws2c{word-spacing:1.457280px;}
.ws62{word-spacing:1.523520px;}
.wsb4{word-spacing:1.566000px;}
.ws42{word-spacing:1.589760px;}
.wsc5{word-spacing:1.944000px;}
.wsfe{word-spacing:2.052000px;}
.ws35{word-spacing:2.185920px;}
.wsd3{word-spacing:2.252160px;}
.wsad{word-spacing:2.268000px;}
.ws34{word-spacing:2.318400px;}
.ws10d{word-spacing:2.430000px;}
.wsaa{word-spacing:2.450880px;}
.ws116{word-spacing:2.583360px;}
.ws76{word-spacing:2.700000px;}
.wsed{word-spacing:2.782080px;}
.wsc8{word-spacing:2.808000px;}
.ws38{word-spacing:2.914560px;}
.ws11b{word-spacing:2.980800px;}
.wsf3{word-spacing:3.024000px;}
.ws37{word-spacing:3.047040px;}
.wsd5{word-spacing:3.245760px;}
.wsa9{word-spacing:3.378240px;}
.ws113{word-spacing:3.402000px;}
.wsf8{word-spacing:3.444480px;}
.ws148{word-spacing:3.456000px;}
.wscd{word-spacing:3.510000px;}
.ws89{word-spacing:3.576960px;}
.ws11f{word-spacing:3.618000px;}
.wsa5{word-spacing:3.643200px;}
.ws10e{word-spacing:3.672000px;}
.ws71{word-spacing:3.709440px;}
.wsde{word-spacing:3.726000px;}
.wsc1{word-spacing:3.841920px;}
.wsf9{word-spacing:3.974400px;}
.ws10c{word-spacing:3.996000px;}
.wsda{word-spacing:4.104000px;}
.wsb9{word-spacing:4.106880px;}
.ws151{word-spacing:4.173120px;}
.wsce{word-spacing:4.212000px;}
.wscf{word-spacing:4.266000px;}
.ws7a{word-spacing:4.305600px;}
.wsa4{word-spacing:4.371840px;}
.wsdf{word-spacing:4.374000px;}
.wsff{word-spacing:4.428000px;}
.ws49{word-spacing:4.438080px;}
.ws1f{word-spacing:4.464720px;}
.ws9d{word-spacing:4.860000px;}
.ws123{word-spacing:4.901760px;}
.ws9c{word-spacing:4.968000px;}
.ws75{word-spacing:5.034240px;}
.ws125{word-spacing:5.076000px;}
.ws10b{word-spacing:5.130000px;}
.ws82{word-spacing:5.166720px;}
.wscb{word-spacing:5.184000px;}
.wsd2{word-spacing:5.431680px;}
.wsaf{word-spacing:5.562000px;}
.ws122{word-spacing:5.564160px;}
.ws73{word-spacing:5.762880px;}
.ws10f{word-spacing:5.832000px;}
.wsae{word-spacing:5.886000px;}
.ws33{word-spacing:5.895360px;}
.ws97{word-spacing:6.264000px;}
.ws111{word-spacing:6.480000px;}
.ws72{word-spacing:6.491520px;}
.ws8a{word-spacing:6.557760px;}
.ws110{word-spacing:6.588000px;}
.wsec{word-spacing:6.624000px;}
.ws112{word-spacing:6.750000px;}
.wsa2{word-spacing:6.888960px;}
.wsa3{word-spacing:7.087680px;}
.ws3b{word-spacing:7.128000px;}
.ws6d{word-spacing:7.220160px;}
.ws145{word-spacing:7.286400px;}
.wsac{word-spacing:7.290000px;}
.wsab{word-spacing:7.344000px;}
.ws43{word-spacing:7.352640px;}
.ws124{word-spacing:7.617600px;}
.ws9a{word-spacing:7.722000px;}
.ws136{word-spacing:7.830000px;}
.ws70{word-spacing:7.948800px;}
.ws109{word-spacing:8.015040px;}
.ws13f{word-spacing:8.046000px;}
.ws44{word-spacing:8.081280px;}
.ws135{word-spacing:8.412480px;}
.ws103{word-spacing:8.424000px;}
.ws119{word-spacing:8.611200px;}
.ws118{word-spacing:8.677440px;}
.ws12e{word-spacing:8.748000px;}
.ws61{word-spacing:9.008640px;}
.ws14e{word-spacing:9.141120px;}
.ws13a{word-spacing:9.207360px;}
.wsdc{word-spacing:9.288000px;}
.ws60{word-spacing:9.339840px;}
.wsa7{word-spacing:9.472320px;}
.ws101{word-spacing:9.504000px;}
.ws85{word-spacing:10.068480px;}
.ws102{word-spacing:10.098000px;}
.ws7d{word-spacing:10.200960px;}
.ws100{word-spacing:10.206000px;}
.wsf2{word-spacing:10.584000px;}
.ws3c{word-spacing:10.692000px;}
.ws7f{word-spacing:10.797120px;}
.ws86{word-spacing:10.863360px;}
.ws131{word-spacing:10.929600px;}
.ws117{word-spacing:11.327040px;}
.wsf1{word-spacing:11.340000px;}
.wsa8{word-spacing:11.525760px;}
.wsf7{word-spacing:11.592000px;}
.wsfb{word-spacing:11.658240px;}
.ws129{word-spacing:11.923200px;}
.ws2d{word-spacing:12.055680px;}
.ws5e{word-spacing:12.254400px;}
.wsfc{word-spacing:12.386880px;}
.wsa6{word-spacing:12.784320px;}
.ws5d{word-spacing:12.983040px;}
.ws138{word-spacing:13.049280px;}
.wsd4{word-spacing:13.115520px;}
.wsc2{word-spacing:13.248000px;}
.ws7e{word-spacing:13.711680px;}
.wse8{word-spacing:13.844160px;}
.wsa0{word-spacing:14.310000px;}
.ws6c{word-spacing:14.374080px;}
.ws90{word-spacing:14.506560px;}
.wsa1{word-spacing:14.526000px;}
.ws14f{word-spacing:14.970240px;}
.ws93{word-spacing:15.102720px;}
.ws7c{word-spacing:15.831360px;}
.wsf6{word-spacing:15.897600px;}
.ws48{word-spacing:15.963840px;}
.ws108{word-spacing:16.416000px;}
.wsc0{word-spacing:16.560000px;}
.wse7{word-spacing:16.626240px;}
.ws11d{word-spacing:16.686000px;}
.ws107{word-spacing:16.848000px;}
.ws12c{word-spacing:17.288640px;}
.ws11e{word-spacing:17.334000px;}
.wsb7{word-spacing:18.017280px;}
.ws14b{word-spacing:18.083520px;}
.ws46{word-spacing:18.745920px;}
.wsf5{word-spacing:19.474560px;}
.ws69{word-spacing:20.004480px;}
.ws64{word-spacing:20.136960px;}
.ws65{word-spacing:20.269440px;}
.ws67{word-spacing:20.733120px;}
.ws68{word-spacing:20.865600px;}
.ws6a{word-spacing:21.660480px;}
.ws24{word-spacing:21.756240px;}
.wsb8{word-spacing:22.322880px;}
.ws13b{word-spacing:23.051520px;}
.ws6e{word-spacing:23.780160px;}
.ws47{word-spacing:23.912640px;}
.ws91{word-spacing:24.508800px;}
.ws12b{word-spacing:24.575040px;}
.ws11c{word-spacing:24.641280px;}
.ws142{word-spacing:25.171200px;}
.ws12a{word-spacing:25.303680px;}
.ws6f{word-spacing:25.899840px;}
.wsd6{word-spacing:26.032320px;}
.wsd7{word-spacing:26.628480px;}
.wsd8{word-spacing:27.357120px;}
.wsb6{word-spacing:27.489600px;}
.ws133{word-spacing:28.085760px;}
.ws14c{word-spacing:30.934080px;}
.wsea{word-spacing:31.066560px;}
.wse5{word-spacing:34.577280px;}
.wse6{word-spacing:34.709760px;}
.ws5f{word-spacing:36.167040px;}
.ws128{word-spacing:41.068800px;}
.ws13e{word-spacing:68.472000px;}
._c{margin-left:-15.350328px;}
._11{margin-left:-13.844160px;}
._e{margin-left:-9.264312px;}
._f{margin-left:-8.213760px;}
._d{margin-left:-6.389352px;}
._10{margin-left:-4.647312px;}
._b{margin-left:-3.359664px;}
._0{margin-left:-1.996488px;}
._1{width:1.524744px;}
._6{width:2.732616px;}
._16{width:3.899232px;}
._4{width:5.381208px;}
._5{width:6.769584px;}
._12{width:8.808696px;}
._13{width:10.806408px;}
._15{width:12.784320px;}
._14{width:13.952808px;}
._18{width:16.560000px;}
._3{width:19.604880px;}
._2{width:20.774376px;}
._19{width:24.812856px;}
._17{width:26.114688px;}
._a{width:48.432960px;}
._8{width:766.967760px;}
._9{width:890.779104px;}
._7{width:1263.791520px;}
.fc2{color:rgb(84,141,212);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.120000px;}
.fs7{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.400000px;}
.y11{bottom:31.860000px;}
.y8{bottom:32.580000px;}
.ydd{bottom:110.308500px;}
.y210{bottom:110.313000px;}
.y145{bottom:110.317500px;}
.y2e{bottom:110.326500px;}
.y1a0{bottom:110.331000px;}
.y84{bottom:110.335500px;}
.y269{bottom:112.494240px;}
.y109{bottom:114.120000px;}
.y2b2{bottom:122.580000px;}
.y2d8{bottom:127.441440px;}
.ydc{bottom:128.493000px;}
.y20f{bottom:128.497500px;}
.y144{bottom:128.502000px;}
.y2d{bottom:128.511000px;}
.y19f{bottom:128.515500px;}
.y108{bottom:128.520000px;}
.y83{bottom:132.300000px;}
.y2f7{bottom:133.424640px;}
.y268{bottom:134.817120px;}
.y2b1{bottom:144.897120px;}
.ydb{bottom:146.853000px;}
.y20e{bottom:146.857500px;}
.y143{bottom:146.862000px;}
.y2c{bottom:146.871000px;}
.y82{bottom:146.875500px;}
.yaf{bottom:148.137120px;}
.y28d{bottom:149.216400px;}
.y2d7{bottom:149.764320px;}
.y107{bottom:150.660000px;}
.y267{bottom:157.140000px;}
.y2f6{bottom:164.739600px;}
.y106{bottom:165.024000px;}
.yda{bottom:165.037500px;}
.y16c{bottom:165.042000px;}
.y142{bottom:165.046500px;}
.y18a{bottom:165.051000px;}
.y2b{bottom:165.055500px;}
.y12a{bottom:166.500000px;}
.y2b0{bottom:167.220000px;}
.y81{bottom:168.840000px;}
.yae{bottom:170.460000px;}
.y28c{bottom:171.539280px;}
.y2d6{bottom:180.897120px;}
.y105{bottom:183.208500px;}
.yd9{bottom:183.222000px;}
.y16b{bottom:183.226500px;}
.y141{bottom:183.231000px;}
.y189{bottom:183.235500px;}
.y80{bottom:184.680000px;}
.y2a{bottom:187.740000px;}
.y266{bottom:189.000000px;}
.y28b{bottom:193.680000px;}
.y2f5{bottom:195.872400px;}
.y2af{bottom:198.360000px;}
.y104{bottom:201.393000px;}
.yd8{bottom:201.406500px;}
.y16a{bottom:201.411000px;}
.y140{bottom:201.415500px;}
.y129{bottom:201.956400px;}
.yad{bottom:202.140000px;}
.y29{bottom:202.860000px;}
.y2d5{bottom:203.220000px;}
.y188{bottom:205.200000px;}
.y7f{bottom:210.597120px;}
.y103{bottom:219.577500px;}
.yd7{bottom:219.591000px;}
.y169{bottom:219.595500px;}
.y2ae{bottom:220.677120px;}
.y13f{bottom:223.380000px;}
.y128{bottom:224.097120px;}
.y28a{bottom:224.996400px;}
.y2f4{bottom:227.187360px;}
.y265{bottom:230.508720px;}
.y7e{bottom:232.910640px;}
.y2d4{bottom:234.360000px;}
.y28{bottom:236.693520px;}
.y1ef{bottom:237.753000px;}
.y102{bottom:237.762000px;}
.y25b{bottom:237.766500px;}
.yd6{bottom:237.775500px;}
.y168{bottom:237.780000px;}
.y187{bottom:241.560000px;}
.y2ad{bottom:243.000000px;}
.yac{bottom:243.839520px;}
.y127{bottom:246.420000px;}
.y289{bottom:247.319280px;}
.y264{bottom:252.831600px;}
.y7d{bottom:255.233520px;}
.y1ee{bottom:256.113000px;}
.y101{bottom:256.122000px;}
.y167{bottom:256.126500px;}
.y20d{bottom:256.131000px;}
.yd5{bottom:256.135500px;}
.y2d3{bottom:256.680000px;}
.y231{bottom:257.400000px;}
.y2f3{bottom:258.502320px;}
.y27{bottom:258.834240px;}
.y240{bottom:259.920000px;}
.yab{bottom:266.162400px;}
.y288{bottom:269.460000px;}
.y2ac{bottom:274.140000px;}
.y1ed{bottom:274.297500px;}
.y100{bottom:274.306500px;}
.y166{bottom:274.311000px;}
.y186{bottom:274.315500px;}
.y23f{bottom:274.320000px;}
.y263{bottom:275.154480px;}
.y7c{bottom:277.374240px;}
.yd4{bottom:278.100000px;}
.y126{bottom:278.280000px;}
.y2d2{bottom:278.996400px;}
.y26{bottom:281.157120px;}
.yaa{bottom:288.485280px;}
.y2f2{bottom:289.817280px;}
.y1dd{bottom:292.482000px;}
.yff{bottom:292.491000px;}
.y165{bottom:292.495500px;}
.yd3{bottom:296.280000px;}
.y2ab{bottom:296.466480px;}
.y262{bottom:297.477360px;}
.y7b{bottom:299.697120px;}
.y287{bottom:300.776400px;}
.y2d1{bottom:301.319280px;}
.y125{bottom:302.580000px;}
.y25{bottom:303.480000px;}
.ya9{bottom:310.626000px;}
.y1dc{bottom:310.666500px;}
.yd2{bottom:310.675500px;}
.y185{bottom:312.120000px;}
.y164{bottom:314.460000px;}
.y2aa{bottom:318.789360px;}
.y261{bottom:319.618080px;}
.y2f1{bottom:320.950080px;}
.y7a{bottom:321.969600px;}
.y286{bottom:323.099280px;}
.y2d0{bottom:323.460000px;}
.y230{bottom:328.674240px;}
.y163{bottom:328.846500px;}
.y1db{bottom:328.851000px;}
.yd1{bottom:328.860000px;}
.y19e{bottom:330.300000px;}
.yfe{bottom:332.640000px;}
.y24{bottom:335.160000px;}
.ya8{bottom:341.940960px;}
.y79{bottom:344.110320px;}
.y124{bottom:344.126880px;}
.y285{bottom:345.240000px;}
.yfd{bottom:347.202000px;}
.y162{bottom:347.206500px;}
.y1da{bottom:347.211000px;}
.y2a9{bottom:349.922160px;}
.y260{bottom:350.933040px;}
.y22f{bottom:350.997120px;}
.yd0{bottom:351.000000px;}
.y2f0{bottom:352.265040px;}
.y2cf{bottom:354.780000px;}
.y25a{bottom:357.452640px;}
.ya7{bottom:364.263840px;}
.yfc{bottom:365.386500px;}
.y161{bottom:365.391000px;}
.y1d9{bottom:365.395500px;}
.y123{bottom:366.449760px;}
.ycf{bottom:366.840000px;}
.y25f{bottom:373.255920px;}
.y22e{bottom:373.307040px;}
.y78{bottom:375.425280px;}
.y284{bottom:376.556400px;}
.y23{bottom:376.920000px;}
.y2ce{bottom:377.100000px;}
.y184{bottom:377.451360px;}
.y259{bottom:379.775520px;}
.y2a8{bottom:381.237120px;}
.yfb{bottom:383.571000px;}
.y160{bottom:383.575500px;}
.y2ef{bottom:383.580000px;}
.ya6{bottom:386.404560px;}
.y19d{bottom:386.441280px;}
.y1d8{bottom:387.360000px;}
.y122{bottom:388.772640px;}
.y20c{bottom:390.959280px;}
.y25e{bottom:395.396640px;}
.y22d{bottom:395.447760px;}
.y77{bottom:397.748160px;}
.y283{bottom:398.879280px;}
.y2cd{bottom:399.240000px;}
.y183{bottom:399.774240px;}
.yfa{bottom:401.755500px;}
.y258{bottom:402.098400px;}
.yce{bottom:402.119280px;}
.y1d7{bottom:403.200000px;}
.y2a7{bottom:403.560000px;}
.y15f{bottom:405.540000px;}
.ya5{bottom:408.727440px;}
.y19c{bottom:408.764160px;}
.y23e{bottom:408.777120px;}
.y22{bottom:408.780000px;}
.y121{bottom:411.095520px;}
.y20b{bottom:413.282160px;}
.y2ee{bottom:415.260000px;}
.y25d{bottom:417.719520px;}
.y22c{bottom:417.770640px;}
.yf9{bottom:419.940000px;}
.y76{bottom:420.071040px;}
.y282{bottom:421.020000px;}
.y15e{bottom:421.380000px;}
.y2cc{bottom:421.560000px;}
.y182{bottom:422.097120px;}
.y1bf{bottom:423.720000px;}
.ycd{bottom:424.237680px;}
.y257{bottom:424.239120px;}
.y19b{bottom:431.087040px;}
.y23d{bottom:431.087760px;}
.y120{bottom:433.236240px;}
.y2a6{bottom:434.700000px;}
.y20a{bottom:435.605040px;}
.y1be{bottom:438.120000px;}
.yf8{bottom:439.560000px;}
.ya4{bottom:439.860240px;}
.y25c{bottom:440.042400px;}
.y22b{bottom:440.093520px;}
.y75{bottom:442.211760px;}
.y2cb{bottom:443.876400px;}
.y181{bottom:444.237840px;}
.y256{bottom:446.562000px;}
.y13e{bottom:446.580720px;}
.y21{bottom:450.514080px;}
.y281{bottom:452.336400px;}
.y19a{bottom:453.227760px;}
.y23c{bottom:453.228480px;}
.ycc{bottom:455.552640px;}
.y11f{bottom:455.559120px;}
.y1bd{bottom:456.480000px;}
.y2a5{bottom:457.020000px;}
.y2ed{bottom:457.021440px;}
.ya3{bottom:462.183120px;}
.y1d6{bottom:462.230640px;}
.y22a{bottom:462.234240px;}
.y74{bottom:464.534640px;}
.y2ca{bottom:466.017120px;}
.y180{bottom:466.560720px;}
.y209{bottom:466.737840px;}
.y255{bottom:468.884880px;}
.y13d{bottom:468.903600px;}
.y20{bottom:472.836960px;}
.y280{bottom:474.659280px;}
.yf7{bottom:475.544160px;}
.y199{bottom:475.550640px;}
.y23b{bottom:475.551360px;}
.y1bc{bottom:476.100000px;}
.ycb{bottom:477.875520px;}
.y11e{bottom:477.882000px;}
.y2a4{bottom:479.337120px;}
.y2ec{bottom:479.344320px;}
.ya2{bottom:484.506000px;}
.y1d5{bottom:484.553520px;}
.y229{bottom:484.557120px;}
.y73{bottom:486.857520px;}
.y2c9{bottom:488.340000px;}
.y1ec{bottom:488.877840px;}
.y17f{bottom:488.883600px;}
.y208{bottom:489.060720px;}
.y254{bottom:491.025600px;}
.y13c{bottom:491.044320px;}
.y1f{bottom:494.977680px;}
.y27f{bottom:496.800000px;}
.yf6{bottom:497.867040px;}
.y198{bottom:497.873520px;}
.yca{bottom:500.016240px;}
.y11d{bottom:500.022720px;}
.y2a3{bottom:501.660000px;}
.y23a{bottom:506.684160px;}
.ya1{bottom:506.828880px;}
.y228{bottom:506.867760px;}
.y1d4{bottom:506.876400px;}
.y72{bottom:508.998240px;}
.y2eb{bottom:510.477120px;}
.y1eb{bottom:511.018560px;}
.y17e{bottom:511.024320px;}
.y207{bottom:511.383600px;}
.y13b{bottom:513.367200px;}
.y1e{bottom:517.300560px;}
.y2c8{bottom:519.480000px;}
.yf5{bottom:520.007760px;}
.y197{bottom:520.014240px;}
.yc9{bottom:522.339120px;}
.y253{bottom:522.340560px;}
.y11c{bottom:522.345600px;}
.y1bb{bottom:525.044160px;}
.y27e{bottom:528.117120px;}
.ya0{bottom:528.969600px;}
.y239{bottom:529.007040px;}
.y227{bottom:529.008480px;}
.y1d3{bottom:529.017120px;}
.y71{bottom:531.321120px;}
.y2a2{bottom:532.800000px;}
.y17d{bottom:533.347200px;}
.y206{bottom:533.524320px;}
.y15d{bottom:535.679280px;}
.y1d{bottom:539.623440px;}
.y2c7{bottom:541.800000px;}
.yf4{bottom:542.330640px;}
.y1ea{bottom:542.333520px;}
.y196{bottom:542.337120px;}
.y13a{bottom:544.494960px;}
.yc8{bottom:544.662000px;}
.y252{bottom:544.663440px;}
.y11b{bottom:544.668480px;}
.y1ba{bottom:547.367040px;}
.y27d{bottom:550.440000px;}
.y9f{bottom:551.292480px;}
.y1d2{bottom:551.329920px;}
.y226{bottom:551.331360px;}
.y70{bottom:553.644000px;}
.y2a1{bottom:555.120000px;}
.y205{bottom:555.847200px;}
.y15c{bottom:557.820000px;}
.y1c{bottom:561.764160px;}
.y2ea{bottom:564.117840px;}
.y2c6{bottom:564.120000px;}
.y17c{bottom:564.465600px;}
.y195{bottom:564.623280px;}
.yf3{bottom:564.653520px;}
.y1e9{bottom:564.656400px;}
.yc7{bottom:566.802720px;}
.y251{bottom:566.804160px;}
.y11a{bottom:566.809200px;}
.y139{bottom:566.817840px;}
.y1b9{bottom:569.507760px;}
.y9e{bottom:573.615360px;}
.y1d1{bottom:573.652800px;}
.y225{bottom:573.654240px;}
.y6f{bottom:575.784720px;}
.y2a0{bottom:577.440000px;}
.y27c{bottom:581.581440px;}
.y1b{bottom:584.087040px;}
.y2c5{bottom:586.439280px;}
.y2e9{bottom:586.440720px;}
.y194{bottom:586.764000px;}
.y17b{bottom:586.788480px;}
.yf2{bottom:586.794240px;}
.y1e8{bottom:586.797120px;}
.y204{bottom:586.964160px;}
.y250{bottom:589.127040px;}
.y119{bottom:589.132080px;}
.y138{bottom:589.140720px;}
.y15b{bottom:589.680000px;}
.y1b8{bottom:591.830640px;}
.y9d{bottom:595.756080px;}
.y1d0{bottom:595.793520px;}
.y224{bottom:595.794960px;}
.y6e{bottom:598.107600px;}
.yc6{bottom:598.117680px;}
.y29f{bottom:599.577120px;}
.y27b{bottom:603.904320px;}
.y1a{bottom:606.409920px;}
.y2c4{bottom:608.580000px;}
.y2e8{bottom:608.581440px;}
.y193{bottom:609.086880px;}
.y17a{bottom:609.111360px;}
.y1e7{bottom:609.116400px;}
.yf1{bottom:609.117120px;}
.y203{bottom:609.287040px;}
.y24f{bottom:611.449920px;}
.y118{bottom:611.454960px;}
.y137{bottom:611.463600px;}
.y1b7{bottom:614.153520px;}
.y9c{bottom:618.078960px;}
.y1cf{bottom:618.116400px;}
.y223{bottom:618.117840px;}
.y6d{bottom:620.430480px;}
.yc5{bottom:620.440560px;}
.y29e{bottom:621.900000px;}
.y27a{bottom:626.227200px;}
.y19{bottom:628.550640px;}
.y2e7{bottom:630.904320px;}
.y15a{bottom:631.252800px;}
.y192{bottom:631.409760px;}
.y179{bottom:631.434240px;}
.y1e6{bottom:631.439280px;}
.yf0{bottom:631.440720px;}
.y202{bottom:631.609920px;}
.y24e{bottom:633.590640px;}
.y117{bottom:633.595680px;}
.y136{bottom:633.604320px;}
.y1b6{bottom:636.294240px;}
.y2c3{bottom:639.900000px;}
.y9b{bottom:640.401840px;}
.y1ce{bottom:640.439280px;}
.y222{bottom:640.440720px;}
.y6c{bottom:642.571200px;}
.yc4{bottom:642.581280px;}
.y18{bottom:650.873520px;}
.y29d{bottom:653.040000px;}
.y191{bottom:653.550480px;}
.y178{bottom:653.574960px;}
.y159{bottom:653.575680px;}
.y1e5{bottom:653.577120px;}
.yef{bottom:653.581440px;}
.y201{bottom:653.932800px;}
.y24d{bottom:655.913520px;}
.y116{bottom:655.918560px;}
.y135{bottom:655.927200px;}
.y279{bottom:657.360000px;}
.y1b5{bottom:658.617120px;}
.y2e6{bottom:662.037120px;}
.y2c2{bottom:662.219280px;}
.y9a{bottom:662.542560px;}
.y1cd{bottom:662.556240px;}
.y238{bottom:662.564160px;}
.y6b{bottom:664.894080px;}
.yc3{bottom:664.904160px;}
.y221{bottom:671.573520px;}
.y17{bottom:673.196400px;}
.y29c{bottom:675.360000px;}
.y1e4{bottom:675.873360px;}
.y177{bottom:675.897840px;}
.y158{bottom:675.898560px;}
.y200{bottom:676.073520px;}
.y24c{bottom:678.236400px;}
.y115{bottom:678.241440px;}
.y1b4{bottom:680.933520px;}
.y2c1{bottom:684.360000px;}
.y99{bottom:684.865440px;}
.y1cc{bottom:684.879120px;}
.y237{bottom:684.887040px;}
.yee{bottom:684.896400px;}
.y134{bottom:687.041280px;}
.yc2{bottom:687.227040px;}
.y278{bottom:688.684320px;}
.y55{bottom:691.740000px;}
.y220{bottom:693.896400px;}
.y16{bottom:695.337120px;}
.y6a{bottom:696.209040px;}
.y29b{bottom:697.677120px;}
.y1e3{bottom:698.196240px;}
.y176{bottom:698.220720px;}
.y157{bottom:698.221440px;}
.y1ff{bottom:698.396400px;}
.y24b{bottom:700.377120px;}
.y1b3{bottom:703.074240px;}
.y98{bottom:707.188320px;}
.y1cb{bottom:707.202000px;}
.y236{bottom:707.209920px;}
.yed{bottom:707.219280px;}
.y133{bottom:709.364160px;}
.yc1{bottom:709.367760px;}
.y114{bottom:709.374240px;}
.y277{bottom:711.007200px;}
.y54{bottom:712.800000px;}
.y40{bottom:715.317840px;}
.y2c0{bottom:715.680000px;}
.y2e5{bottom:715.682880px;}
.y21f{bottom:716.219280px;}
.y15{bottom:717.660000px;}
.y69{bottom:718.349760px;}
.y29a{bottom:720.000000px;}
.y1e2{bottom:720.336960px;}
.y175{bottom:720.361440px;}
.y1fe{bottom:720.719280px;}
.y24a{bottom:722.700000px;}
.y1b2{bottom:725.397120px;}
.y97{bottom:729.329040px;}
.y1ca{bottom:729.342720px;}
.yec{bottom:729.344160px;}
.y235{bottom:729.350640px;}
.y156{bottom:729.354240px;}
.y132{bottom:731.687040px;}
.yc0{bottom:731.690640px;}
.y113{bottom:731.697120px;}
.y53{bottom:737.100000px;}
.y2bf{bottom:737.999280px;}
.y2e4{bottom:738.005760px;}
.y21e{bottom:738.328320px;}
.y68{bottom:740.672640px;}
.y276{bottom:742.140000px;}
.y1e1{bottom:742.659840px;}
.y1fd{bottom:742.852080px;}
.y3f{bottom:744.660000px;}
.y1b1{bottom:747.693360px;}
.y14{bottom:749.520000px;}
.y299{bottom:751.134240px;}
.y96{bottom:751.651920px;}
.y1c9{bottom:751.665600px;}
.yeb{bottom:751.667040px;}
.y234{bottom:751.673520px;}
.y174{bottom:751.676400px;}
.y155{bottom:751.677120px;}
.y112{bottom:753.993360px;}
.y131{bottom:754.009920px;}
.ybf{bottom:754.013520px;}
.y249{bottom:754.380000px;}
.y2be{bottom:760.140000px;}
.y2e3{bottom:760.146480px;}
.y21d{bottom:760.651200px;}
.y52{bottom:761.400000px;}
.y67{bottom:762.995520px;}
.y1e0{bottom:764.982720px;}
.y1fc{bottom:765.174960px;}
.y1b0{bottom:769.834080px;}
.y298{bottom:773.457120px;}
.y275{bottom:773.460000px;}
.y190{bottom:773.974800px;}
.y154{bottom:773.977680px;}
.y1c8{bottom:773.988480px;}
.yea{bottom:773.989920px;}
.y233{bottom:773.996400px;}
.y173{bottom:773.999280px;}
.y3e{bottom:774.180000px;}
.y111{bottom:776.134080px;}
.y130{bottom:776.150640px;}
.ybe{bottom:776.154240px;}
.y95{bottom:782.784720px;}
.y21c{bottom:782.974080px;}
.y66{bottom:785.136240px;}
.y51{bottom:785.154240px;}
.y10{bottom:786.420000px;}
.y1fb{bottom:787.497840px;}
.y2bd{bottom:791.453520px;}
.y2e2{bottom:791.461440px;}
.y13{bottom:791.820000px;}
.y1af{bottom:792.156960px;}
.y274{bottom:795.780000px;}
.y18f{bottom:796.115520px;}
.y153{bottom:796.118400px;}
.y172{bottom:796.127040px;}
.y1c7{bottom:796.129200px;}
.ye9{bottom:796.130640px;}
.y248{bottom:796.131360px;}
.y232{bottom:796.137120px;}
.y110{bottom:798.456960px;}
.y12f{bottom:798.473520px;}
.ybd{bottom:798.477120px;}
.y94{bottom:805.107600px;}
.y21b{bottom:805.114800px;}
.y3d{bottom:805.860000px;}
.y65{bottom:807.459120px;}
.y50{bottom:807.477120px;}
.y1fa{bottom:809.638560px;}
.y2bc{bottom:813.776400px;}
.y2e1{bottom:813.784320px;}
.y1ae{bottom:814.479840px;}
.y273{bottom:817.925040px;}
.y18e{bottom:818.438400px;}
.y152{bottom:818.441280px;}
.y171{bottom:818.449920px;}
.ye8{bottom:818.453520px;}
.y247{bottom:818.454240px;}
.y10f{bottom:820.779840px;}
.ybc{bottom:820.787040px;}
.y12e{bottom:820.796400px;}
.y297{bottom:826.914240px;}
.y93{bottom:827.430480px;}
.y21a{bottom:827.437680px;}
.y1c6{bottom:827.444160px;}
.y64{bottom:829.782000px;}
.y4f{bottom:829.800000px;}
.y2bb{bottom:835.917120px;}
.y2e0{bottom:835.925040px;}
.y1ad{bottom:836.620560px;}
.y18d{bottom:840.761280px;}
.y151{bottom:840.764160px;}
.y170{bottom:840.772800px;}
.ye7{bottom:840.776400px;}
.y246{bottom:840.777120px;}
.y1f9{bottom:840.953520px;}
.yf{bottom:841.860000px;}
.y10e{bottom:842.920560px;}
.ybb{bottom:842.927760px;}
.y12d{bottom:842.937120px;}
.y3c{bottom:847.597680px;}
.y296{bottom:849.237120px;}
.y272{bottom:849.240000px;}
.y92{bottom:849.753360px;}
.y219{bottom:849.760560px;}
.y1c5{bottom:849.767040px;}
.y63{bottom:851.922720px;}
.y4e{bottom:851.927040px;}
.y2ba{bottom:858.240000px;}
.y1ac{bottom:858.943440px;}
.ye{bottom:862.020000px;}
.y18c{bottom:862.902000px;}
.y150{bottom:862.904880px;}
.y16f{bottom:862.913520px;}
.ye6{bottom:862.917120px;}
.y245{bottom:862.917840px;}
.y1f8{bottom:863.276400px;}
.y10d{bottom:865.243440px;}
.yba{bottom:865.250640px;}
.y12c{bottom:865.260000px;}
.y2df{bottom:867.240000px;}
.y3b{bottom:869.920560px;}
.y295{bottom:871.560000px;}
.y91{bottom:871.894080px;}
.y218{bottom:871.901280px;}
.y1c4{bottom:871.907760px;}
.y62{bottom:874.245600px;}
.y4d{bottom:874.249920px;}
.y271{bottom:880.378560px;}
.y1ab{bottom:881.266320px;}
.yd{bottom:882.365940px;}
.ye5{bottom:885.224880px;}
.y14f{bottom:885.227760px;}
.y16e{bottom:885.236400px;}
.y244{bottom:885.240720px;}
.y1f7{bottom:885.417120px;}
.y10c{bottom:887.566320px;}
.yb9{bottom:887.573520px;}
.y2b9{bottom:889.378560px;}
.y2de{bottom:889.562880px;}
.y3a{bottom:892.243440px;}
.y90{bottom:894.216960px;}
.y217{bottom:894.224160px;}
.y1c3{bottom:894.230640px;}
.y61{bottom:896.568480px;}
.y4c{bottom:896.572800px;}
.y12b{bottom:896.940000px;}
.yc{bottom:902.514780px;}
.y294{bottom:902.697120px;}
.y270{bottom:902.701440px;}
.y1aa{bottom:903.407040px;}
.ye4{bottom:907.547760px;}
.y14e{bottom:907.550640px;}
.y16d{bottom:907.559280px;}
.y243{bottom:907.563600px;}
.y1f6{bottom:907.737120px;}
.y10b{bottom:909.707040px;}
.yb8{bottom:909.714240px;}
.y2b8{bottom:911.701440px;}
.y39{bottom:914.384160px;}
.y8f{bottom:916.539840px;}
.y216{bottom:916.547040px;}
.y1c2{bottom:916.553520px;}
.y60{bottom:918.709200px;}
.y4b{bottom:918.713520px;}
.y2dd{bottom:920.695680px;}
.yb{bottom:922.860000px;}
.y293{bottom:925.020000px;}
.y26f{bottom:925.024320px;}
.y1a9{bottom:925.729920px;}
.ye3{bottom:929.688480px;}
.y14d{bottom:929.691360px;}
.y242{bottom:929.704320px;}
.y1f5{bottom:930.052800px;}
.y10a{bottom:932.029920px;}
.yb7{bottom:932.037120px;}
.y2b7{bottom:934.024320px;}
.y38{bottom:936.707040px;}
.y8e{bottom:938.680560px;}
.y215{bottom:938.687760px;}
.y1c1{bottom:938.694240px;}
.y5f{bottom:941.032080px;}
.y4a{bottom:941.036400px;}
.y2dc{bottom:943.018560px;}
.y1a8{bottom:948.052800px;}
.ye2{bottom:952.011360px;}
.y14c{bottom:952.014240px;}
.y241{bottom:952.027200px;}
.y1f4{bottom:952.193520px;}
.ya{bottom:953.817480px;}
.yb6{bottom:954.352800px;}
.y26e{bottom:956.157120px;}
.y292{bottom:956.160000px;}
.y37{bottom:959.029920px;}
.y8d{bottom:961.003440px;}
.y214{bottom:961.010640px;}
.y1c0{bottom:961.017120px;}
.y49{bottom:963.359280px;}
.y2b6{bottom:965.157120px;}
.y2db{bottom:965.341440px;}
.y1a7{bottom:970.193520px;}
.y5e{bottom:972.164880px;}
.ye1{bottom:974.334240px;}
.y14b{bottom:974.337120px;}
.y1f3{bottom:974.516400px;}
.yb5{bottom:976.493520px;}
.y291{bottom:978.480000px;}
.y26d{bottom:978.489360px;}
.y36{bottom:981.170640px;}
.y9{bottom:982.080000px;}
.y18b{bottom:983.144160px;}
.y8c{bottom:983.326320px;}
.y213{bottom:983.333520px;}
.y48{bottom:985.500000px;}
.y2b5{bottom:987.480000px;}
.y2da{bottom:987.482160px;}
.y1a6{bottom:992.516400px;}
.y5d{bottom:994.487760px;}
.ye0{bottom:996.474960px;}
.y14a{bottom:996.477840px;}
.y1f2{bottom:996.839280px;}
.yb4{bottom:998.816400px;}
.y290{bottom:1000.813680px;}
.y35{bottom:1003.493520px;}
.y8b{bottom:1005.467040px;}
.y212{bottom:1005.474240px;}
.y47{bottom:1007.820000px;}
.y7{bottom:1009.440000px;}
.y26c{bottom:1009.804320px;}
.y1a5{bottom:1014.839280px;}
.y5c{bottom:1016.810640px;}
.y2d9{bottom:1018.797120px;}
.ydf{bottom:1018.797840px;}
.y2b4{bottom:1018.800000px;}
.y149{bottom:1018.800720px;}
.y1f1{bottom:1018.980000px;}
.yb3{bottom:1021.139280px;}
.y28f{bottom:1023.136560px;}
.y34{bottom:1025.816400px;}
.y8a{bottom:1027.789920px;}
.y211{bottom:1027.797120px;}
.y46{bottom:1030.136400px;}
.y26b{bottom:1032.127200px;}
.y1a4{bottom:1036.974240px;}
.y5b{bottom:1039.133520px;}
.y2b3{bottom:1041.120000px;}
.yde{bottom:1041.120720px;}
.y148{bottom:1041.123600px;}
.yb2{bottom:1043.280000px;}
.y33{bottom:1047.957120px;}
.y6{bottom:1049.400000px;}
.y89{bottom:1050.112800px;}
.y1f0{bottom:1050.840000px;}
.y45{bottom:1052.277120px;}
.y28e{bottom:1054.269360px;}
.y1a3{bottom:1059.297120px;}
.y5a{bottom:1061.274240px;}
.y26a{bottom:1063.260000px;}
.y1df{bottom:1063.261440px;}
.y147{bottom:1063.264320px;}
.y32{bottom:1070.280000px;}
.y88{bottom:1072.253520px;}
.y44{bottom:1074.600000px;}
.yb1{bottom:1075.140000px;}
.y2f9{bottom:1076.592240px;}
.y5{bottom:1079.100000px;}
.y1a2{bottom:1081.620000px;}
.y59{bottom:1083.597120px;}
.y1de{bottom:1085.584320px;}
.y146{bottom:1085.587200px;}
.y87{bottom:1094.576400px;}
.y43{bottom:1096.920000px;}
.y4{bottom:1103.400000px;}
.y58{bottom:1105.920000px;}
.y2f8{bottom:1107.725040px;}
.y1a1{bottom:1113.300000px;}
.yb0{bottom:1116.717120px;}
.y86{bottom:1116.899280px;}
.y3{bottom:1127.700000px;}
.y42{bottom:1128.600000px;}
.y57{bottom:1137.600000px;}
.y85{bottom:1139.040000px;}
.y31{bottom:1139.760000px;}
.y2{bottom:1152.000000px;}
.y30{bottom:1164.060000px;}
.y56{bottom:1174.680000px;}
.y1{bottom:1177.200000px;}
.y2f{bottom:1186.560000px;}
.y41{bottom:1197.180000px;}
.hc{height:30.225586px;}
.h12{height:33.105586px;}
.he{height:43.081523px;}
.h2e{height:48.062812px;}
.h4{height:48.225586px;}
.h20{height:48.243586px;}
.hd{height:48.279586px;}
.h7{height:50.760000px;}
.h8{height:50.797617px;}
.h13{height:52.242188px;}
.ha{height:52.558594px;}
.h5{height:53.369648px;}
.h6{height:53.390528px;}
.h9{height:55.912148px;}
.hb{height:59.156719px;}
.h2d{height:59.159599px;}
.h2c{height:59.162479px;}
.h2f{height:59.165359px;}
.h1d{height:59.168239px;}
.h27{height:59.171119px;}
.h1c{height:59.176879px;}
.h22{height:59.179759px;}
.h23{height:59.182639px;}
.h14{height:59.185519px;}
.h28{height:59.188399px;}
.h1e{height:59.191279px;}
.h11{height:59.194159px;}
.h26{height:59.197039px;}
.h2a{height:59.205679px;}
.h15{height:59.208559px;}
.h24{height:59.211439px;}
.h1f{height:59.214319px;}
.h17{height:59.217199px;}
.h18{height:59.220079px;}
.h1b{height:59.231599px;}
.h2b{height:59.243119px;}
.h16{height:59.245999px;}
.h25{height:59.251759px;}
.h19{height:59.263279px;}
.h29{height:59.283439px;}
.h1a{height:59.289199px;}
.h21{height:59.303599px;}
.h10{height:59.358319px;}
.h2{height:61.493555px;}
.h3{height:64.300781px;}
.hf{height:69.086250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:561.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x7{left:56.520000px;}
.x3{left:106.380000px;}
.x1{left:127.620000px;}
.xd{left:154.612800px;}
.x4{left:165.600000px;}
.x10{left:168.125760px;}
.xe{left:170.079840px;}
.x6{left:179.820000px;}
.xf{left:197.072640px;}
.xa{left:216.180000px;}
.x2{left:217.620000px;}
.x8{left:235.800000px;}
.x9{left:305.100000px;}
.xb{left:343.620000px;}
.xc{left:738.360000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.488000pt;}
.v3{vertical-align:16.179200pt;}
.v1{vertical-align:21.120000pt;}
.ls63{letter-spacing:-1.295360pt;}
.lsa8{letter-spacing:-1.059840pt;}
.ls97{letter-spacing:-1.000960pt;}
.ls4b{letter-spacing:-0.883200pt;}
.lsa9{letter-spacing:-0.824320pt;}
.ls7a{letter-spacing:-0.768000pt;}
.ls2f{letter-spacing:-0.765440pt;}
.ls2b{letter-spacing:-0.706560pt;}
.ls1e{letter-spacing:-0.686080pt;}
.lsa5{letter-spacing:-0.672000pt;}
.ls26{letter-spacing:-0.647680pt;}
.ls31{letter-spacing:-0.643200pt;}
.ls58{letter-spacing:-0.624000pt;}
.ls1c{letter-spacing:-0.600320pt;}
.ls6e{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.557440pt;}
.lsa0{letter-spacing:-0.529920pt;}
.ls6f{letter-spacing:-0.528000pt;}
.ls86{letter-spacing:-0.480000pt;}
.ls4c{letter-spacing:-0.471040pt;}
.ls6d{letter-spacing:-0.432000pt;}
.ls1a{letter-spacing:-0.428800pt;}
.lsa4{letter-spacing:-0.412160pt;}
.ls19{letter-spacing:-0.385920pt;}
.ls7c{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.371840pt;}
.ls62{letter-spacing:-0.353280pt;}
.ls43{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.299520pt;}
.ls56{letter-spacing:-0.294400pt;}
.ls98{letter-spacing:-0.288000pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.252800pt;}
.ls41{letter-spacing:-0.235520pt;}
.ls22{letter-spacing:-0.202240pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls55{letter-spacing:-0.176640pt;}
.ls57{letter-spacing:-0.144000pt;}
.ls84{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.117760pt;}
.ls85{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.085760pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.058880pt;}
.ls23{letter-spacing:-0.050560pt;}
.ls12{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018560pt;}
.ls1d{letter-spacing:0.042880pt;}
.ls1{letter-spacing:0.047360pt;}
.ls2d{letter-spacing:0.048000pt;}
.ls9c{letter-spacing:0.058880pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls64{letter-spacing:0.064768pt;}
.ls54{letter-spacing:0.096000pt;}
.ls42{letter-spacing:0.117760pt;}
.ls6c{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.144000pt;}
.ls37{letter-spacing:0.147200pt;}
.ls8{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.162560pt;}
.ls6{letter-spacing:0.169152pt;}
.ls21{letter-spacing:0.171520pt;}
.ls7{letter-spacing:0.174080pt;}
.ls27{letter-spacing:0.176640pt;}
.lsa1{letter-spacing:0.192000pt;}
.lsaa{letter-spacing:0.200192pt;}
.ls2{letter-spacing:0.214400pt;}
.ls33{letter-spacing:0.235520pt;}
.ls2c{letter-spacing:0.240000pt;}
.ls9d{letter-spacing:0.241920pt;}
.ls15{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.272000pt;}
.lsb{letter-spacing:0.272640pt;}
.lsa3{letter-spacing:0.278400pt;}
.ls8e{letter-spacing:0.292800pt;}
.ls29{letter-spacing:0.294400pt;}
.ls13{letter-spacing:0.299520pt;}
.ls5{letter-spacing:0.318720pt;}
.lsf{letter-spacing:0.320000pt;}
.ls7b{letter-spacing:0.323840pt;}
.ls18{letter-spacing:0.336000pt;}
.ls2e{letter-spacing:0.343040pt;}
.ls7f{letter-spacing:0.350400pt;}
.lsab{letter-spacing:0.353280pt;}
.ls60{letter-spacing:0.417600pt;}
.ls53{letter-spacing:0.427200pt;}
.ls44{letter-spacing:0.647680pt;}
.ls40{letter-spacing:0.816000pt;}
.ls70{letter-spacing:1.071616pt;}
.ls10{letter-spacing:1.295360pt;}
.ls61{letter-spacing:1.440000pt;}
.ls73{letter-spacing:1.814528pt;}
.ls99{letter-spacing:1.825280pt;}
.ls71{letter-spacing:1.833728pt;}
.ls8c{letter-spacing:1.842176pt;}
.ls95{letter-spacing:1.868800pt;}
.ls76{letter-spacing:1.873920pt;}
.ls82{letter-spacing:1.876480pt;}
.ls69{letter-spacing:1.885184pt;}
.ls47{letter-spacing:1.890048pt;}
.ls9e{letter-spacing:1.914880pt;}
.ls94{letter-spacing:1.927680pt;}
.ls81{letter-spacing:1.937920pt;}
.ls3c{letter-spacing:1.943040pt;}
.ls4f{letter-spacing:1.950720pt;}
.ls5c{letter-spacing:2.009600pt;}
.ls6a{letter-spacing:2.064000pt;}
.ls3d{letter-spacing:2.106880pt;}
.ls7e{letter-spacing:2.114560pt;}
.ls5e{letter-spacing:2.345728pt;}
.ls3e{letter-spacing:2.462720pt;}
.ls5a{letter-spacing:2.490880pt;}
.ls91{letter-spacing:2.531840pt;}
.ls96{letter-spacing:2.555392pt;}
.ls8a{letter-spacing:2.560000pt;}
.ls87{letter-spacing:2.584832pt;}
.ls93{letter-spacing:2.590720pt;}
.ls65{letter-spacing:2.616320pt;}
.ls3f{letter-spacing:2.736000pt;}
.ls92{letter-spacing:2.823680pt;}
.ls48{letter-spacing:3.179520pt;}
.ls88{letter-spacing:3.208960pt;}
.ls83{letter-spacing:3.360000pt;}
.ls90{letter-spacing:3.438592pt;}
.ls4e{letter-spacing:3.468032pt;}
.ls45{letter-spacing:3.827200pt;}
.ls6b{letter-spacing:3.984000pt;}
.ls5f{letter-spacing:4.656000pt;}
.ls59{letter-spacing:5.087232pt;}
.lsa2{letter-spacing:5.110784pt;}
.ls66{letter-spacing:5.122560pt;}
.lse{letter-spacing:5.270400pt;}
.lsc{letter-spacing:5.277440pt;}
.lsa{letter-spacing:5.280000pt;}
.ls9{letter-spacing:5.285760pt;}
.ls68{letter-spacing:5.740800pt;}
.ls49{letter-spacing:5.770240pt;}
.ls51{letter-spacing:5.904000pt;}
.ls67{letter-spacing:6.423808pt;}
.ls9a{letter-spacing:6.576000pt;}
.ls8f{letter-spacing:7.030272pt;}
.ls4a{letter-spacing:7.065600pt;}
.ls52{letter-spacing:7.200000pt;}
.ls9b{letter-spacing:7.214400pt;}
.ls8b{letter-spacing:7.654400pt;}
.ls89{letter-spacing:8.302080pt;}
.ls35{letter-spacing:8.366848pt;}
.ls46{letter-spacing:8.949760pt;}
.ls78{letter-spacing:9.744000pt;}
.ls5d{letter-spacing:10.245120pt;}
.ls79{letter-spacing:10.392000pt;}
.ls7d{letter-spacing:10.892800pt;}
.ls34{letter-spacing:11.463936pt;}
.ls5b{letter-spacing:11.540480pt;}
.ls50{letter-spacing:12.158720pt;}
.ls77{letter-spacing:12.188160pt;}
.ls4d{letter-spacing:12.776960pt;}
.lsa7{letter-spacing:13.560064pt;}
.ls3a{letter-spacing:13.719040pt;}
.ls75{letter-spacing:14.720000pt;}
.ls8d{letter-spacing:14.880000pt;}
.ls80{letter-spacing:15.360000pt;}
.ls39{letter-spacing:17.899520pt;}
.ls3b{letter-spacing:18.547200pt;}
.ls3{letter-spacing:18.720000pt;}
.lsa6{letter-spacing:23.133952pt;}
.ls72{letter-spacing:23.669760pt;}
.ls74{letter-spacing:30.735360pt;}
.ls38{letter-spacing:30.970880pt;}
.ls36{letter-spacing:47.633920pt;}
.ls9f{letter-spacing:60.960000pt;}
.ls30{letter-spacing:752.000000pt;}
.ws15{word-spacing:-32.000000pt;}
.ws6{word-spacing:-19.019520pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.420480pt;}
.ws2{word-spacing:-16.256000pt;}
.ws104{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.744000pt;}
.ws152{word-spacing:-15.073280pt;}
.ws4f{word-spacing:-15.014400pt;}
.ws55{word-spacing:-14.955520pt;}
.ws51{word-spacing:-14.896640pt;}
.ws53{word-spacing:-14.867200pt;}
.ws54{word-spacing:-14.837760pt;}
.ws12f{word-spacing:-14.778880pt;}
.ws56{word-spacing:-14.720000pt;}
.ws4b{word-spacing:-14.661120pt;}
.ws52{word-spacing:-14.602240pt;}
.ws8c{word-spacing:-14.543360pt;}
.ws4e{word-spacing:-14.484480pt;}
.wse2{word-spacing:-14.425600pt;}
.ws149{word-spacing:-14.366720pt;}
.ws141{word-spacing:-14.307840pt;}
.wse0{word-spacing:-14.248960pt;}
.ws137{word-spacing:-14.190080pt;}
.ws50{word-spacing:-14.072320pt;}
.ws8b{word-spacing:-14.013440pt;}
.ws14a{word-spacing:-13.954560pt;}
.ws153{word-spacing:-13.836800pt;}
.ws9{word-spacing:-13.598720pt;}
.ws7{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.908160pt;}
.ws13{word-spacing:-12.387200pt;}
.ws5{word-spacing:-12.336000pt;}
.wsbf{word-spacing:-12.240000pt;}
.wsb5{word-spacing:-12.144000pt;}
.wsd0{word-spacing:-12.096000pt;}
.ws17{word-spacing:-12.048000pt;}
.ws16{word-spacing:-12.000000pt;}
.wse4{word-spacing:-11.856000pt;}
.ws105{word-spacing:-11.808000pt;}
.ws59{word-spacing:-11.664000pt;}
.wsbd{word-spacing:-11.568000pt;}
.wsbe{word-spacing:-11.424000pt;}
.ws8d{word-spacing:-11.376000pt;}
.wsa{word-spacing:-10.934400pt;}
.wse{word-spacing:-10.891520pt;}
.ws11{word-spacing:-10.762880pt;}
.wsf{word-spacing:-10.634240pt;}
.ws10{word-spacing:-10.334080pt;}
.ws8{word-spacing:-10.291200pt;}
.wsd{word-spacing:-10.162560pt;}
.ws12{word-spacing:-10.119680pt;}
.wsb{word-spacing:-10.033920pt;}
.ws130{word-spacing:-8.881920pt;}
.ws57{word-spacing:-8.640000pt;}
.wse1{word-spacing:-8.000000pt;}
.wse3{word-spacing:-7.683840pt;}
.ws58{word-spacing:-7.360000pt;}
.ws114{word-spacing:-7.242240pt;}
.wsd1{word-spacing:-6.712320pt;}
.ws13c{word-spacing:-3.827200pt;}
.ws143{word-spacing:-3.709440pt;}
.ws144{word-spacing:-3.473920pt;}
.ws146{word-spacing:-3.356160pt;}
.ws2f{word-spacing:-3.179520pt;}
.wsba{word-spacing:-3.061760pt;}
.ws96{word-spacing:-2.826240pt;}
.wsdd{word-spacing:-2.736000pt;}
.ws45{word-spacing:-2.708480pt;}
.ws127{word-spacing:-2.640000pt;}
.ws2b{word-spacing:-2.531840pt;}
.ws81{word-spacing:-2.472960pt;}
.wsb1{word-spacing:-2.448000pt;}
.ws115{word-spacing:-2.414080pt;}
.ws94{word-spacing:-2.237440pt;}
.wsc4{word-spacing:-2.119680pt;}
.ws98{word-spacing:-2.112000pt;}
.ws84{word-spacing:-2.060800pt;}
.wsb0{word-spacing:-2.016000pt;}
.ws5c{word-spacing:-1.943040pt;}
.wsbb{word-spacing:-1.884160pt;}
.ws5b{word-spacing:-1.825280pt;}
.wsdb{word-spacing:-1.776000pt;}
.ws134{word-spacing:-1.766400pt;}
.ws95{word-spacing:-1.648640pt;}
.ws31{word-spacing:-1.589760pt;}
.ws9e{word-spacing:-1.440000pt;}
.ws132{word-spacing:-1.413120pt;}
.ws10a{word-spacing:-1.344000pt;}
.ws32{word-spacing:-1.295360pt;}
.wsfa{word-spacing:-1.236480pt;}
.ws5a{word-spacing:-1.177600pt;}
.wsb2{word-spacing:-1.152000pt;}
.ws6b{word-spacing:-0.942080pt;}
.wsfd{word-spacing:-0.824320pt;}
.ws18{word-spacing:-0.823680pt;}
.ws9f{word-spacing:-0.816000pt;}
.ws41{word-spacing:-0.814720pt;}
.ws66{word-spacing:-0.765440pt;}
.ws77{word-spacing:-0.720000pt;}
.ws25{word-spacing:-0.686080pt;}
.ws12d{word-spacing:-0.672000pt;}
.ws30{word-spacing:-0.647680pt;}
.wsf0{word-spacing:-0.624000pt;}
.ws13d{word-spacing:-0.588800pt;}
.ws1c{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.529920pt;}
.ws9b{word-spacing:-0.528000pt;}
.ws126{word-spacing:-0.480000pt;}
.ws1a{word-spacing:-0.449280pt;}
.ws139{word-spacing:-0.412160pt;}
.wsca{word-spacing:-0.336000pt;}
.ws27{word-spacing:-0.318720pt;}
.ws87{word-spacing:-0.294400pt;}
.wsef{word-spacing:-0.288000pt;}
.ws1b{word-spacing:-0.256000pt;}
.wsc6{word-spacing:-0.240000pt;}
.ws63{word-spacing:-0.235520pt;}
.ws40{word-spacing:-0.192000pt;}
.ws92{word-spacing:-0.176640pt;}
.ws26{word-spacing:-0.171520pt;}
.wsc9{word-spacing:-0.144000pt;}
.wsc3{word-spacing:-0.128000pt;}
.wse9{word-spacing:-0.117760pt;}
.ws3a{word-spacing:-0.096000pt;}
.ws36{word-spacing:-0.064000pt;}
.wsb3{word-spacing:-0.048000pt;}
.ws23{word-spacing:-0.042880pt;}
.ws19{word-spacing:0.000000pt;}
.wsee{word-spacing:0.048000pt;}
.ws29{word-spacing:0.050560pt;}
.ws4d{word-spacing:0.058880pt;}
.ws1d{word-spacing:0.064000pt;}
.ws21{word-spacing:0.085760pt;}
.ws79{word-spacing:0.096000pt;}
.ws4a{word-spacing:0.117760pt;}
.ws106{word-spacing:0.128000pt;}
.wsc7{word-spacing:0.144000pt;}
.ws1e{word-spacing:0.192000pt;}
.ws28{word-spacing:0.202240pt;}
.ws83{word-spacing:0.235520pt;}
.ws8f{word-spacing:0.256000pt;}
.ws99{word-spacing:0.288000pt;}
.ws3f{word-spacing:0.336000pt;}
.ws11a{word-spacing:0.353280pt;}
.ws20{word-spacing:0.385920pt;}
.ws140{word-spacing:0.432000pt;}
.ws88{word-spacing:0.471040pt;}
.ws3d{word-spacing:0.480000pt;}
.wscc{word-spacing:0.528000pt;}
.wseb{word-spacing:0.529920pt;}
.ws78{word-spacing:0.576000pt;}
.ws22{word-spacing:0.600320pt;}
.ws2a{word-spacing:0.647680pt;}
.ws147{word-spacing:0.672000pt;}
.ws39{word-spacing:0.706560pt;}
.ws80{word-spacing:0.765440pt;}
.ws3e{word-spacing:0.768000pt;}
.ws4c{word-spacing:0.814720pt;}
.ws150{word-spacing:0.824320pt;}
.ws7b{word-spacing:0.883200pt;}
.ws121{word-spacing:0.912000pt;}
.wsf4{word-spacing:1.000960pt;}
.ws14d{word-spacing:1.059840pt;}
.wsd9{word-spacing:1.104000pt;}
.ws8e{word-spacing:1.118720pt;}
.ws74{word-spacing:1.177600pt;}
.ws120{word-spacing:1.200000pt;}
.wsbc{word-spacing:1.280000pt;}
.ws2c{word-spacing:1.295360pt;}
.ws62{word-spacing:1.354240pt;}
.wsb4{word-spacing:1.392000pt;}
.ws42{word-spacing:1.413120pt;}
.wsc5{word-spacing:1.728000pt;}
.wsfe{word-spacing:1.824000pt;}
.ws35{word-spacing:1.943040pt;}
.wsd3{word-spacing:2.001920pt;}
.wsad{word-spacing:2.016000pt;}
.ws34{word-spacing:2.060800pt;}
.ws10d{word-spacing:2.160000pt;}
.wsaa{word-spacing:2.178560pt;}
.ws116{word-spacing:2.296320pt;}
.ws76{word-spacing:2.400000pt;}
.wsed{word-spacing:2.472960pt;}
.wsc8{word-spacing:2.496000pt;}
.ws38{word-spacing:2.590720pt;}
.ws11b{word-spacing:2.649600pt;}
.wsf3{word-spacing:2.688000pt;}
.ws37{word-spacing:2.708480pt;}
.wsd5{word-spacing:2.885120pt;}
.wsa9{word-spacing:3.002880pt;}
.ws113{word-spacing:3.024000pt;}
.wsf8{word-spacing:3.061760pt;}
.ws148{word-spacing:3.072000pt;}
.wscd{word-spacing:3.120000pt;}
.ws89{word-spacing:3.179520pt;}
.ws11f{word-spacing:3.216000pt;}
.wsa5{word-spacing:3.238400pt;}
.ws10e{word-spacing:3.264000pt;}
.ws71{word-spacing:3.297280pt;}
.wsde{word-spacing:3.312000pt;}
.wsc1{word-spacing:3.415040pt;}
.wsf9{word-spacing:3.532800pt;}
.ws10c{word-spacing:3.552000pt;}
.wsda{word-spacing:3.648000pt;}
.wsb9{word-spacing:3.650560pt;}
.ws151{word-spacing:3.709440pt;}
.wsce{word-spacing:3.744000pt;}
.wscf{word-spacing:3.792000pt;}
.ws7a{word-spacing:3.827200pt;}
.wsa4{word-spacing:3.886080pt;}
.wsdf{word-spacing:3.888000pt;}
.wsff{word-spacing:3.936000pt;}
.ws49{word-spacing:3.944960pt;}
.ws1f{word-spacing:3.968640pt;}
.ws9d{word-spacing:4.320000pt;}
.ws123{word-spacing:4.357120pt;}
.ws9c{word-spacing:4.416000pt;}
.ws75{word-spacing:4.474880pt;}
.ws125{word-spacing:4.512000pt;}
.ws10b{word-spacing:4.560000pt;}
.ws82{word-spacing:4.592640pt;}
.wscb{word-spacing:4.608000pt;}
.wsd2{word-spacing:4.828160pt;}
.wsaf{word-spacing:4.944000pt;}
.ws122{word-spacing:4.945920pt;}
.ws73{word-spacing:5.122560pt;}
.ws10f{word-spacing:5.184000pt;}
.wsae{word-spacing:5.232000pt;}
.ws33{word-spacing:5.240320pt;}
.ws97{word-spacing:5.568000pt;}
.ws111{word-spacing:5.760000pt;}
.ws72{word-spacing:5.770240pt;}
.ws8a{word-spacing:5.829120pt;}
.ws110{word-spacing:5.856000pt;}
.wsec{word-spacing:5.888000pt;}
.ws112{word-spacing:6.000000pt;}
.wsa2{word-spacing:6.123520pt;}
.wsa3{word-spacing:6.300160pt;}
.ws3b{word-spacing:6.336000pt;}
.ws6d{word-spacing:6.417920pt;}
.ws145{word-spacing:6.476800pt;}
.wsac{word-spacing:6.480000pt;}
.wsab{word-spacing:6.528000pt;}
.ws43{word-spacing:6.535680pt;}
.ws124{word-spacing:6.771200pt;}
.ws9a{word-spacing:6.864000pt;}
.ws136{word-spacing:6.960000pt;}
.ws70{word-spacing:7.065600pt;}
.ws109{word-spacing:7.124480pt;}
.ws13f{word-spacing:7.152000pt;}
.ws44{word-spacing:7.183360pt;}
.ws135{word-spacing:7.477760pt;}
.ws103{word-spacing:7.488000pt;}
.ws119{word-spacing:7.654400pt;}
.ws118{word-spacing:7.713280pt;}
.ws12e{word-spacing:7.776000pt;}
.ws61{word-spacing:8.007680pt;}
.ws14e{word-spacing:8.125440pt;}
.ws13a{word-spacing:8.184320pt;}
.wsdc{word-spacing:8.256000pt;}
.ws60{word-spacing:8.302080pt;}
.wsa7{word-spacing:8.419840pt;}
.ws101{word-spacing:8.448000pt;}
.ws85{word-spacing:8.949760pt;}
.ws102{word-spacing:8.976000pt;}
.ws7d{word-spacing:9.067520pt;}
.ws100{word-spacing:9.072000pt;}
.wsf2{word-spacing:9.408000pt;}
.ws3c{word-spacing:9.504000pt;}
.ws7f{word-spacing:9.597440pt;}
.ws86{word-spacing:9.656320pt;}
.ws131{word-spacing:9.715200pt;}
.ws117{word-spacing:10.068480pt;}
.wsf1{word-spacing:10.080000pt;}
.wsa8{word-spacing:10.245120pt;}
.wsf7{word-spacing:10.304000pt;}
.wsfb{word-spacing:10.362880pt;}
.ws129{word-spacing:10.598400pt;}
.ws2d{word-spacing:10.716160pt;}
.ws5e{word-spacing:10.892800pt;}
.wsfc{word-spacing:11.010560pt;}
.wsa6{word-spacing:11.363840pt;}
.ws5d{word-spacing:11.540480pt;}
.ws138{word-spacing:11.599360pt;}
.wsd4{word-spacing:11.658240pt;}
.wsc2{word-spacing:11.776000pt;}
.ws7e{word-spacing:12.188160pt;}
.wse8{word-spacing:12.305920pt;}
.wsa0{word-spacing:12.720000pt;}
.ws6c{word-spacing:12.776960pt;}
.ws90{word-spacing:12.894720pt;}
.wsa1{word-spacing:12.912000pt;}
.ws14f{word-spacing:13.306880pt;}
.ws93{word-spacing:13.424640pt;}
.ws7c{word-spacing:14.072320pt;}
.wsf6{word-spacing:14.131200pt;}
.ws48{word-spacing:14.190080pt;}
.ws108{word-spacing:14.592000pt;}
.wsc0{word-spacing:14.720000pt;}
.wse7{word-spacing:14.778880pt;}
.ws11d{word-spacing:14.832000pt;}
.ws107{word-spacing:14.976000pt;}
.ws12c{word-spacing:15.367680pt;}
.ws11e{word-spacing:15.408000pt;}
.wsb7{word-spacing:16.015360pt;}
.ws14b{word-spacing:16.074240pt;}
.ws46{word-spacing:16.663040pt;}
.wsf5{word-spacing:17.310720pt;}
.ws69{word-spacing:17.781760pt;}
.ws64{word-spacing:17.899520pt;}
.ws65{word-spacing:18.017280pt;}
.ws67{word-spacing:18.429440pt;}
.ws68{word-spacing:18.547200pt;}
.ws6a{word-spacing:19.253760pt;}
.ws24{word-spacing:19.338880pt;}
.wsb8{word-spacing:19.842560pt;}
.ws13b{word-spacing:20.490240pt;}
.ws6e{word-spacing:21.137920pt;}
.ws47{word-spacing:21.255680pt;}
.ws91{word-spacing:21.785600pt;}
.ws12b{word-spacing:21.844480pt;}
.ws11c{word-spacing:21.903360pt;}
.ws142{word-spacing:22.374400pt;}
.ws12a{word-spacing:22.492160pt;}
.ws6f{word-spacing:23.022080pt;}
.wsd6{word-spacing:23.139840pt;}
.wsd7{word-spacing:23.669760pt;}
.wsd8{word-spacing:24.317440pt;}
.wsb6{word-spacing:24.435200pt;}
.ws133{word-spacing:24.965120pt;}
.ws14c{word-spacing:27.496960pt;}
.wsea{word-spacing:27.614720pt;}
.wse5{word-spacing:30.735360pt;}
.wse6{word-spacing:30.853120pt;}
.ws5f{word-spacing:32.148480pt;}
.ws128{word-spacing:36.505600pt;}
.ws13e{word-spacing:60.864000pt;}
._c{margin-left:-13.644736pt;}
._11{margin-left:-12.305920pt;}
._e{margin-left:-8.234944pt;}
._f{margin-left:-7.301120pt;}
._d{margin-left:-5.679424pt;}
._10{margin-left:-4.130944pt;}
._b{margin-left:-2.986368pt;}
._0{margin-left:-1.774656pt;}
._1{width:1.355328pt;}
._6{width:2.428992pt;}
._16{width:3.465984pt;}
._4{width:4.783296pt;}
._5{width:6.017408pt;}
._12{width:7.829952pt;}
._13{width:9.605696pt;}
._15{width:11.363840pt;}
._14{width:12.402496pt;}
._18{width:14.720000pt;}
._3{width:17.426560pt;}
._2{width:18.466112pt;}
._19{width:22.055872pt;}
._17{width:23.213056pt;}
._a{width:43.051520pt;}
._8{width:681.749120pt;}
._9{width:791.803648pt;}
._7{width:1123.370240pt;}
.fs9{font-size:29.440000pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.800000pt;}
.y11{bottom:28.320000pt;}
.y8{bottom:28.960000pt;}
.ydd{bottom:98.052000pt;}
.y210{bottom:98.056000pt;}
.y145{bottom:98.060000pt;}
.y2e{bottom:98.068000pt;}
.y1a0{bottom:98.072000pt;}
.y84{bottom:98.076000pt;}
.y269{bottom:99.994880pt;}
.y109{bottom:101.440000pt;}
.y2b2{bottom:108.960000pt;}
.y2d8{bottom:113.281280pt;}
.ydc{bottom:114.216000pt;}
.y20f{bottom:114.220000pt;}
.y144{bottom:114.224000pt;}
.y2d{bottom:114.232000pt;}
.y19f{bottom:114.236000pt;}
.y108{bottom:114.240000pt;}
.y83{bottom:117.600000pt;}
.y2f7{bottom:118.599680pt;}
.y268{bottom:119.837440pt;}
.y2b1{bottom:128.797440pt;}
.ydb{bottom:130.536000pt;}
.y20e{bottom:130.540000pt;}
.y143{bottom:130.544000pt;}
.y2c{bottom:130.552000pt;}
.y82{bottom:130.556000pt;}
.yaf{bottom:131.677440pt;}
.y28d{bottom:132.636800pt;}
.y2d7{bottom:133.123840pt;}
.y107{bottom:133.920000pt;}
.y267{bottom:139.680000pt;}
.y2f6{bottom:146.435200pt;}
.y106{bottom:146.688000pt;}
.yda{bottom:146.700000pt;}
.y16c{bottom:146.704000pt;}
.y142{bottom:146.708000pt;}
.y18a{bottom:146.712000pt;}
.y2b{bottom:146.716000pt;}
.y12a{bottom:148.000000pt;}
.y2b0{bottom:148.640000pt;}
.y81{bottom:150.080000pt;}
.yae{bottom:151.520000pt;}
.y28c{bottom:152.479360pt;}
.y2d6{bottom:160.797440pt;}
.y105{bottom:162.852000pt;}
.yd9{bottom:162.864000pt;}
.y16b{bottom:162.868000pt;}
.y141{bottom:162.872000pt;}
.y189{bottom:162.876000pt;}
.y80{bottom:164.160000pt;}
.y2a{bottom:166.880000pt;}
.y266{bottom:168.000000pt;}
.y28b{bottom:172.160000pt;}
.y2f5{bottom:174.108800pt;}
.y2af{bottom:176.320000pt;}
.y104{bottom:179.016000pt;}
.yd8{bottom:179.028000pt;}
.y16a{bottom:179.032000pt;}
.y140{bottom:179.036000pt;}
.y129{bottom:179.516800pt;}
.yad{bottom:179.680000pt;}
.y29{bottom:180.320000pt;}
.y2d5{bottom:180.640000pt;}
.y188{bottom:182.400000pt;}
.y7f{bottom:187.197440pt;}
.y103{bottom:195.180000pt;}
.yd7{bottom:195.192000pt;}
.y169{bottom:195.196000pt;}
.y2ae{bottom:196.157440pt;}
.y13f{bottom:198.560000pt;}
.y128{bottom:199.197440pt;}
.y28a{bottom:199.996800pt;}
.y2f4{bottom:201.944320pt;}
.y265{bottom:204.896640pt;}
.y7e{bottom:207.031680pt;}
.y2d4{bottom:208.320000pt;}
.y28{bottom:210.394240pt;}
.y1ef{bottom:211.336000pt;}
.y102{bottom:211.344000pt;}
.y25b{bottom:211.348000pt;}
.yd6{bottom:211.356000pt;}
.y168{bottom:211.360000pt;}
.y187{bottom:214.720000pt;}
.y2ad{bottom:216.000000pt;}
.yac{bottom:216.746240pt;}
.y127{bottom:219.040000pt;}
.y289{bottom:219.839360pt;}
.y264{bottom:224.739200pt;}
.y7d{bottom:226.874240pt;}
.y1ee{bottom:227.656000pt;}
.y101{bottom:227.664000pt;}
.y167{bottom:227.668000pt;}
.y20d{bottom:227.672000pt;}
.yd5{bottom:227.676000pt;}
.y2d3{bottom:228.160000pt;}
.y231{bottom:228.800000pt;}
.y2f3{bottom:229.779840pt;}
.y27{bottom:230.074880pt;}
.y240{bottom:231.040000pt;}
.yab{bottom:236.588800pt;}
.y288{bottom:239.520000pt;}
.y2ac{bottom:243.680000pt;}
.y1ed{bottom:243.820000pt;}
.y100{bottom:243.828000pt;}
.y166{bottom:243.832000pt;}
.y186{bottom:243.836000pt;}
.y23f{bottom:243.840000pt;}
.y263{bottom:244.581760pt;}
.y7c{bottom:246.554880pt;}
.yd4{bottom:247.200000pt;}
.y126{bottom:247.360000pt;}
.y2d2{bottom:247.996800pt;}
.y26{bottom:249.917440pt;}
.yaa{bottom:256.431360pt;}
.y2f2{bottom:257.615360pt;}
.y1dd{bottom:259.984000pt;}
.yff{bottom:259.992000pt;}
.y165{bottom:259.996000pt;}
.yd3{bottom:263.360000pt;}
.y2ab{bottom:263.525760pt;}
.y262{bottom:264.424320pt;}
.y7b{bottom:266.397440pt;}
.y287{bottom:267.356800pt;}
.y2d1{bottom:267.839360pt;}
.y125{bottom:268.960000pt;}
.y25{bottom:269.760000pt;}
.ya9{bottom:276.112000pt;}
.y1dc{bottom:276.148000pt;}
.yd2{bottom:276.156000pt;}
.y185{bottom:277.440000pt;}
.y164{bottom:279.520000pt;}
.y2aa{bottom:283.368320pt;}
.y261{bottom:284.104960pt;}
.y2f1{bottom:285.288960pt;}
.y7a{bottom:286.195200pt;}
.y286{bottom:287.199360pt;}
.y2d0{bottom:287.520000pt;}
.y230{bottom:292.154880pt;}
.y163{bottom:292.308000pt;}
.y1db{bottom:292.312000pt;}
.yd1{bottom:292.320000pt;}
.y19e{bottom:293.600000pt;}
.yfe{bottom:295.680000pt;}
.y24{bottom:297.920000pt;}
.ya8{bottom:303.947520pt;}
.y79{bottom:305.875840pt;}
.y124{bottom:305.890560pt;}
.y285{bottom:306.880000pt;}
.yfd{bottom:308.624000pt;}
.y162{bottom:308.628000pt;}
.y1da{bottom:308.632000pt;}
.y2a9{bottom:311.041920pt;}
.y260{bottom:311.940480pt;}
.y22f{bottom:311.997440pt;}
.yd0{bottom:312.000000pt;}
.y2f0{bottom:313.124480pt;}
.y2cf{bottom:315.360000pt;}
.y25a{bottom:317.735680pt;}
.ya7{bottom:323.790080pt;}
.yfc{bottom:324.788000pt;}
.y161{bottom:324.792000pt;}
.y1d9{bottom:324.796000pt;}
.y123{bottom:325.733120pt;}
.ycf{bottom:326.080000pt;}
.y25f{bottom:331.783040pt;}
.y22e{bottom:331.828480pt;}
.y78{bottom:333.711360pt;}
.y284{bottom:334.716800pt;}
.y23{bottom:335.040000pt;}
.y2ce{bottom:335.200000pt;}
.y184{bottom:335.512320pt;}
.y259{bottom:337.578240pt;}
.y2a8{bottom:338.877440pt;}
.yfb{bottom:340.952000pt;}
.y160{bottom:340.956000pt;}
.y2ef{bottom:340.960000pt;}
.ya6{bottom:343.470720pt;}
.y19d{bottom:343.503360pt;}
.y1d8{bottom:344.320000pt;}
.y122{bottom:345.575680pt;}
.y20c{bottom:347.519360pt;}
.y25e{bottom:351.463680pt;}
.y22d{bottom:351.509120pt;}
.y77{bottom:353.553920pt;}
.y283{bottom:354.559360pt;}
.y2cd{bottom:354.880000pt;}
.y183{bottom:355.354880pt;}
.yfa{bottom:357.116000pt;}
.y258{bottom:357.420800pt;}
.yce{bottom:357.439360pt;}
.y1d7{bottom:358.400000pt;}
.y2a7{bottom:358.720000pt;}
.y15f{bottom:360.480000pt;}
.ya5{bottom:363.313280pt;}
.y19c{bottom:363.345920pt;}
.y23e{bottom:363.357440pt;}
.y22{bottom:363.360000pt;}
.y121{bottom:365.418240pt;}
.y20b{bottom:367.361920pt;}
.y2ee{bottom:369.120000pt;}
.y25d{bottom:371.306240pt;}
.y22c{bottom:371.351680pt;}
.yf9{bottom:373.280000pt;}
.y76{bottom:373.396480pt;}
.y282{bottom:374.240000pt;}
.y15e{bottom:374.560000pt;}
.y2cc{bottom:374.720000pt;}
.y182{bottom:375.197440pt;}
.y1bf{bottom:376.640000pt;}
.ycd{bottom:377.100160pt;}
.y257{bottom:377.101440pt;}
.y19b{bottom:383.188480pt;}
.y23d{bottom:383.189120pt;}
.y120{bottom:385.098880pt;}
.y2a6{bottom:386.400000pt;}
.y20a{bottom:387.204480pt;}
.y1be{bottom:389.440000pt;}
.yf8{bottom:390.720000pt;}
.ya4{bottom:390.986880pt;}
.y25c{bottom:391.148800pt;}
.y22b{bottom:391.194240pt;}
.y75{bottom:393.077120pt;}
.y2cb{bottom:394.556800pt;}
.y181{bottom:394.878080pt;}
.y256{bottom:396.944000pt;}
.y13e{bottom:396.960640pt;}
.y21{bottom:400.456960pt;}
.y281{bottom:402.076800pt;}
.y19a{bottom:402.869120pt;}
.y23c{bottom:402.869760pt;}
.ycc{bottom:404.935680pt;}
.y11f{bottom:404.941440pt;}
.y1bd{bottom:405.760000pt;}
.y2a5{bottom:406.240000pt;}
.y2ed{bottom:406.241280pt;}
.ya3{bottom:410.829440pt;}
.y1d6{bottom:410.871680pt;}
.y22a{bottom:410.874880pt;}
.y74{bottom:412.919680pt;}
.y2ca{bottom:414.237440pt;}
.y180{bottom:414.720640pt;}
.y209{bottom:414.878080pt;}
.y255{bottom:416.786560pt;}
.y13d{bottom:416.803200pt;}
.y20{bottom:420.299520pt;}
.y280{bottom:421.919360pt;}
.yf7{bottom:422.705920pt;}
.y199{bottom:422.711680pt;}
.y23b{bottom:422.712320pt;}
.y1bc{bottom:423.200000pt;}
.ycb{bottom:424.778240pt;}
.y11e{bottom:424.784000pt;}
.y2a4{bottom:426.077440pt;}
.y2ec{bottom:426.083840pt;}
.ya2{bottom:430.672000pt;}
.y1d5{bottom:430.714240pt;}
.y229{bottom:430.717440pt;}
.y73{bottom:432.762240pt;}
.y2c9{bottom:434.080000pt;}
.y1ec{bottom:434.558080pt;}
.y17f{bottom:434.563200pt;}
.y208{bottom:434.720640pt;}
.y254{bottom:436.467200pt;}
.y13c{bottom:436.483840pt;}
.y1f{bottom:439.980160pt;}
.y27f{bottom:441.600000pt;}
.yf6{bottom:442.548480pt;}
.y198{bottom:442.554240pt;}
.yca{bottom:444.458880pt;}
.y11d{bottom:444.464640pt;}
.y2a3{bottom:445.920000pt;}
.y23a{bottom:450.385920pt;}
.ya1{bottom:450.514560pt;}
.y228{bottom:450.549120pt;}
.y1d4{bottom:450.556800pt;}
.y72{bottom:452.442880pt;}
.y2eb{bottom:453.757440pt;}
.y1eb{bottom:454.238720pt;}
.y17e{bottom:454.243840pt;}
.y207{bottom:454.563200pt;}
.y13b{bottom:456.326400pt;}
.y1e{bottom:459.822720pt;}
.y2c8{bottom:461.760000pt;}
.yf5{bottom:462.229120pt;}
.y197{bottom:462.234880pt;}
.yc9{bottom:464.301440pt;}
.y253{bottom:464.302720pt;}
.y11c{bottom:464.307200pt;}
.y1bb{bottom:466.705920pt;}
.y27e{bottom:469.437440pt;}
.ya0{bottom:470.195200pt;}
.y239{bottom:470.228480pt;}
.y227{bottom:470.229760pt;}
.y1d3{bottom:470.237440pt;}
.y71{bottom:472.285440pt;}
.y2a2{bottom:473.600000pt;}
.y17d{bottom:474.086400pt;}
.y206{bottom:474.243840pt;}
.y15d{bottom:476.159360pt;}
.y1d{bottom:479.665280pt;}
.y2c7{bottom:481.600000pt;}
.yf4{bottom:482.071680pt;}
.y1ea{bottom:482.074240pt;}
.y196{bottom:482.077440pt;}
.y13a{bottom:483.995520pt;}
.yc8{bottom:484.144000pt;}
.y252{bottom:484.145280pt;}
.y11b{bottom:484.149760pt;}
.y1ba{bottom:486.548480pt;}
.y27d{bottom:489.280000pt;}
.y9f{bottom:490.037760pt;}
.y1d2{bottom:490.071040pt;}
.y226{bottom:490.072320pt;}
.y70{bottom:492.128000pt;}
.y2a1{bottom:493.440000pt;}
.y205{bottom:494.086400pt;}
.y15c{bottom:495.840000pt;}
.y1c{bottom:499.345920pt;}
.y2ea{bottom:501.438080pt;}
.y2c6{bottom:501.440000pt;}
.y17c{bottom:501.747200pt;}
.y195{bottom:501.887360pt;}
.yf3{bottom:501.914240pt;}
.y1e9{bottom:501.916800pt;}
.yc7{bottom:503.824640pt;}
.y251{bottom:503.825920pt;}
.y11a{bottom:503.830400pt;}
.y139{bottom:503.838080pt;}
.y1b9{bottom:506.229120pt;}
.y9e{bottom:509.880320pt;}
.y1d1{bottom:509.913600pt;}
.y225{bottom:509.914880pt;}
.y6f{bottom:511.808640pt;}
.y2a0{bottom:513.280000pt;}
.y27c{bottom:516.961280pt;}
.y1b{bottom:519.188480pt;}
.y2c5{bottom:521.279360pt;}
.y2e9{bottom:521.280640pt;}
.y194{bottom:521.568000pt;}
.y17b{bottom:521.589760pt;}
.yf2{bottom:521.594880pt;}
.y1e8{bottom:521.597440pt;}
.y204{bottom:521.745920pt;}
.y250{bottom:523.668480pt;}
.y119{bottom:523.672960pt;}
.y138{bottom:523.680640pt;}
.y15b{bottom:524.160000pt;}
.y1b8{bottom:526.071680pt;}
.y9d{bottom:529.560960pt;}
.y1d0{bottom:529.594240pt;}
.y224{bottom:529.595520pt;}
.y6e{bottom:531.651200pt;}
.yc6{bottom:531.660160pt;}
.y29f{bottom:532.957440pt;}
.y27b{bottom:536.803840pt;}
.y1a{bottom:539.031040pt;}
.y2c4{bottom:540.960000pt;}
.y2e8{bottom:540.961280pt;}
.y193{bottom:541.410560pt;}
.y17a{bottom:541.432320pt;}
.y1e7{bottom:541.436800pt;}
.yf1{bottom:541.437440pt;}
.y203{bottom:541.588480pt;}
.y24f{bottom:543.511040pt;}
.y118{bottom:543.515520pt;}
.y137{bottom:543.523200pt;}
.y1b7{bottom:545.914240pt;}
.y9c{bottom:549.403520pt;}
.y1cf{bottom:549.436800pt;}
.y223{bottom:549.438080pt;}
.y6d{bottom:551.493760pt;}
.yc5{bottom:551.502720pt;}
.y29e{bottom:552.800000pt;}
.y27a{bottom:556.646400pt;}
.y19{bottom:558.711680pt;}
.y2e7{bottom:560.803840pt;}
.y15a{bottom:561.113600pt;}
.y192{bottom:561.253120pt;}
.y179{bottom:561.274880pt;}
.y1e6{bottom:561.279360pt;}
.yf0{bottom:561.280640pt;}
.y202{bottom:561.431040pt;}
.y24e{bottom:563.191680pt;}
.y117{bottom:563.196160pt;}
.y136{bottom:563.203840pt;}
.y1b6{bottom:565.594880pt;}
.y2c3{bottom:568.800000pt;}
.y9b{bottom:569.246080pt;}
.y1ce{bottom:569.279360pt;}
.y222{bottom:569.280640pt;}
.y6c{bottom:571.174400pt;}
.yc4{bottom:571.183360pt;}
.y18{bottom:578.554240pt;}
.y29d{bottom:580.480000pt;}
.y191{bottom:580.933760pt;}
.y178{bottom:580.955520pt;}
.y159{bottom:580.956160pt;}
.y1e5{bottom:580.957440pt;}
.yef{bottom:580.961280pt;}
.y201{bottom:581.273600pt;}
.y24d{bottom:583.034240pt;}
.y116{bottom:583.038720pt;}
.y135{bottom:583.046400pt;}
.y279{bottom:584.320000pt;}
.y1b5{bottom:585.437440pt;}
.y2e6{bottom:588.477440pt;}
.y2c2{bottom:588.639360pt;}
.y9a{bottom:588.926720pt;}
.y1cd{bottom:588.938880pt;}
.y238{bottom:588.945920pt;}
.y6b{bottom:591.016960pt;}
.yc3{bottom:591.025920pt;}
.y221{bottom:596.954240pt;}
.y17{bottom:598.396800pt;}
.y29c{bottom:600.320000pt;}
.y1e4{bottom:600.776320pt;}
.y177{bottom:600.798080pt;}
.y158{bottom:600.798720pt;}
.y200{bottom:600.954240pt;}
.y24c{bottom:602.876800pt;}
.y115{bottom:602.881280pt;}
.y1b4{bottom:605.274240pt;}
.y2c1{bottom:608.320000pt;}
.y99{bottom:608.769280pt;}
.y1cc{bottom:608.781440pt;}
.y237{bottom:608.788480pt;}
.yee{bottom:608.796800pt;}
.y134{bottom:610.703360pt;}
.yc2{bottom:610.868480pt;}
.y278{bottom:612.163840pt;}
.y55{bottom:614.880000pt;}
.y220{bottom:616.796800pt;}
.y16{bottom:618.077440pt;}
.y6a{bottom:618.852480pt;}
.y29b{bottom:620.157440pt;}
.y1e3{bottom:620.618880pt;}
.y176{bottom:620.640640pt;}
.y157{bottom:620.641280pt;}
.y1ff{bottom:620.796800pt;}
.y24b{bottom:622.557440pt;}
.y1b3{bottom:624.954880pt;}
.y98{bottom:628.611840pt;}
.y1cb{bottom:628.624000pt;}
.y236{bottom:628.631040pt;}
.yed{bottom:628.639360pt;}
.y133{bottom:630.545920pt;}
.yc1{bottom:630.549120pt;}
.y114{bottom:630.554880pt;}
.y277{bottom:632.006400pt;}
.y54{bottom:633.600000pt;}
.y40{bottom:635.838080pt;}
.y2c0{bottom:636.160000pt;}
.y2e5{bottom:636.162560pt;}
.y21f{bottom:636.639360pt;}
.y15{bottom:637.920000pt;}
.y69{bottom:638.533120pt;}
.y29a{bottom:640.000000pt;}
.y1e2{bottom:640.299520pt;}
.y175{bottom:640.321280pt;}
.y1fe{bottom:640.639360pt;}
.y24a{bottom:642.400000pt;}
.y1b2{bottom:644.797440pt;}
.y97{bottom:648.292480pt;}
.y1ca{bottom:648.304640pt;}
.yec{bottom:648.305920pt;}
.y235{bottom:648.311680pt;}
.y156{bottom:648.314880pt;}
.y132{bottom:650.388480pt;}
.yc0{bottom:650.391680pt;}
.y113{bottom:650.397440pt;}
.y53{bottom:655.200000pt;}
.y2bf{bottom:655.999360pt;}
.y2e4{bottom:656.005120pt;}
.y21e{bottom:656.291840pt;}
.y68{bottom:658.375680pt;}
.y276{bottom:659.680000pt;}
.y1e1{bottom:660.142080pt;}
.y1fd{bottom:660.312960pt;}
.y3f{bottom:661.920000pt;}
.y1b1{bottom:664.616320pt;}
.y14{bottom:666.240000pt;}
.y299{bottom:667.674880pt;}
.y96{bottom:668.135040pt;}
.y1c9{bottom:668.147200pt;}
.yeb{bottom:668.148480pt;}
.y234{bottom:668.154240pt;}
.y174{bottom:668.156800pt;}
.y155{bottom:668.157440pt;}
.y112{bottom:670.216320pt;}
.y131{bottom:670.231040pt;}
.ybf{bottom:670.234240pt;}
.y249{bottom:670.560000pt;}
.y2be{bottom:675.680000pt;}
.y2e3{bottom:675.685760pt;}
.y21d{bottom:676.134400pt;}
.y52{bottom:676.800000pt;}
.y67{bottom:678.218240pt;}
.y1e0{bottom:679.984640pt;}
.y1fc{bottom:680.155520pt;}
.y1b0{bottom:684.296960pt;}
.y298{bottom:687.517440pt;}
.y275{bottom:687.520000pt;}
.y190{bottom:687.977600pt;}
.y154{bottom:687.980160pt;}
.y1c8{bottom:687.989760pt;}
.yea{bottom:687.991040pt;}
.y233{bottom:687.996800pt;}
.y173{bottom:687.999360pt;}
.y3e{bottom:688.160000pt;}
.y111{bottom:689.896960pt;}
.y130{bottom:689.911680pt;}
.ybe{bottom:689.914880pt;}
.y95{bottom:695.808640pt;}
.y21c{bottom:695.976960pt;}
.y66{bottom:697.898880pt;}
.y51{bottom:697.914880pt;}
.y10{bottom:699.040000pt;}
.y1fb{bottom:699.998080pt;}
.y2bd{bottom:703.514240pt;}
.y2e2{bottom:703.521280pt;}
.y13{bottom:703.840000pt;}
.y1af{bottom:704.139520pt;}
.y274{bottom:707.360000pt;}
.y18f{bottom:707.658240pt;}
.y153{bottom:707.660800pt;}
.y172{bottom:707.668480pt;}
.y1c7{bottom:707.670400pt;}
.ye9{bottom:707.671680pt;}
.y248{bottom:707.672320pt;}
.y232{bottom:707.677440pt;}
.y110{bottom:709.739520pt;}
.y12f{bottom:709.754240pt;}
.ybd{bottom:709.757440pt;}
.y94{bottom:715.651200pt;}
.y21b{bottom:715.657600pt;}
.y3d{bottom:716.320000pt;}
.y65{bottom:717.741440pt;}
.y50{bottom:717.757440pt;}
.y1fa{bottom:719.678720pt;}
.y2bc{bottom:723.356800pt;}
.y2e1{bottom:723.363840pt;}
.y1ae{bottom:723.982080pt;}
.y273{bottom:727.044480pt;}
.y18e{bottom:727.500800pt;}
.y152{bottom:727.503360pt;}
.y171{bottom:727.511040pt;}
.ye8{bottom:727.514240pt;}
.y247{bottom:727.514880pt;}
.y10f{bottom:729.582080pt;}
.ybc{bottom:729.588480pt;}
.y12e{bottom:729.596800pt;}
.y297{bottom:735.034880pt;}
.y93{bottom:735.493760pt;}
.y21a{bottom:735.500160pt;}
.y1c6{bottom:735.505920pt;}
.y64{bottom:737.584000pt;}
.y4f{bottom:737.600000pt;}
.y2bb{bottom:743.037440pt;}
.y2e0{bottom:743.044480pt;}
.y1ad{bottom:743.662720pt;}
.y18d{bottom:747.343360pt;}
.y151{bottom:747.345920pt;}
.y170{bottom:747.353600pt;}
.ye7{bottom:747.356800pt;}
.y246{bottom:747.357440pt;}
.y1f9{bottom:747.514240pt;}
.yf{bottom:748.320000pt;}
.y10e{bottom:749.262720pt;}
.ybb{bottom:749.269120pt;}
.y12d{bottom:749.277440pt;}
.y3c{bottom:753.420160pt;}
.y296{bottom:754.877440pt;}
.y272{bottom:754.880000pt;}
.y92{bottom:755.336320pt;}
.y219{bottom:755.342720pt;}
.y1c5{bottom:755.348480pt;}
.y63{bottom:757.264640pt;}
.y4e{bottom:757.268480pt;}
.y2ba{bottom:762.880000pt;}
.y1ac{bottom:763.505280pt;}
.ye{bottom:766.240000pt;}
.y18c{bottom:767.024000pt;}
.y150{bottom:767.026560pt;}
.y16f{bottom:767.034240pt;}
.ye6{bottom:767.037440pt;}
.y245{bottom:767.038080pt;}
.y1f8{bottom:767.356800pt;}
.y10d{bottom:769.105280pt;}
.yba{bottom:769.111680pt;}
.y12c{bottom:769.120000pt;}
.y2df{bottom:770.880000pt;}
.y3b{bottom:773.262720pt;}
.y295{bottom:774.720000pt;}
.y91{bottom:775.016960pt;}
.y218{bottom:775.023360pt;}
.y1c4{bottom:775.029120pt;}
.y62{bottom:777.107200pt;}
.y4d{bottom:777.111040pt;}
.y271{bottom:782.558720pt;}
.y1ab{bottom:783.347840pt;}
.yd{bottom:784.325280pt;}
.ye5{bottom:786.866560pt;}
.y14f{bottom:786.869120pt;}
.y16e{bottom:786.876800pt;}
.y244{bottom:786.880640pt;}
.y1f7{bottom:787.037440pt;}
.y10c{bottom:788.947840pt;}
.yb9{bottom:788.954240pt;}
.y2b9{bottom:790.558720pt;}
.y2de{bottom:790.722560pt;}
.y3a{bottom:793.105280pt;}
.y90{bottom:794.859520pt;}
.y217{bottom:794.865920pt;}
.y1c3{bottom:794.871680pt;}
.y61{bottom:796.949760pt;}
.y4c{bottom:796.953600pt;}
.y12b{bottom:797.280000pt;}
.yc{bottom:802.235360pt;}
.y294{bottom:802.397440pt;}
.y270{bottom:802.401280pt;}
.y1aa{bottom:803.028480pt;}
.ye4{bottom:806.709120pt;}
.y14e{bottom:806.711680pt;}
.y16d{bottom:806.719360pt;}
.y243{bottom:806.723200pt;}
.y1f6{bottom:806.877440pt;}
.y10b{bottom:808.628480pt;}
.yb8{bottom:808.634880pt;}
.y2b8{bottom:810.401280pt;}
.y39{bottom:812.785920pt;}
.y8f{bottom:814.702080pt;}
.y216{bottom:814.708480pt;}
.y1c2{bottom:814.714240pt;}
.y60{bottom:816.630400pt;}
.y4b{bottom:816.634240pt;}
.y2dd{bottom:818.396160pt;}
.yb{bottom:820.320000pt;}
.y293{bottom:822.240000pt;}
.y26f{bottom:822.243840pt;}
.y1a9{bottom:822.871040pt;}
.ye3{bottom:826.389760pt;}
.y14d{bottom:826.392320pt;}
.y242{bottom:826.403840pt;}
.y1f5{bottom:826.713600pt;}
.y10a{bottom:828.471040pt;}
.yb7{bottom:828.477440pt;}
.y2b7{bottom:830.243840pt;}
.y38{bottom:832.628480pt;}
.y8e{bottom:834.382720pt;}
.y215{bottom:834.389120pt;}
.y1c1{bottom:834.394880pt;}
.y5f{bottom:836.472960pt;}
.y4a{bottom:836.476800pt;}
.y2dc{bottom:838.238720pt;}
.y1a8{bottom:842.713600pt;}
.ye2{bottom:846.232320pt;}
.y14c{bottom:846.234880pt;}
.y241{bottom:846.246400pt;}
.y1f4{bottom:846.394240pt;}
.ya{bottom:847.837760pt;}
.yb6{bottom:848.313600pt;}
.y26e{bottom:849.917440pt;}
.y292{bottom:849.920000pt;}
.y37{bottom:852.471040pt;}
.y8d{bottom:854.225280pt;}
.y214{bottom:854.231680pt;}
.y1c0{bottom:854.237440pt;}
.y49{bottom:856.319360pt;}
.y2b6{bottom:857.917440pt;}
.y2db{bottom:858.081280pt;}
.y1a7{bottom:862.394240pt;}
.y5e{bottom:864.146560pt;}
.ye1{bottom:866.074880pt;}
.y14b{bottom:866.077440pt;}
.y1f3{bottom:866.236800pt;}
.yb5{bottom:867.994240pt;}
.y291{bottom:869.760000pt;}
.y26d{bottom:869.768320pt;}
.y36{bottom:872.151680pt;}
.y9{bottom:872.960000pt;}
.y18b{bottom:873.905920pt;}
.y8c{bottom:874.067840pt;}
.y213{bottom:874.074240pt;}
.y48{bottom:876.000000pt;}
.y2b5{bottom:877.760000pt;}
.y2da{bottom:877.761920pt;}
.y1a6{bottom:882.236800pt;}
.y5d{bottom:883.989120pt;}
.ye0{bottom:885.755520pt;}
.y14a{bottom:885.758080pt;}
.y1f2{bottom:886.079360pt;}
.yb4{bottom:887.836800pt;}
.y290{bottom:889.612160pt;}
.y35{bottom:891.994240pt;}
.y8b{bottom:893.748480pt;}
.y212{bottom:893.754880pt;}
.y47{bottom:895.840000pt;}
.y7{bottom:897.280000pt;}
.y26c{bottom:897.603840pt;}
.y1a5{bottom:902.079360pt;}
.y5c{bottom:903.831680pt;}
.y2d9{bottom:905.597440pt;}
.ydf{bottom:905.598080pt;}
.y2b4{bottom:905.600000pt;}
.y149{bottom:905.600640pt;}
.y1f1{bottom:905.760000pt;}
.yb3{bottom:907.679360pt;}
.y28f{bottom:909.454720pt;}
.y34{bottom:911.836800pt;}
.y8a{bottom:913.591040pt;}
.y211{bottom:913.597440pt;}
.y46{bottom:915.676800pt;}
.y26b{bottom:917.446400pt;}
.y1a4{bottom:921.754880pt;}
.y5b{bottom:923.674240pt;}
.y2b3{bottom:925.440000pt;}
.yde{bottom:925.440640pt;}
.y148{bottom:925.443200pt;}
.yb2{bottom:927.360000pt;}
.y33{bottom:931.517440pt;}
.y6{bottom:932.800000pt;}
.y89{bottom:933.433600pt;}
.y1f0{bottom:934.080000pt;}
.y45{bottom:935.357440pt;}
.y28e{bottom:937.128320pt;}
.y1a3{bottom:941.597440pt;}
.y5a{bottom:943.354880pt;}
.y26a{bottom:945.120000pt;}
.y1df{bottom:945.121280pt;}
.y147{bottom:945.123840pt;}
.y32{bottom:951.360000pt;}
.y88{bottom:953.114240pt;}
.y44{bottom:955.200000pt;}
.yb1{bottom:955.680000pt;}
.y2f9{bottom:956.970880pt;}
.y5{bottom:959.200000pt;}
.y1a2{bottom:961.440000pt;}
.y59{bottom:963.197440pt;}
.y1de{bottom:964.963840pt;}
.y146{bottom:964.966400pt;}
.y87{bottom:972.956800pt;}
.y43{bottom:975.040000pt;}
.y4{bottom:980.800000pt;}
.y58{bottom:983.040000pt;}
.y2f8{bottom:984.644480pt;}
.y1a1{bottom:989.600000pt;}
.yb0{bottom:992.637440pt;}
.y86{bottom:992.799360pt;}
.y3{bottom:1002.400000pt;}
.y42{bottom:1003.200000pt;}
.y57{bottom:1011.200000pt;}
.y85{bottom:1012.480000pt;}
.y31{bottom:1013.120000pt;}
.y2{bottom:1024.000000pt;}
.y30{bottom:1034.720000pt;}
.y56{bottom:1044.160000pt;}
.y1{bottom:1046.400000pt;}
.y2f{bottom:1054.720000pt;}
.y41{bottom:1064.160000pt;}
.hc{height:26.867188pt;}
.h12{height:29.427187pt;}
.he{height:38.294687pt;}
.h2e{height:42.722500pt;}
.h4{height:42.867188pt;}
.h20{height:42.883188pt;}
.hd{height:42.915187pt;}
.h7{height:45.120000pt;}
.h8{height:45.153438pt;}
.h13{height:46.437500pt;}
.ha{height:46.718750pt;}
.h5{height:47.439687pt;}
.h6{height:47.458248pt;}
.h9{height:49.699687pt;}
.hb{height:52.583750pt;}
.h2d{height:52.586310pt;}
.h2c{height:52.588870pt;}
.h2f{height:52.591430pt;}
.h1d{height:52.593990pt;}
.h27{height:52.596550pt;}
.h1c{height:52.601670pt;}
.h22{height:52.604230pt;}
.h23{height:52.606790pt;}
.h14{height:52.609350pt;}
.h28{height:52.611910pt;}
.h1e{height:52.614470pt;}
.h11{height:52.617030pt;}
.h26{height:52.619590pt;}
.h2a{height:52.627270pt;}
.h15{height:52.629830pt;}
.h24{height:52.632390pt;}
.h1f{height:52.634950pt;}
.h17{height:52.637510pt;}
.h18{height:52.640070pt;}
.h1b{height:52.650310pt;}
.h2b{height:52.660550pt;}
.h16{height:52.663110pt;}
.h25{height:52.668230pt;}
.h19{height:52.678470pt;}
.h29{height:52.696390pt;}
.h1a{height:52.701510pt;}
.h21{height:52.714310pt;}
.h10{height:52.762950pt;}
.h2{height:54.660937pt;}
.h3{height:57.156250pt;}
.hf{height:61.410000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:499.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x7{left:50.240000pt;}
.x3{left:94.560000pt;}
.x1{left:113.440000pt;}
.xd{left:137.433600pt;}
.x4{left:147.200000pt;}
.x10{left:149.445120pt;}
.xe{left:151.182080pt;}
.x6{left:159.840000pt;}
.xf{left:175.175680pt;}
.xa{left:192.160000pt;}
.x2{left:193.440000pt;}
.x8{left:209.600000pt;}
.x9{left:271.200000pt;}
.xb{left:305.440000pt;}
.xc{left:656.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; }
  